xref: /openbmc/qemu/qemu-options.hx (revision a2230bd7)
15824d651Sblueswir1HXCOMM Use DEFHEADING() to define headings in both help text and texi
25824d651Sblueswir1HXCOMM Text between STEXI and ETEXI are copied to texi version and
35824d651Sblueswir1HXCOMM discarded from C version
4ad96090aSBlue SwirlHXCOMM DEF(option, HAS_ARG/0, opt_enum, opt_help, arch_mask) is used to
5ad96090aSBlue SwirlHXCOMM construct option structures, enums and help message for specified
6ad96090aSBlue SwirlHXCOMM architectures.
75824d651Sblueswir1HXCOMM HXCOMM can be used for comments, discarded from both texi and C
85824d651Sblueswir1
9de6b4f90SMarkus ArmbrusterDEFHEADING(Standard options:)
105824d651Sblueswir1STEXI
115824d651Sblueswir1@table @option
125824d651Sblueswir1ETEXI
135824d651Sblueswir1
145824d651Sblueswir1DEF("help", 0, QEMU_OPTION_h,
15ad96090aSBlue Swirl    "-h or -help     display this help and exit\n", QEMU_ARCH_ALL)
165824d651Sblueswir1STEXI
175824d651Sblueswir1@item -h
186616b2adSStefan Weil@findex -h
195824d651Sblueswir1Display help and exit
205824d651Sblueswir1ETEXI
215824d651Sblueswir1
229bd7e6d9SpbrookDEF("version", 0, QEMU_OPTION_version,
23ad96090aSBlue Swirl    "-version        display version information and exit\n", QEMU_ARCH_ALL)
249bd7e6d9SpbrookSTEXI
259bd7e6d9Spbrook@item -version
266616b2adSStefan Weil@findex -version
279bd7e6d9SpbrookDisplay version information and exit
289bd7e6d9SpbrookETEXI
299bd7e6d9Spbrook
3080f52a66SJan KiszkaDEF("machine", HAS_ARG, QEMU_OPTION_machine, \
3180f52a66SJan Kiszka    "-machine [type=]name[,prop[=value][,...]]\n"
32585f6036SPeter Maydell    "                selects emulated machine ('-machine help' for list)\n"
3380f52a66SJan Kiszka    "                property accel=accel1[:accel2[:...]] selects accelerator\n"
34d661d9a4SJustin Terry (VM)    "                supported accelerators are kvm, xen, hax, hvf, whpx or tcg (default: tcg)\n"
3532c18a2dSMatt Gingell    "                kernel_irqchip=on|off|split controls accelerated irqchip support (default=off)\n"
36d1048befSDon Slutz    "                vmport=on|off|auto controls emulation of vmport (default: auto)\n"
3796404013SPeter Maydell    "                kvm_shadow_mem=size of KVM shadow MMU in bytes\n"
388490fc78SLuiz Capitulino    "                dump-guest-core=on|off include guest memory in a core dump (default=on)\n"
39a52a7fdfSLe Tan    "                mem-merge=on|off controls memory merge support (default: on)\n"
4079814179STiejun Chen    "                igd-passthru=on|off controls IGD GFX passthrough support (default=off)\n"
412eb1cd07STony Krowiak    "                aes-key-wrap=on|off controls support for AES key wrapping (default=on)\n"
429850c604SAlexander Graf    "                dea-key-wrap=on|off controls support for DEA key wrapping (default=on)\n"
4387252e1bSXiao Guangrong    "                suppress-vmdesc=on|off disables self-describing migration (default=off)\n"
44902c053dSGreg Kurz    "                nvdimm=on|off controls NVDIMM support (default=off)\n"
45274250c3SXiao Feng Ren    "                enforce-config-section=on|off enforce configuration section migration (default=off)\n"
46db588194SBrijesh Singh    "                memory-encryption=@var{} memory encryption object to use (default=none)\n",
4780f52a66SJan Kiszka    QEMU_ARCH_ALL)
485824d651Sblueswir1STEXI
4980f52a66SJan Kiszka@item -machine [type=]@var{name}[,prop=@var{value}[,...]]
5080f52a66SJan Kiszka@findex -machine
51585f6036SPeter MaydellSelect the emulated machine by @var{name}. Use @code{-machine help} to list
528bfce83aSDaniel P. Berrangeavailable machines.
538bfce83aSDaniel P. Berrange
548bfce83aSDaniel P. BerrangeFor architectures which aim to support live migration compatibility
558bfce83aSDaniel P. Berrangeacross releases, each release will introduce a new versioned machine
568bfce83aSDaniel P. Berrangetype. For example, the 2.8.0 release introduced machine types
578bfce83aSDaniel P. Berrange``pc-i440fx-2.8'' and ``pc-q35-2.8'' for the x86_64/i686 architectures.
588bfce83aSDaniel P. Berrange
598bfce83aSDaniel P. BerrangeTo allow live migration of guests from QEMU version 2.8.0, to QEMU
608bfce83aSDaniel P. Berrangeversion 2.9.0, the 2.9.0 version must support the ``pc-i440fx-2.8''
618bfce83aSDaniel P. Berrangeand ``pc-q35-2.8'' machines too. To allow users live migrating VMs
628bfce83aSDaniel P. Berrangeto skip multiple intermediate releases when upgrading, new releases
638bfce83aSDaniel P. Berrangeof QEMU will support machine types from many previous versions.
648bfce83aSDaniel P. Berrange
658bfce83aSDaniel P. BerrangeSupported machine properties are:
6680f52a66SJan Kiszka@table @option
6780f52a66SJan Kiszka@item accel=@var{accels1}[:@var{accels2}[:...]]
6880f52a66SJan KiszkaThis is used to enable an accelerator. Depending on the target architecture,
69d661d9a4SJustin Terry (VM)kvm, xen, hax, hvf, whpx or tcg can be available. By default, tcg is used. If there is
70bde4d920SThomas Huthmore than one accelerator specified, the next one is used if the previous one
71bde4d920SThomas Huthfails to initialize.
726a48ffaaSJan Kiszka@item kernel_irqchip=on|off
7332c18a2dSMatt GingellControls in-kernel irqchip support for the chosen accelerator when available.
7479814179STiejun Chen@item gfx_passthru=on|off
7579814179STiejun ChenEnables IGD GFX passthrough support for the chosen machine when available.
76d1048befSDon Slutz@item vmport=on|off|auto
77d1048befSDon SlutzEnables emulation of VMWare IO port, for vmmouse etc. auto says to select the
78d1048befSDon Slutzvalue based on accel. For accel=xen the default is off otherwise the default
79d1048befSDon Slutzis on.
8039d6960aSJan Kiszka@item kvm_shadow_mem=size
8139d6960aSJan KiszkaDefines the size of the KVM shadow MMU.
82ddb97f1dSJason Baron@item dump-guest-core=on|off
83ddb97f1dSJason BaronInclude guest memory in a core dump. The default is on.
848490fc78SLuiz Capitulino@item mem-merge=on|off
858490fc78SLuiz CapitulinoEnables or disables memory merge support. This feature, when supported by
868490fc78SLuiz Capitulinothe host, de-duplicates identical memory pages among VMs instances
878490fc78SLuiz Capitulino(enabled by default).
882eb1cd07STony Krowiak@item aes-key-wrap=on|off
892eb1cd07STony KrowiakEnables or disables AES key wrapping support on s390-ccw hosts. This feature
902eb1cd07STony Krowiakcontrols whether AES wrapping keys will be created to allow
912eb1cd07STony Krowiakexecution of AES cryptographic functions.  The default is on.
922eb1cd07STony Krowiak@item dea-key-wrap=on|off
932eb1cd07STony KrowiakEnables or disables DEA key wrapping support on s390-ccw hosts. This feature
942eb1cd07STony Krowiakcontrols whether DEA wrapping keys will be created to allow
952eb1cd07STony Krowiakexecution of DEA cryptographic functions.  The default is on.
9687252e1bSXiao Guangrong@item nvdimm=on|off
9787252e1bSXiao GuangrongEnables or disables NVDIMM support. The default is off.
9816f72448SPeter Xu@item enforce-config-section=on|off
9916f72448SPeter XuIf @option{enforce-config-section} is set to @var{on}, force migration
10016f72448SPeter Xucode to send configuration section even if the machine-type sets the
10116f72448SPeter Xu@option{migration.send-configuration} property to @var{off}.
10216f72448SPeter XuNOTE: this parameter is deprecated. Please use @option{-global}
10316f72448SPeter Xu@option{migration.send-configuration}=@var{on|off} instead.
104db588194SBrijesh Singh@item memory-encryption=@var{}
105db588194SBrijesh SinghMemory encryption object to use. The default is none.
10680f52a66SJan Kiszka@end table
1075824d651Sblueswir1ETEXI
1085824d651Sblueswir1
10980f52a66SJan KiszkaHXCOMM Deprecated by -machine
11080f52a66SJan KiszkaDEF("M", HAS_ARG, QEMU_OPTION_M, "", QEMU_ARCH_ALL)
11180f52a66SJan Kiszka
1125824d651Sblueswir1DEF("cpu", HAS_ARG, QEMU_OPTION_cpu,
113585f6036SPeter Maydell    "-cpu cpu        select CPU ('-cpu help' for list)\n", QEMU_ARCH_ALL)
1145824d651Sblueswir1STEXI
1155824d651Sblueswir1@item -cpu @var{model}
1166616b2adSStefan Weil@findex -cpu
117585f6036SPeter MaydellSelect CPU model (@code{-cpu help} for list and additional feature selection)
1185824d651Sblueswir1ETEXI
1195824d651Sblueswir1
1208d4e9146SKONRAD FredericDEF("accel", HAS_ARG, QEMU_OPTION_accel,
1218d4e9146SKONRAD Frederic    "-accel [accel=]accelerator[,thread=single|multi]\n"
122d661d9a4SJustin Terry (VM)    "                select accelerator (kvm, xen, hax, hvf, whpx or tcg; use 'help' for a list)\n"
1230b3c5c81SEduardo Habkost    "                thread=single|multi (enable multi-threaded TCG)\n", QEMU_ARCH_ALL)
1248d4e9146SKONRAD FredericSTEXI
1258d4e9146SKONRAD Frederic@item -accel @var{name}[,prop=@var{value}[,...]]
1268d4e9146SKONRAD Frederic@findex -accel
1278d4e9146SKONRAD FredericThis is used to enable an accelerator. Depending on the target architecture,
128d661d9a4SJustin Terry (VM)kvm, xen, hax, hvf, whpx or tcg can be available. By default, tcg is used. If there is
129bde4d920SThomas Huthmore than one accelerator specified, the next one is used if the previous one
130bde4d920SThomas Huthfails to initialize.
1318d4e9146SKONRAD Frederic@table @option
1328d4e9146SKONRAD Frederic@item thread=single|multi
1338d4e9146SKONRAD FredericControls number of TCG threads. When the TCG is multi-threaded there will be one
1348d4e9146SKONRAD Fredericthread per vCPU therefor taking advantage of additional host cores. The default
1358d4e9146SKONRAD Fredericis to enable multi-threading where both the back-end and front-ends support it and
1368d4e9146SKONRAD Fredericno incompatible TCG features have been enabled (e.g. icount/replay).
1378d4e9146SKONRAD Frederic@end table
1388d4e9146SKONRAD FredericETEXI
1398d4e9146SKONRAD Frederic
1405824d651Sblueswir1DEF("smp", HAS_ARG, QEMU_OPTION_smp,
14112b7f57eSMichael Tokarev    "-smp [cpus=]n[,maxcpus=cpus][,cores=cores][,threads=threads][,sockets=sockets]\n"
1426be68d7eSJes Sorensen    "                set the number of CPUs to 'n' [default=1]\n"
1436be68d7eSJes Sorensen    "                maxcpus= maximum number of total cpus, including\n"
144ca1a8a06SBruce Rogers    "                offline CPUs for hotplug, etc\n"
14558a04db1SAndre Przywara    "                cores= number of CPU cores on one socket\n"
14658a04db1SAndre Przywara    "                threads= number of threads on one CPU core\n"
147ad96090aSBlue Swirl    "                sockets= number of discrete sockets in the system\n",
148ad96090aSBlue Swirl        QEMU_ARCH_ALL)
1495824d651Sblueswir1STEXI
15012b7f57eSMichael Tokarev@item -smp [cpus=]@var{n}[,cores=@var{cores}][,threads=@var{threads}][,sockets=@var{sockets}][,maxcpus=@var{maxcpus}]
1516616b2adSStefan Weil@findex -smp
1525824d651Sblueswir1Simulate an SMP system with @var{n} CPUs. On the PC target, up to 255
1535824d651Sblueswir1CPUs are supported. On Sparc32 target, Linux limits the number of usable CPUs
1545824d651Sblueswir1to 4.
15558a04db1SAndre PrzywaraFor the PC target, the number of @var{cores} per socket, the number
15658a04db1SAndre Przywaraof @var{threads} per cores and the total number of @var{sockets} can be
15758a04db1SAndre Przywaraspecified. Missing values will be computed. If any on the three values is
15858a04db1SAndre Przywaragiven, the total number of CPUs @var{n} can be omitted. @var{maxcpus}
15958a04db1SAndre Przywaraspecifies the maximum number of hotpluggable CPUs.
1605824d651Sblueswir1ETEXI
1615824d651Sblueswir1
162268a362cSaliguoriDEF("numa", HAS_ARG, QEMU_OPTION_numa,
163e0ee9fd0SEduardo Habkost    "-numa node[,mem=size][,cpus=firstcpu[-lastcpu]][,nodeid=node]\n"
1640f203430SHe Chen    "-numa node[,memdev=id][,cpus=firstcpu[-lastcpu]][,nodeid=node]\n"
1652d19c656SIgor Mammedov    "-numa dist,src=source,dst=destination,val=distance\n"
1662d19c656SIgor Mammedov    "-numa cpu,node-id=node[,socket-id=x][,core-id=y][,thread-id=z]\n",
1672d19c656SIgor Mammedov    QEMU_ARCH_ALL)
168268a362cSaliguoriSTEXI
169e0ee9fd0SEduardo Habkost@item -numa node[,mem=@var{size}][,cpus=@var{firstcpu}[-@var{lastcpu}]][,nodeid=@var{node}]
170e0ee9fd0SEduardo Habkost@itemx -numa node[,memdev=@var{id}][,cpus=@var{firstcpu}[-@var{lastcpu}]][,nodeid=@var{node}]
1710f203430SHe Chen@itemx -numa dist,src=@var{source},dst=@var{destination},val=@var{distance}
172419fcdecSIgor Mammedov@itemx -numa cpu,node-id=@var{node}[,socket-id=@var{x}][,core-id=@var{y}][,thread-id=@var{z}]
1736616b2adSStefan Weil@findex -numa
1744b9a5dd7SEduardo HabkostDefine a NUMA node and assign RAM and VCPUs to it.
1750f203430SHe ChenSet the NUMA distance from a source node to a destination node.
1767febe36fSPaolo Bonzini
177419fcdecSIgor MammedovLegacy VCPU assignment uses @samp{cpus} option where
1784b9a5dd7SEduardo Habkost@var{firstcpu} and @var{lastcpu} are CPU indexes. Each
1794b9a5dd7SEduardo Habkost@samp{cpus} option represent a contiguous range of CPU indexes
1804b9a5dd7SEduardo Habkost(or a single VCPU if @var{lastcpu} is omitted). A non-contiguous
1814b9a5dd7SEduardo Habkostset of VCPUs can be represented by providing multiple @samp{cpus}
1824b9a5dd7SEduardo Habkostoptions. If @samp{cpus} is omitted on all nodes, VCPUs are automatically
1834b9a5dd7SEduardo Habkostsplit between them.
1844b9a5dd7SEduardo Habkost
1854b9a5dd7SEduardo HabkostFor example, the following option assigns VCPUs 0, 1, 2 and 5 to
1864b9a5dd7SEduardo Habkosta NUMA node:
1874b9a5dd7SEduardo Habkost@example
1884b9a5dd7SEduardo Habkost-numa node,cpus=0-2,cpus=5
1894b9a5dd7SEduardo Habkost@end example
1904b9a5dd7SEduardo Habkost
191419fcdecSIgor Mammedov@samp{cpu} option is a new alternative to @samp{cpus} option
192419fcdecSIgor Mammedovwhich uses @samp{socket-id|core-id|thread-id} properties to assign
193419fcdecSIgor MammedovCPU objects to a @var{node} using topology layout properties of CPU.
194419fcdecSIgor MammedovThe set of properties is machine specific, and depends on used
195419fcdecSIgor Mammedovmachine type/@samp{smp} options. It could be queried with
196419fcdecSIgor Mammedov@samp{hotpluggable-cpus} monitor command.
197419fcdecSIgor Mammedov@samp{node-id} property specifies @var{node} to which CPU object
198419fcdecSIgor Mammedovwill be assigned, it's required for @var{node} to be declared
199419fcdecSIgor Mammedovwith @samp{node} option before it's used with @samp{cpu} option.
200419fcdecSIgor Mammedov
201419fcdecSIgor MammedovFor example:
202419fcdecSIgor Mammedov@example
203419fcdecSIgor Mammedov-M pc \
204419fcdecSIgor Mammedov-smp 1,sockets=2,maxcpus=2 \
205419fcdecSIgor Mammedov-numa node,nodeid=0 -numa node,nodeid=1 \
206419fcdecSIgor Mammedov-numa cpu,node-id=0,socket-id=0 -numa cpu,node-id=1,socket-id=1
207419fcdecSIgor Mammedov@end example
208419fcdecSIgor Mammedov
2094b9a5dd7SEduardo Habkost@samp{mem} assigns a given RAM amount to a node. @samp{memdev}
2104b9a5dd7SEduardo Habkostassigns RAM from a given memory backend device to a node. If
2114b9a5dd7SEduardo Habkost@samp{mem} and @samp{memdev} are omitted in all nodes, RAM is
2124b9a5dd7SEduardo Habkostsplit equally between them.
2134b9a5dd7SEduardo Habkost
2144b9a5dd7SEduardo Habkost@samp{mem} and @samp{memdev} are mutually exclusive. Furthermore,
2154b9a5dd7SEduardo Habkostif one node uses @samp{memdev}, all of them have to use it.
2164b9a5dd7SEduardo Habkost
2170f203430SHe Chen@var{source} and @var{destination} are NUMA node IDs.
2180f203430SHe Chen@var{distance} is the NUMA distance from @var{source} to @var{destination}.
2190f203430SHe ChenThe distance from a node to itself is always 10. If any pair of nodes is
2200f203430SHe Chengiven a distance, then all pairs must be given distances. Although, when
2210f203430SHe Chendistances are only given in one direction for each pair of nodes, then
2220f203430SHe Chenthe distances in the opposite directions are assumed to be the same. If,
2230f203430SHe Chenhowever, an asymmetrical pair of distances is given for even one node
2240f203430SHe Chenpair, then all node pairs must be provided distance values for both
2250f203430SHe Chendirections, even when they are symmetrical. When a node is unreachable
2260f203430SHe Chenfrom another node, set the pair's distance to 255.
2270f203430SHe Chen
2284b9a5dd7SEduardo HabkostNote that the -@option{numa} option doesn't allocate any of the
2294b9a5dd7SEduardo Habkostspecified resources, it just assigns existing resources to NUMA
2304b9a5dd7SEduardo Habkostnodes. This means that one still has to use the @option{-m},
2314b9a5dd7SEduardo Habkost@option{-smp} options to allocate RAM and VCPUs respectively.
2324b9a5dd7SEduardo Habkost
233268a362cSaliguoriETEXI
234268a362cSaliguori
23510adb8beSMarkus ArmbrusterDEF("add-fd", HAS_ARG, QEMU_OPTION_add_fd,
23610adb8beSMarkus Armbruster    "-add-fd fd=fd,set=set[,opaque=opaque]\n"
23710adb8beSMarkus Armbruster    "                Add 'fd' to fd 'set'\n", QEMU_ARCH_ALL)
23810adb8beSMarkus ArmbrusterSTEXI
23910adb8beSMarkus Armbruster@item -add-fd fd=@var{fd},set=@var{set}[,opaque=@var{opaque}]
24010adb8beSMarkus Armbruster@findex -add-fd
24110adb8beSMarkus Armbruster
24210adb8beSMarkus ArmbrusterAdd a file descriptor to an fd set.  Valid options are:
24310adb8beSMarkus Armbruster
24410adb8beSMarkus Armbruster@table @option
24510adb8beSMarkus Armbruster@item fd=@var{fd}
24610adb8beSMarkus ArmbrusterThis option defines the file descriptor of which a duplicate is added to fd set.
24710adb8beSMarkus ArmbrusterThe file descriptor cannot be stdin, stdout, or stderr.
24810adb8beSMarkus Armbruster@item set=@var{set}
24910adb8beSMarkus ArmbrusterThis option defines the ID of the fd set to add the file descriptor to.
25010adb8beSMarkus Armbruster@item opaque=@var{opaque}
25110adb8beSMarkus ArmbrusterThis option defines a free-form string that can be used to describe @var{fd}.
25210adb8beSMarkus Armbruster@end table
25310adb8beSMarkus Armbruster
25410adb8beSMarkus ArmbrusterYou can open an image using pre-opened file descriptors from an fd set:
25510adb8beSMarkus Armbruster@example
25610adb8beSMarkus Armbrusterqemu-system-i386
25710adb8beSMarkus Armbruster-add-fd fd=3,set=2,opaque="rdwr:/path/to/file"
25810adb8beSMarkus Armbruster-add-fd fd=4,set=2,opaque="rdonly:/path/to/file"
25910adb8beSMarkus Armbruster-drive file=/dev/fdset/2,index=0,media=disk
26010adb8beSMarkus Armbruster@end example
26110adb8beSMarkus ArmbrusterETEXI
26210adb8beSMarkus Armbruster
26310adb8beSMarkus ArmbrusterDEF("set", HAS_ARG, QEMU_OPTION_set,
26410adb8beSMarkus Armbruster    "-set group.id.arg=value\n"
26510adb8beSMarkus Armbruster    "                set <arg> parameter for item <id> of type <group>\n"
26610adb8beSMarkus Armbruster    "                i.e. -set drive.$id.file=/path/to/image\n", QEMU_ARCH_ALL)
26710adb8beSMarkus ArmbrusterSTEXI
26810adb8beSMarkus Armbruster@item -set @var{group}.@var{id}.@var{arg}=@var{value}
26910adb8beSMarkus Armbruster@findex -set
270e1f3b974SMichael TokarevSet parameter @var{arg} for item @var{id} of type @var{group}
27110adb8beSMarkus ArmbrusterETEXI
27210adb8beSMarkus Armbruster
27310adb8beSMarkus ArmbrusterDEF("global", HAS_ARG, QEMU_OPTION_global,
2743751d7c4SPaolo Bonzini    "-global driver.property=value\n"
2753751d7c4SPaolo Bonzini    "-global driver=driver,property=property,value=value\n"
27610adb8beSMarkus Armbruster    "                set a global default for a driver property\n",
27710adb8beSMarkus Armbruster    QEMU_ARCH_ALL)
27810adb8beSMarkus ArmbrusterSTEXI
27910adb8beSMarkus Armbruster@item -global @var{driver}.@var{prop}=@var{value}
2803751d7c4SPaolo Bonzini@itemx -global driver=@var{driver},property=@var{property},value=@var{value}
28110adb8beSMarkus Armbruster@findex -global
28210adb8beSMarkus ArmbrusterSet default value of @var{driver}'s property @var{prop} to @var{value}, e.g.:
28310adb8beSMarkus Armbruster
28410adb8beSMarkus Armbruster@example
2851c9f3b88SMarkus Armbrusterqemu-system-i386 -global ide-hd.physical_block_size=4096 disk-image.img
28610adb8beSMarkus Armbruster@end example
28710adb8beSMarkus Armbruster
28810adb8beSMarkus ArmbrusterIn particular, you can use this to set driver properties for devices which are
28910adb8beSMarkus Armbrustercreated automatically by the machine model. To create a device which is not
29010adb8beSMarkus Armbrustercreated automatically and set properties on it, use -@option{device}.
2913751d7c4SPaolo Bonzini
292ae08fd5aSMarkus Armbruster-global @var{driver}.@var{prop}=@var{value} is shorthand for -global
293ae08fd5aSMarkus Armbrusterdriver=@var{driver},property=@var{prop},value=@var{value}.  The
294ae08fd5aSMarkus Armbrusterlonghand syntax works even when @var{driver} contains a dot.
29510adb8beSMarkus ArmbrusterETEXI
29610adb8beSMarkus Armbruster
29710adb8beSMarkus ArmbrusterDEF("boot", HAS_ARG, QEMU_OPTION_boot,
29810adb8beSMarkus Armbruster    "-boot [order=drives][,once=drives][,menu=on|off]\n"
299c8a6ae8bSAmos Kong    "      [,splash=sp_name][,splash-time=sp_time][,reboot-timeout=rb_time][,strict=on|off]\n"
30010adb8beSMarkus Armbruster    "                'drives': floppy (a), hard disk (c), CD-ROM (d), network (n)\n"
30110adb8beSMarkus Armbruster    "                'sp_name': the file's name that would be passed to bios as logo picture, if menu=on\n"
30210adb8beSMarkus Armbruster    "                'sp_time': the period that splash picture last if menu=on, unit is ms\n"
30310adb8beSMarkus Armbruster    "                'rb_timeout': the timeout before guest reboot when boot failed, unit is ms\n",
30410adb8beSMarkus Armbruster    QEMU_ARCH_ALL)
30510adb8beSMarkus ArmbrusterSTEXI
306c8a6ae8bSAmos Kong@item -boot [order=@var{drives}][,once=@var{drives}][,menu=on|off][,splash=@var{sp_name}][,splash-time=@var{sp_time}][,reboot-timeout=@var{rb_timeout}][,strict=on|off]
30710adb8beSMarkus Armbruster@findex -boot
30810adb8beSMarkus ArmbrusterSpecify boot order @var{drives} as a string of drive letters. Valid
309d274e07cSGongleidrive letters depend on the target architecture. The x86 PC uses: a, b
31010adb8beSMarkus Armbruster(floppy 1 and 2), c (first hard disk), d (first CD-ROM), n-p (Etherboot
31110adb8beSMarkus Armbrusterfrom network adapter 1-4), hard disk boot is the default. To apply a
31210adb8beSMarkus Armbrusterparticular boot order only on the first startup, specify it via
313c0d9f7d0SThomas Huth@option{once}. Note that the @option{order} or @option{once} parameter
314c0d9f7d0SThomas Huthshould not be used together with the @option{bootindex} property of
315c0d9f7d0SThomas Huthdevices, since the firmware implementations normally do not support both
316c0d9f7d0SThomas Huthat the same time.
31710adb8beSMarkus Armbruster
31810adb8beSMarkus ArmbrusterInteractive boot menus/prompts can be enabled via @option{menu=on} as far
31910adb8beSMarkus Armbrusteras firmware/BIOS supports them. The default is non-interactive boot.
32010adb8beSMarkus Armbruster
32110adb8beSMarkus ArmbrusterA splash picture could be passed to bios, enabling user to show it as logo,
32210adb8beSMarkus Armbrusterwhen option splash=@var{sp_name} is given and menu=on, If firmware/BIOS
32310adb8beSMarkus Armbrustersupports them. Currently Seabios for X86 system support it.
32410adb8beSMarkus Armbrusterlimitation: The splash file could be a jpeg file or a BMP file in 24 BPP
32510adb8beSMarkus Armbrusterformat(true color). The resolution should be supported by the SVGA mode, so
32610adb8beSMarkus Armbrusterthe recommended is 320x240, 640x480, 800x640.
32710adb8beSMarkus Armbruster
32810adb8beSMarkus ArmbrusterA timeout could be passed to bios, guest will pause for @var{rb_timeout} ms
32910adb8beSMarkus Armbrusterwhen boot failed, then reboot. If @var{rb_timeout} is '-1', guest will not
33010adb8beSMarkus Armbrusterreboot, qemu passes '-1' to bios by default. Currently Seabios for X86
33110adb8beSMarkus Armbrustersystem support it.
33210adb8beSMarkus Armbruster
333c8a6ae8bSAmos KongDo strict boot via @option{strict=on} as far as firmware/BIOS
334c8a6ae8bSAmos Kongsupports it. This only effects when boot priority is changed by
335c8a6ae8bSAmos Kongbootindex options. The default is non-strict boot.
336c8a6ae8bSAmos Kong
33710adb8beSMarkus Armbruster@example
33810adb8beSMarkus Armbruster# try to boot from network first, then from hard disk
33910adb8beSMarkus Armbrusterqemu-system-i386 -boot order=nc
34010adb8beSMarkus Armbruster# boot from CD-ROM first, switch back to default order after reboot
34110adb8beSMarkus Armbrusterqemu-system-i386 -boot once=d
34210adb8beSMarkus Armbruster# boot with a splash picture for 5 seconds.
34310adb8beSMarkus Armbrusterqemu-system-i386 -boot menu=on,splash=/root/boot.bmp,splash-time=5000
34410adb8beSMarkus Armbruster@end example
34510adb8beSMarkus Armbruster
34610adb8beSMarkus ArmbrusterNote: The legacy format '-boot @var{drives}' is still supported but its
34710adb8beSMarkus Armbrusteruse is discouraged as it may be removed from future versions.
34810adb8beSMarkus ArmbrusterETEXI
34910adb8beSMarkus Armbruster
35010adb8beSMarkus ArmbrusterDEF("m", HAS_ARG, QEMU_OPTION_m,
35189f3ea2bSMichael Tokarev    "-m [size=]megs[,slots=n,maxmem=size]\n"
3526e1d3c1cSIgor Mammedov    "                configure guest RAM\n"
3530daba1f0SAlexander Graf    "                size: initial amount of guest memory\n"
354c270fb9eSIgor Mammedov    "                slots: number of hotplug slots (default: none)\n"
355b6fe0124SMatthew Rosato    "                maxmem: maximum amount of guest memory (default: none)\n"
356b6fe0124SMatthew Rosato    "NOTE: Some architectures might enforce a specific granularity\n",
3576e1d3c1cSIgor Mammedov    QEMU_ARCH_ALL)
35810adb8beSMarkus ArmbrusterSTEXI
3599fcc0794SLuiz Capitulino@item -m [size=]@var{megs}[,slots=n,maxmem=size]
36010adb8beSMarkus Armbruster@findex -m
3619fcc0794SLuiz CapitulinoSets guest startup RAM size to @var{megs} megabytes. Default is 128 MiB.
3629fcc0794SLuiz CapitulinoOptionally, a suffix of ``M'' or ``G'' can be used to signify a value in
3639fcc0794SLuiz Capitulinomegabytes or gigabytes respectively. Optional pair @var{slots}, @var{maxmem}
3649fcc0794SLuiz Capitulinocould be used to set amount of hotpluggable memory slots and maximum amount of
3659fcc0794SLuiz Capitulinomemory. Note that @var{maxmem} must be aligned to the page size.
3669fcc0794SLuiz Capitulino
3679fcc0794SLuiz CapitulinoFor example, the following command-line sets the guest startup RAM size to
3689fcc0794SLuiz Capitulino1GB, creates 3 slots to hotplug additional memory and sets the maximum
3699fcc0794SLuiz Capitulinomemory the guest can reach to 4GB:
3709fcc0794SLuiz Capitulino
3719fcc0794SLuiz Capitulino@example
3729fcc0794SLuiz Capitulinoqemu-system-x86_64 -m 1G,slots=3,maxmem=4G
3739fcc0794SLuiz Capitulino@end example
3749fcc0794SLuiz Capitulino
3759fcc0794SLuiz CapitulinoIf @var{slots} and @var{maxmem} are not specified, memory hotplug won't
3769fcc0794SLuiz Capitulinobe enabled and the guest startup RAM will never increase.
37710adb8beSMarkus ArmbrusterETEXI
37810adb8beSMarkus Armbruster
37910adb8beSMarkus ArmbrusterDEF("mem-path", HAS_ARG, QEMU_OPTION_mempath,
38010adb8beSMarkus Armbruster    "-mem-path FILE  provide backing storage for guest RAM\n", QEMU_ARCH_ALL)
38110adb8beSMarkus ArmbrusterSTEXI
38210adb8beSMarkus Armbruster@item -mem-path @var{path}
38310adb8beSMarkus Armbruster@findex -mem-path
38410adb8beSMarkus ArmbrusterAllocate guest RAM from a temporarily created file in @var{path}.
38510adb8beSMarkus ArmbrusterETEXI
38610adb8beSMarkus Armbruster
38710adb8beSMarkus ArmbrusterDEF("mem-prealloc", 0, QEMU_OPTION_mem_prealloc,
38810adb8beSMarkus Armbruster    "-mem-prealloc   preallocate guest memory (use with -mem-path)\n",
38910adb8beSMarkus Armbruster    QEMU_ARCH_ALL)
39010adb8beSMarkus ArmbrusterSTEXI
39110adb8beSMarkus Armbruster@item -mem-prealloc
39210adb8beSMarkus Armbruster@findex -mem-prealloc
39310adb8beSMarkus ArmbrusterPreallocate memory when using -mem-path.
39410adb8beSMarkus ArmbrusterETEXI
39510adb8beSMarkus Armbruster
39610adb8beSMarkus ArmbrusterDEF("k", HAS_ARG, QEMU_OPTION_k,
39710adb8beSMarkus Armbruster    "-k language     use keyboard layout (for example 'fr' for French)\n",
39810adb8beSMarkus Armbruster    QEMU_ARCH_ALL)
39910adb8beSMarkus ArmbrusterSTEXI
40010adb8beSMarkus Armbruster@item -k @var{language}
40110adb8beSMarkus Armbruster@findex -k
40210adb8beSMarkus ArmbrusterUse keyboard layout @var{language} (for example @code{fr} for
40310adb8beSMarkus ArmbrusterFrench). This option is only needed where it is not easy to get raw PC
40432945472SSamuel Thibaultkeycodes (e.g. on Macs, with some X11 servers or with a VNC or curses
40510adb8beSMarkus Armbrusterdisplay). You don't normally need to use it on PC/Linux or PC/Windows
40610adb8beSMarkus Armbrusterhosts.
40710adb8beSMarkus Armbruster
40810adb8beSMarkus ArmbrusterThe available layouts are:
40910adb8beSMarkus Armbruster@example
41010adb8beSMarkus Armbrusterar  de-ch  es  fo     fr-ca  hu  ja  mk     no  pt-br  sv
41110adb8beSMarkus Armbrusterda  en-gb  et  fr     fr-ch  is  lt  nl     pl  ru     th
41210adb8beSMarkus Armbrusterde  en-us  fi  fr-be  hr     it  lv  nl-be  pt  sl     tr
41310adb8beSMarkus Armbruster@end example
41410adb8beSMarkus Armbruster
41510adb8beSMarkus ArmbrusterThe default is @code{en-us}.
41610adb8beSMarkus ArmbrusterETEXI
41710adb8beSMarkus Armbruster
41810adb8beSMarkus Armbruster
419f0b3d811SKővágó, ZoltánHXCOMM Deprecated by -audiodev
42010adb8beSMarkus ArmbrusterDEF("audio-help", 0, QEMU_OPTION_audio_help,
421f0b3d811SKővágó, Zoltán    "-audio-help     show -audiodev equivalent of the currently specified audio settings\n",
42210adb8beSMarkus Armbruster    QEMU_ARCH_ALL)
42310adb8beSMarkus ArmbrusterSTEXI
42410adb8beSMarkus Armbruster@item -audio-help
42510adb8beSMarkus Armbruster@findex -audio-help
426f0b3d811SKővágó, ZoltánWill show the -audiodev equivalent of the currently specified
427f0b3d811SKővágó, Zoltán(deprecated) environment variables.
428f0b3d811SKővágó, ZoltánETEXI
429f0b3d811SKővágó, Zoltán
430f0b3d811SKővágó, ZoltánDEF("audiodev", HAS_ARG, QEMU_OPTION_audiodev,
431f0b3d811SKővágó, Zoltán    "-audiodev [driver=]driver,id=id[,prop[=value][,...]]\n"
432f0b3d811SKővágó, Zoltán    "                specifies the audio backend to use\n"
433f0b3d811SKővágó, Zoltán    "                id= identifier of the backend\n"
434f0b3d811SKővágó, Zoltán    "                timer-period= timer period in microseconds\n"
435f0b3d811SKővágó, Zoltán    "                in|out.fixed-settings= use fixed settings for host audio\n"
436f0b3d811SKővágó, Zoltán    "                in|out.frequency= frequency to use with fixed settings\n"
437f0b3d811SKővágó, Zoltán    "                in|out.channels= number of channels to use with fixed settings\n"
438f0b3d811SKővágó, Zoltán    "                in|out.format= sample format to use with fixed settings\n"
439f0b3d811SKővágó, Zoltán    "                valid values: s8, s16, s32, u8, u16, u32\n"
440f0b3d811SKővágó, Zoltán    "                in|out.voices= number of voices to use\n"
441f0b3d811SKővágó, Zoltán    "                in|out.buffer-len= length of buffer in microseconds\n"
442f0b3d811SKővágó, Zoltán    "-audiodev none,id=id,[,prop[=value][,...]]\n"
443f0b3d811SKővágó, Zoltán    "                dummy driver that discards all output\n"
444f0b3d811SKővágó, Zoltán#ifdef CONFIG_AUDIO_ALSA
445f0b3d811SKővágó, Zoltán    "-audiodev alsa,id=id[,prop[=value][,...]]\n"
446f0b3d811SKővágó, Zoltán    "                in|out.dev= name of the audio device to use\n"
447f0b3d811SKővágó, Zoltán    "                in|out.period-len= length of period in microseconds\n"
448f0b3d811SKővágó, Zoltán    "                in|out.try-poll= attempt to use poll mode\n"
449f0b3d811SKővágó, Zoltán    "                threshold= threshold (in microseconds) when playback starts\n"
450f0b3d811SKővágó, Zoltán#endif
451f0b3d811SKővágó, Zoltán#ifdef CONFIG_AUDIO_COREAUDIO
452f0b3d811SKővágó, Zoltán    "-audiodev coreaudio,id=id[,prop[=value][,...]]\n"
453f0b3d811SKővágó, Zoltán    "                in|out.buffer-count= number of buffers\n"
454f0b3d811SKővágó, Zoltán#endif
455f0b3d811SKővágó, Zoltán#ifdef CONFIG_AUDIO_DSOUND
456f0b3d811SKővágó, Zoltán    "-audiodev dsound,id=id[,prop[=value][,...]]\n"
457f0b3d811SKővágó, Zoltán    "                latency= add extra latency to playback in microseconds\n"
458f0b3d811SKővágó, Zoltán#endif
459f0b3d811SKővágó, Zoltán#ifdef CONFIG_AUDIO_OSS
460f0b3d811SKővágó, Zoltán    "-audiodev oss,id=id[,prop[=value][,...]]\n"
461f0b3d811SKővágó, Zoltán    "                in|out.dev= path of the audio device to use\n"
462f0b3d811SKővágó, Zoltán    "                in|out.buffer-count= number of buffers\n"
463f0b3d811SKővágó, Zoltán    "                in|out.try-poll= attempt to use poll mode\n"
464f0b3d811SKővágó, Zoltán    "                try-mmap= try using memory mapped access\n"
465f0b3d811SKővágó, Zoltán    "                exclusive= open device in exclusive mode\n"
466f0b3d811SKővágó, Zoltán    "                dsp-policy= set timing policy (0..10), -1 to use fragment mode\n"
467f0b3d811SKővágó, Zoltán#endif
468f0b3d811SKővágó, Zoltán#ifdef CONFIG_AUDIO_PA
469f0b3d811SKővágó, Zoltán    "-audiodev pa,id=id[,prop[=value][,...]]\n"
470f0b3d811SKővágó, Zoltán    "                server= PulseAudio server address\n"
471f0b3d811SKővágó, Zoltán    "                in|out.name= source/sink device name\n"
472f0b3d811SKővágó, Zoltán#endif
473f0b3d811SKővágó, Zoltán#ifdef CONFIG_AUDIO_SDL
474f0b3d811SKővágó, Zoltán    "-audiodev sdl,id=id[,prop[=value][,...]]\n"
475f0b3d811SKővágó, Zoltán#endif
476f0b3d811SKővágó, Zoltán#ifdef CONFIG_SPICE
477f0b3d811SKővágó, Zoltán    "-audiodev spice,id=id[,prop[=value][,...]]\n"
478f0b3d811SKővágó, Zoltán#endif
479f0b3d811SKővágó, Zoltán    "-audiodev wav,id=id[,prop[=value][,...]]\n"
480f0b3d811SKővágó, Zoltán    "                path= path of wav file to record\n",
481f0b3d811SKővágó, Zoltán    QEMU_ARCH_ALL)
482f0b3d811SKővágó, ZoltánSTEXI
483f0b3d811SKővágó, Zoltán@item -audiodev [driver=]@var{driver},id=@var{id}[,@var{prop}[=@var{value}][,...]]
484f0b3d811SKővágó, Zoltán@findex -audiodev
485f0b3d811SKővágó, ZoltánAdds a new audio backend @var{driver} identified by @var{id}.  There are
486f0b3d811SKővágó, Zoltánglobal and driver specific properties.  Some values can be set
487f0b3d811SKővágó, Zoltándifferently for input and output, they're marked with @code{in|out.}.
488f0b3d811SKővágó, ZoltánYou can set the input's property with @code{in.@var{prop}} and the
489f0b3d811SKővágó, Zoltánoutput's property with @code{out.@var{prop}}. For example:
490f0b3d811SKővágó, Zoltán@example
491f0b3d811SKővágó, Zoltán-audiodev alsa,id=example,in.frequency=44110,out.frequency=8000
492f0b3d811SKővágó, Zoltán-audiodev alsa,id=example,out.channels=1 # leaves in.channels unspecified
493f0b3d811SKővágó, Zoltán@end example
494f0b3d811SKővágó, Zoltán
495f0b3d811SKővágó, ZoltánValid global options are:
496f0b3d811SKővágó, Zoltán
497f0b3d811SKővágó, Zoltán@table @option
498f0b3d811SKővágó, Zoltán@item id=@var{identifier}
499f0b3d811SKővágó, ZoltánIdentifies the audio backend.
500f0b3d811SKővágó, Zoltán
501f0b3d811SKővágó, Zoltán@item timer-period=@var{period}
502f0b3d811SKővágó, ZoltánSets the timer @var{period} used by the audio subsystem in microseconds.
503f0b3d811SKővágó, ZoltánDefault is 10000 (10 ms).
504f0b3d811SKővágó, Zoltán
505f0b3d811SKővágó, Zoltán@item in|out.fixed-settings=on|off
506f0b3d811SKővágó, ZoltánUse fixed settings for host audio.  When off, it will change based on
507f0b3d811SKővágó, Zoltánhow the guest opens the sound card.  In this case you must not specify
508f0b3d811SKővágó, Zoltán@var{frequency}, @var{channels} or @var{format}.  Default is on.
509f0b3d811SKővágó, Zoltán
510f0b3d811SKővágó, Zoltán@item in|out.frequency=@var{frequency}
511f0b3d811SKővágó, ZoltánSpecify the @var{frequency} to use when using @var{fixed-settings}.
512f0b3d811SKővágó, ZoltánDefault is 44100Hz.
513f0b3d811SKővágó, Zoltán
514f0b3d811SKővágó, Zoltán@item in|out.channels=@var{channels}
515f0b3d811SKővágó, ZoltánSpecify the number of @var{channels} to use when using
516f0b3d811SKővágó, Zoltán@var{fixed-settings}. Default is 2 (stereo).
517f0b3d811SKővágó, Zoltán
518f0b3d811SKővágó, Zoltán@item in|out.format=@var{format}
519f0b3d811SKővágó, ZoltánSpecify the sample @var{format} to use when using @var{fixed-settings}.
520f0b3d811SKővágó, ZoltánValid values are: @code{s8}, @code{s16}, @code{s32}, @code{u8},
521f0b3d811SKővágó, Zoltán@code{u16}, @code{u32}. Default is @code{s16}.
522f0b3d811SKővágó, Zoltán
523f0b3d811SKővágó, Zoltán@item in|out.voices=@var{voices}
524f0b3d811SKővágó, ZoltánSpecify the number of @var{voices} to use.  Default is 1.
525f0b3d811SKővágó, Zoltán
526f0b3d811SKővágó, Zoltán@item in|out.buffer=@var{usecs}
527f0b3d811SKővágó, ZoltánSets the size of the buffer in microseconds.
528f0b3d811SKővágó, Zoltán
529f0b3d811SKővágó, Zoltán@end table
530f0b3d811SKővágó, Zoltán
531f0b3d811SKővágó, Zoltán@item -audiodev none,id=@var{id}[,@var{prop}[=@var{value}][,...]]
532f0b3d811SKővágó, ZoltánCreates a dummy backend that discards all outputs.  This backend has no
533f0b3d811SKővágó, Zoltánbackend specific properties.
534f0b3d811SKővágó, Zoltán
535f0b3d811SKővágó, Zoltán@item -audiodev alsa,id=@var{id}[,@var{prop}[=@var{value}][,...]]
536f0b3d811SKővágó, ZoltánCreates backend using the ALSA.  This backend is only available on
537f0b3d811SKővágó, ZoltánLinux.
538f0b3d811SKővágó, Zoltán
539f0b3d811SKővágó, ZoltánALSA specific options are:
540f0b3d811SKővágó, Zoltán
541f0b3d811SKővágó, Zoltán@table @option
542f0b3d811SKővágó, Zoltán
543f0b3d811SKővágó, Zoltán@item in|out.dev=@var{device}
544f0b3d811SKővágó, ZoltánSpecify the ALSA @var{device} to use for input and/or output.  Default
545f0b3d811SKővágó, Zoltánis @code{default}.
546f0b3d811SKővágó, Zoltán
547f0b3d811SKővágó, Zoltán@item in|out.period-len=@var{usecs}
548f0b3d811SKővágó, ZoltánSets the period length in microseconds.
549f0b3d811SKővágó, Zoltán
550f0b3d811SKővágó, Zoltán@item in|out.try-poll=on|off
551f0b3d811SKővágó, ZoltánAttempt to use poll mode with the device.  Default is on.
552f0b3d811SKővágó, Zoltán
553f0b3d811SKővágó, Zoltán@item threshold=@var{threshold}
554f0b3d811SKővágó, ZoltánThreshold (in microseconds) when playback starts.  Default is 0.
555f0b3d811SKővágó, Zoltán
556f0b3d811SKővágó, Zoltán@end table
557f0b3d811SKővágó, Zoltán
558f0b3d811SKővágó, Zoltán@item -audiodev coreaudio,id=@var{id}[,@var{prop}[=@var{value}][,...]]
559f0b3d811SKővágó, ZoltánCreates a backend using Apple's Core Audio.  This backend is only
560f0b3d811SKővágó, Zoltánavailable on Mac OS and only supports playback.
561f0b3d811SKővágó, Zoltán
562f0b3d811SKővágó, ZoltánCore Audio specific options are:
563f0b3d811SKővágó, Zoltán
564f0b3d811SKővágó, Zoltán@table @option
565f0b3d811SKővágó, Zoltán
566f0b3d811SKővágó, Zoltán@item in|out.buffer-count=@var{count}
567f0b3d811SKővágó, ZoltánSets the @var{count} of the buffers.
568f0b3d811SKővágó, Zoltán
569f0b3d811SKővágó, Zoltán@end table
570f0b3d811SKővágó, Zoltán
571f0b3d811SKővágó, Zoltán@item -audiodev dsound,id=@var{id}[,@var{prop}[=@var{value}][,...]]
572f0b3d811SKővágó, ZoltánCreates a backend using Microsoft's DirectSound.  This backend is only
573f0b3d811SKővágó, Zoltánavailable on Windows and only supports playback.
574f0b3d811SKővágó, Zoltán
575f0b3d811SKővágó, ZoltánDirectSound specific options are:
576f0b3d811SKővágó, Zoltán
577f0b3d811SKővágó, Zoltán@table @option
578f0b3d811SKővágó, Zoltán
579f0b3d811SKővágó, Zoltán@item latency=@var{usecs}
580f0b3d811SKővágó, ZoltánAdd extra @var{usecs} microseconds latency to playback.  Default is
581f0b3d811SKővágó, Zoltán10000 (10 ms).
582f0b3d811SKővágó, Zoltán
583f0b3d811SKővágó, Zoltán@end table
584f0b3d811SKővágó, Zoltán
585f0b3d811SKővágó, Zoltán@item -audiodev oss,id=@var{id}[,@var{prop}[=@var{value}][,...]]
586f0b3d811SKővágó, ZoltánCreates a backend using OSS.  This backend is available on most
587f0b3d811SKővágó, ZoltánUnix-like systems.
588f0b3d811SKővágó, Zoltán
589f0b3d811SKővágó, ZoltánOSS specific options are:
590f0b3d811SKővágó, Zoltán
591f0b3d811SKővágó, Zoltán@table @option
592f0b3d811SKővágó, Zoltán
593f0b3d811SKővágó, Zoltán@item in|out.dev=@var{device}
594f0b3d811SKővágó, ZoltánSpecify the file name of the OSS @var{device} to use.  Default is
595f0b3d811SKővágó, Zoltán@code{/dev/dsp}.
596f0b3d811SKővágó, Zoltán
597f0b3d811SKővágó, Zoltán@item in|out.buffer-count=@var{count}
598f0b3d811SKővágó, ZoltánSets the @var{count} of the buffers.
599f0b3d811SKővágó, Zoltán
600f0b3d811SKővágó, Zoltán@item in|out.try-poll=on|of
601f0b3d811SKővágó, ZoltánAttempt to use poll mode with the device.  Default is on.
602f0b3d811SKővágó, Zoltán
603f0b3d811SKővágó, Zoltán@item try-mmap=on|off
604f0b3d811SKővágó, ZoltánTry using memory mapped device access.  Default is off.
605f0b3d811SKővágó, Zoltán
606f0b3d811SKővágó, Zoltán@item exclusive=on|off
607f0b3d811SKővágó, ZoltánOpen the device in exclusive mode (vmix won't work in this case).
608f0b3d811SKővágó, ZoltánDefault is off.
609f0b3d811SKővágó, Zoltán
610f0b3d811SKővágó, Zoltán@item dsp-policy=@var{policy}
611f0b3d811SKővágó, ZoltánSets the timing policy (between 0 and 10, where smaller number means
612f0b3d811SKővágó, Zoltánsmaller latency but higher CPU usage).  Use -1 to use buffer sizes
613f0b3d811SKővágó, Zoltánspecified by @code{buffer} and @code{buffer-count}.  This option is
614f0b3d811SKővágó, Zoltánignored if you do not have OSS 4. Default is 5.
615f0b3d811SKővágó, Zoltán
616f0b3d811SKővágó, Zoltán@end table
617f0b3d811SKővágó, Zoltán
618f0b3d811SKővágó, Zoltán@item -audiodev pa,id=@var{id}[,@var{prop}[=@var{value}][,...]]
619f0b3d811SKővágó, ZoltánCreates a backend using PulseAudio.  This backend is available on most
620f0b3d811SKővágó, Zoltánsystems.
621f0b3d811SKővágó, Zoltán
622f0b3d811SKővágó, ZoltánPulseAudio specific options are:
623f0b3d811SKővágó, Zoltán
624f0b3d811SKővágó, Zoltán@table @option
625f0b3d811SKővágó, Zoltán
626f0b3d811SKővágó, Zoltán@item server=@var{server}
627f0b3d811SKővágó, ZoltánSets the PulseAudio @var{server} to connect to.
628f0b3d811SKővágó, Zoltán
629f0b3d811SKővágó, Zoltán@item in|out.name=@var{sink}
630f0b3d811SKővágó, ZoltánUse the specified source/sink for recording/playback.
631f0b3d811SKővágó, Zoltán
632f0b3d811SKővágó, Zoltán@end table
633f0b3d811SKővágó, Zoltán
634f0b3d811SKővágó, Zoltán@item -audiodev sdl,id=@var{id}[,@var{prop}[=@var{value}][,...]]
635f0b3d811SKővágó, ZoltánCreates a backend using SDL.  This backend is available on most systems,
636f0b3d811SKővágó, Zoltánbut you should use your platform's native backend if possible.  This
637f0b3d811SKővágó, Zoltánbackend has no backend specific properties.
638f0b3d811SKővágó, Zoltán
639f0b3d811SKővágó, Zoltán@item -audiodev spice,id=@var{id}[,@var{prop}[=@var{value}][,...]]
640f0b3d811SKővágó, ZoltánCreates a backend that sends audio through SPICE.  This backend requires
641f0b3d811SKővágó, Zoltán@code{-spice} and automatically selected in that case, so usually you
642f0b3d811SKővágó, Zoltáncan ignore this option.  This backend has no backend specific
643f0b3d811SKővágó, Zoltánproperties.
644f0b3d811SKővágó, Zoltán
645f0b3d811SKővágó, Zoltán@item -audiodev wav,id=@var{id}[,@var{prop}[=@var{value}][,...]]
646f0b3d811SKővágó, ZoltánCreates a backend that writes audio to a WAV file.
647f0b3d811SKővágó, Zoltán
648f0b3d811SKővágó, ZoltánBackend specific options are:
649f0b3d811SKővágó, Zoltán
650f0b3d811SKővágó, Zoltán@table @option
651f0b3d811SKővágó, Zoltán
652f0b3d811SKővágó, Zoltán@item path=@var{path}
653f0b3d811SKővágó, ZoltánWrite recorded audio into the specified file.  Default is
654f0b3d811SKővágó, Zoltán@code{qemu.wav}.
655f0b3d811SKővágó, Zoltán
656f0b3d811SKővágó, Zoltán@end table
65710adb8beSMarkus ArmbrusterETEXI
65810adb8beSMarkus Armbruster
65910adb8beSMarkus ArmbrusterDEF("soundhw", HAS_ARG, QEMU_OPTION_soundhw,
66010adb8beSMarkus Armbruster    "-soundhw c1,... enable audio support\n"
66110adb8beSMarkus Armbruster    "                and only specified sound cards (comma separated list)\n"
66210adb8beSMarkus Armbruster    "                use '-soundhw help' to get the list of supported cards\n"
66310adb8beSMarkus Armbruster    "                use '-soundhw all' to enable all of them\n", QEMU_ARCH_ALL)
66410adb8beSMarkus ArmbrusterSTEXI
66510adb8beSMarkus Armbruster@item -soundhw @var{card1}[,@var{card2},...] or -soundhw all
66610adb8beSMarkus Armbruster@findex -soundhw
66710adb8beSMarkus ArmbrusterEnable audio and selected sound hardware. Use 'help' to print all
66810adb8beSMarkus Armbrusteravailable sound hardware.
66910adb8beSMarkus Armbruster
67010adb8beSMarkus Armbruster@example
67110adb8beSMarkus Armbrusterqemu-system-i386 -soundhw sb16,adlib disk.img
67210adb8beSMarkus Armbrusterqemu-system-i386 -soundhw es1370 disk.img
67310adb8beSMarkus Armbrusterqemu-system-i386 -soundhw ac97 disk.img
67410adb8beSMarkus Armbrusterqemu-system-i386 -soundhw hda disk.img
67510adb8beSMarkus Armbrusterqemu-system-i386 -soundhw all disk.img
67610adb8beSMarkus Armbrusterqemu-system-i386 -soundhw help
67710adb8beSMarkus Armbruster@end example
67810adb8beSMarkus Armbruster
67910adb8beSMarkus ArmbrusterNote that Linux's i810_audio OSS kernel (for AC97) module might
68010adb8beSMarkus Armbrusterrequire manually specifying clocking.
68110adb8beSMarkus Armbruster
68210adb8beSMarkus Armbruster@example
68310adb8beSMarkus Armbrustermodprobe i810_audio clocking=48000
68410adb8beSMarkus Armbruster@end example
68510adb8beSMarkus ArmbrusterETEXI
68610adb8beSMarkus Armbruster
68710adb8beSMarkus ArmbrusterDEF("device", HAS_ARG, QEMU_OPTION_device,
68810adb8beSMarkus Armbruster    "-device driver[,prop[=value][,...]]\n"
68910adb8beSMarkus Armbruster    "                add device (based on driver)\n"
69010adb8beSMarkus Armbruster    "                prop=value,... sets driver properties\n"
69110adb8beSMarkus Armbruster    "                use '-device help' to print all possible drivers\n"
69210adb8beSMarkus Armbruster    "                use '-device driver,help' to print all possible properties\n",
69310adb8beSMarkus Armbruster    QEMU_ARCH_ALL)
69410adb8beSMarkus ArmbrusterSTEXI
69510adb8beSMarkus Armbruster@item -device @var{driver}[,@var{prop}[=@var{value}][,...]]
69610adb8beSMarkus Armbruster@findex -device
69710adb8beSMarkus ArmbrusterAdd device @var{driver}.  @var{prop}=@var{value} sets driver
69810adb8beSMarkus Armbrusterproperties.  Valid properties depend on the driver.  To get help on
69910adb8beSMarkus Armbrusterpossible drivers and properties, use @code{-device help} and
70010adb8beSMarkus Armbruster@code{-device @var{driver},help}.
701f8490451SCorey Minyard
702f8490451SCorey MinyardSome drivers are:
703540c07d3SCédric Le Goater@item -device ipmi-bmc-sim,id=@var{id}[,slave_addr=@var{val}][,sdrfile=@var{file}][,furareasize=@var{val}][,furdatafile=@var{file}]
704f8490451SCorey Minyard
705f8490451SCorey MinyardAdd an IPMI BMC.  This is a simulation of a hardware management
706f8490451SCorey Minyardinterface processor that normally sits on a system.  It provides
707f8490451SCorey Minyarda watchdog and the ability to reset and power control the system.
708f8490451SCorey MinyardYou need to connect this to an IPMI interface to make it useful
709f8490451SCorey Minyard
710f8490451SCorey MinyardThe IPMI slave address to use for the BMC.  The default is 0x20.
711f8490451SCorey MinyardThis address is the BMC's address on the I2C network of management
712f8490451SCorey Minyardcontrollers.  If you don't know what this means, it is safe to ignore
713f8490451SCorey Minyardit.
714f8490451SCorey Minyard
7158c6fd7f3SCédric Le Goater@table @option
7168c6fd7f3SCédric Le Goater@item bmc=@var{id}
7178c6fd7f3SCédric Le GoaterThe BMC to connect to, one of ipmi-bmc-sim or ipmi-bmc-extern above.
7188c6fd7f3SCédric Le Goater@item slave_addr=@var{val}
7198c6fd7f3SCédric Le GoaterDefine slave address to use for the BMC.  The default is 0x20.
7208c6fd7f3SCédric Le Goater@item sdrfile=@var{file}
7218c6fd7f3SCédric Le Goaterfile containing raw Sensor Data Records (SDR) data. The default is none.
722540c07d3SCédric Le Goater@item fruareasize=@var{val}
723540c07d3SCédric Le Goatersize of a Field Replaceable Unit (FRU) area.  The default is 1024.
724540c07d3SCédric Le Goater@item frudatafile=@var{file}
725540c07d3SCédric Le Goaterfile containing raw Field Replaceable Unit (FRU) inventory data. The default is none.
7268c6fd7f3SCédric Le Goater@end table
7278c6fd7f3SCédric Le Goater
728f8490451SCorey Minyard@item -device ipmi-bmc-extern,id=@var{id},chardev=@var{id}[,slave_addr=@var{val}]
729f8490451SCorey Minyard
730f8490451SCorey MinyardAdd a connection to an external IPMI BMC simulator.  Instead of
731f8490451SCorey Minyardlocally emulating the BMC like the above item, instead connect
732f8490451SCorey Minyardto an external entity that provides the IPMI services.
733f8490451SCorey Minyard
734f8490451SCorey MinyardA connection is made to an external BMC simulator.  If you do this, it
735f8490451SCorey Minyardis strongly recommended that you use the "reconnect=" chardev option
736f8490451SCorey Minyardto reconnect to the simulator if the connection is lost.  Note that if
737f8490451SCorey Minyardthis is not used carefully, it can be a security issue, as the
738f8490451SCorey Minyardinterface has the ability to send resets, NMIs, and power off the VM.
739f8490451SCorey MinyardIt's best if QEMU makes a connection to an external simulator running
740f8490451SCorey Minyardon a secure port on localhost, so neither the simulator nor QEMU is
741f8490451SCorey Minyardexposed to any outside network.
742f8490451SCorey Minyard
743f8490451SCorey MinyardSee the "lanserv/README.vm" file in the OpenIPMI library for more
744f8490451SCorey Minyarddetails on the external interface.
745f8490451SCorey Minyard
746f8490451SCorey Minyard@item -device isa-ipmi-kcs,bmc=@var{id}[,ioport=@var{val}][,irq=@var{val}]
747f8490451SCorey Minyard
748f8490451SCorey MinyardAdd a KCS IPMI interafce on the ISA bus.  This also adds a
749f8490451SCorey Minyardcorresponding ACPI and SMBIOS entries, if appropriate.
750f8490451SCorey Minyard
751f8490451SCorey Minyard@table @option
752f8490451SCorey Minyard@item bmc=@var{id}
753f8490451SCorey MinyardThe BMC to connect to, one of ipmi-bmc-sim or ipmi-bmc-extern above.
754f8490451SCorey Minyard@item ioport=@var{val}
755f8490451SCorey MinyardDefine the I/O address of the interface.  The default is 0xca0 for KCS.
756f8490451SCorey Minyard@item irq=@var{val}
757f8490451SCorey MinyardDefine the interrupt to use.  The default is 5.  To disable interrupts,
758f8490451SCorey Minyardset this to 0.
759f8490451SCorey Minyard@end table
760f8490451SCorey Minyard
761f8490451SCorey Minyard@item -device isa-ipmi-bt,bmc=@var{id}[,ioport=@var{val}][,irq=@var{val}]
762f8490451SCorey Minyard
763f8490451SCorey MinyardLike the KCS interface, but defines a BT interface.  The default port is
764f8490451SCorey Minyard0xe4 and the default interrupt is 5.
765f8490451SCorey Minyard
76610adb8beSMarkus ArmbrusterETEXI
76710adb8beSMarkus Armbruster
76810adb8beSMarkus ArmbrusterDEF("name", HAS_ARG, QEMU_OPTION_name,
7698f480de0SDr. David Alan Gilbert    "-name string1[,process=string2][,debug-threads=on|off]\n"
77010adb8beSMarkus Armbruster    "                set the name of the guest\n"
771479a5747SRoman Bolshakov    "                string1 sets the window title and string2 the process name\n"
772479a5747SRoman Bolshakov    "                When debug-threads is enabled, individual threads are given a separate name\n"
7738f480de0SDr. David Alan Gilbert    "                NOTE: The thread names are for debugging and not a stable API.\n",
77410adb8beSMarkus Armbruster    QEMU_ARCH_ALL)
77510adb8beSMarkus ArmbrusterSTEXI
77610adb8beSMarkus Armbruster@item -name @var{name}
77710adb8beSMarkus Armbruster@findex -name
77810adb8beSMarkus ArmbrusterSets the @var{name} of the guest.
77910adb8beSMarkus ArmbrusterThis name will be displayed in the SDL window caption.
78010adb8beSMarkus ArmbrusterThe @var{name} will also be used for the VNC server.
78110adb8beSMarkus ArmbrusterAlso optionally set the top visible process name in Linux.
7828f480de0SDr. David Alan GilbertNaming of individual threads can also be enabled on Linux to aid debugging.
78310adb8beSMarkus ArmbrusterETEXI
78410adb8beSMarkus Armbruster
78510adb8beSMarkus ArmbrusterDEF("uuid", HAS_ARG, QEMU_OPTION_uuid,
78610adb8beSMarkus Armbruster    "-uuid %08x-%04x-%04x-%04x-%012x\n"
78710adb8beSMarkus Armbruster    "                specify machine UUID\n", QEMU_ARCH_ALL)
78810adb8beSMarkus ArmbrusterSTEXI
78910adb8beSMarkus Armbruster@item -uuid @var{uuid}
79010adb8beSMarkus Armbruster@findex -uuid
79110adb8beSMarkus ArmbrusterSet system UUID.
79210adb8beSMarkus ArmbrusterETEXI
79310adb8beSMarkus Armbruster
79410adb8beSMarkus ArmbrusterSTEXI
79510adb8beSMarkus Armbruster@end table
79610adb8beSMarkus ArmbrusterETEXI
79710adb8beSMarkus ArmbrusterDEFHEADING()
79810adb8beSMarkus Armbruster
799de6b4f90SMarkus ArmbrusterDEFHEADING(Block device options:)
80010adb8beSMarkus ArmbrusterSTEXI
80110adb8beSMarkus Armbruster@table @option
80210adb8beSMarkus ArmbrusterETEXI
80310adb8beSMarkus Armbruster
8045824d651Sblueswir1DEF("fda", HAS_ARG, QEMU_OPTION_fda,
805ad96090aSBlue Swirl    "-fda/-fdb file  use 'file' as floppy disk 0/1 image\n", QEMU_ARCH_ALL)
806ad96090aSBlue SwirlDEF("fdb", HAS_ARG, QEMU_OPTION_fdb, "", QEMU_ARCH_ALL)
8075824d651Sblueswir1STEXI
8085824d651Sblueswir1@item -fda @var{file}
809f9cfd655SMarkus Armbruster@itemx -fdb @var{file}
8106616b2adSStefan Weil@findex -fda
8116616b2adSStefan Weil@findex -fdb
81292a539d2SMarkus ArmbrusterUse @var{file} as floppy disk 0/1 image (@pxref{disk_images}).
8135824d651Sblueswir1ETEXI
8145824d651Sblueswir1
8155824d651Sblueswir1DEF("hda", HAS_ARG, QEMU_OPTION_hda,
816ad96090aSBlue Swirl    "-hda/-hdb file  use 'file' as IDE hard disk 0/1 image\n", QEMU_ARCH_ALL)
817ad96090aSBlue SwirlDEF("hdb", HAS_ARG, QEMU_OPTION_hdb, "", QEMU_ARCH_ALL)
8185824d651Sblueswir1DEF("hdc", HAS_ARG, QEMU_OPTION_hdc,
819ad96090aSBlue Swirl    "-hdc/-hdd file  use 'file' as IDE hard disk 2/3 image\n", QEMU_ARCH_ALL)
820ad96090aSBlue SwirlDEF("hdd", HAS_ARG, QEMU_OPTION_hdd, "", QEMU_ARCH_ALL)
8215824d651Sblueswir1STEXI
8225824d651Sblueswir1@item -hda @var{file}
823f9cfd655SMarkus Armbruster@itemx -hdb @var{file}
824f9cfd655SMarkus Armbruster@itemx -hdc @var{file}
825f9cfd655SMarkus Armbruster@itemx -hdd @var{file}
8266616b2adSStefan Weil@findex -hda
8276616b2adSStefan Weil@findex -hdb
8286616b2adSStefan Weil@findex -hdc
8296616b2adSStefan Weil@findex -hdd
8305824d651Sblueswir1Use @var{file} as hard disk 0, 1, 2 or 3 image (@pxref{disk_images}).
8315824d651Sblueswir1ETEXI
8325824d651Sblueswir1
8335824d651Sblueswir1DEF("cdrom", HAS_ARG, QEMU_OPTION_cdrom,
834ad96090aSBlue Swirl    "-cdrom file     use 'file' as IDE cdrom image (cdrom is ide1 master)\n",
835ad96090aSBlue Swirl    QEMU_ARCH_ALL)
8365824d651Sblueswir1STEXI
8375824d651Sblueswir1@item -cdrom @var{file}
8386616b2adSStefan Weil@findex -cdrom
8395824d651Sblueswir1Use @var{file} as CD-ROM image (you cannot use @option{-hdc} and
8405824d651Sblueswir1@option{-cdrom} at the same time). You can use the host CD-ROM by
8415824d651Sblueswir1using @file{/dev/cdrom} as filename (@pxref{host_drives}).
8425824d651Sblueswir1ETEXI
8435824d651Sblueswir1
84442e5f393SMarkus ArmbrusterDEF("blockdev", HAS_ARG, QEMU_OPTION_blockdev,
84542e5f393SMarkus Armbruster    "-blockdev [driver=]driver[,node-name=N][,discard=ignore|unmap]\n"
84642e5f393SMarkus Armbruster    "          [,cache.direct=on|off][,cache.no-flush=on|off]\n"
84742e5f393SMarkus Armbruster    "          [,read-only=on|off][,detect-zeroes=on|off|unmap]\n"
84842e5f393SMarkus Armbruster    "          [,driver specific parameters...]\n"
84942e5f393SMarkus Armbruster    "                configure a block backend\n", QEMU_ARCH_ALL)
850dfaca464SKevin WolfSTEXI
851dfaca464SKevin Wolf@item -blockdev @var{option}[,@var{option}[,@var{option}[,...]]]
852dfaca464SKevin Wolf@findex -blockdev
853dfaca464SKevin Wolf
854370e8328SKevin WolfDefine a new block driver node. Some of the options apply to all block drivers,
855370e8328SKevin Wolfother options are only accepted for a specific block driver. See below for a
856370e8328SKevin Wolflist of generic options and options for the most common block drivers.
857370e8328SKevin Wolf
858370e8328SKevin WolfOptions that expect a reference to another node (e.g. @code{file}) can be
859370e8328SKevin Wolfgiven in two ways. Either you specify the node name of an already existing node
860370e8328SKevin Wolf(file=@var{node-name}), or you define a new node inline, adding options
861370e8328SKevin Wolffor the referenced node after a dot (file.filename=@var{path},file.aio=native).
862370e8328SKevin Wolf
863370e8328SKevin WolfA block driver node created with @option{-blockdev} can be used for a guest
864370e8328SKevin Wolfdevice by specifying its node name for the @code{drive} property in a
865370e8328SKevin Wolf@option{-device} argument that defines a block device.
866dfaca464SKevin Wolf
867dfaca464SKevin Wolf@table @option
868dfaca464SKevin Wolf@item Valid options for any block driver node:
869dfaca464SKevin Wolf
870dfaca464SKevin Wolf@table @code
871dfaca464SKevin Wolf@item driver
872dfaca464SKevin WolfSpecifies the block driver to use for the given node.
873dfaca464SKevin Wolf@item node-name
874dfaca464SKevin WolfThis defines the name of the block driver node by which it will be referenced
875dfaca464SKevin Wolflater. The name must be unique, i.e. it must not match the name of a different
876dfaca464SKevin Wolfblock driver node, or (if you use @option{-drive} as well) the ID of a drive.
877dfaca464SKevin Wolf
878dfaca464SKevin WolfIf no node name is specified, it is automatically generated. The generated node
879dfaca464SKevin Wolfname is not intended to be predictable and changes between QEMU invocations.
880dfaca464SKevin WolfFor the top level, an explicit node name must be specified.
881dfaca464SKevin Wolf@item read-only
882dfaca464SKevin WolfOpen the node read-only. Guest write attempts will fail.
883dfaca464SKevin Wolf@item cache.direct
884dfaca464SKevin WolfThe host page cache can be avoided with @option{cache.direct=on}. This will
885dfaca464SKevin Wolfattempt to do disk IO directly to the guest's memory. QEMU may still perform an
886dfaca464SKevin Wolfinternal copy of the data.
887dfaca464SKevin Wolf@item cache.no-flush
888dfaca464SKevin WolfIn case you don't care about data integrity over host failures, you can use
889dfaca464SKevin Wolf@option{cache.no-flush=on}. This option tells QEMU that it never needs to write
890dfaca464SKevin Wolfany data to the disk but can instead keep things in cache. If anything goes
891dfaca464SKevin Wolfwrong, like your host losing power, the disk storage getting disconnected
892dfaca464SKevin Wolfaccidentally, etc. your image will most probably be rendered unusable.
893dfaca464SKevin Wolf@item discard=@var{discard}
894dfaca464SKevin Wolf@var{discard} is one of "ignore" (or "off") or "unmap" (or "on") and controls
895dfaca464SKevin Wolfwhether @code{discard} (also known as @code{trim} or @code{unmap}) requests are
896dfaca464SKevin Wolfignored or passed to the filesystem. Some machine types may not support
897dfaca464SKevin Wolfdiscard requests.
898dfaca464SKevin Wolf@item detect-zeroes=@var{detect-zeroes}
899dfaca464SKevin Wolf@var{detect-zeroes} is "off", "on" or "unmap" and enables the automatic
900dfaca464SKevin Wolfconversion of plain zero writes by the OS to driver specific optimized
901dfaca464SKevin Wolfzero write commands. You may even choose "unmap" if @var{discard} is set
902dfaca464SKevin Wolfto "unmap" to allow a zero write to be converted to an @code{unmap} operation.
903dfaca464SKevin Wolf@end table
904dfaca464SKevin Wolf
905370e8328SKevin Wolf@item Driver-specific options for @code{file}
906370e8328SKevin Wolf
907370e8328SKevin WolfThis is the protocol-level block driver for accessing regular files.
908370e8328SKevin Wolf
909370e8328SKevin Wolf@table @code
910370e8328SKevin Wolf@item filename
911370e8328SKevin WolfThe path to the image file in the local filesystem
912370e8328SKevin Wolf@item aio
913370e8328SKevin WolfSpecifies the AIO backend (threads/native, default: threads)
9141878eaffSFam Zheng@item locking
9151878eaffSFam ZhengSpecifies whether the image file is protected with Linux OFD / POSIX locks. The
9161878eaffSFam Zhengdefault is to use the Linux Open File Descriptor API if available, otherwise no
9171878eaffSFam Zhenglock is applied.  (auto/on/off, default: auto)
918370e8328SKevin Wolf@end table
919370e8328SKevin WolfExample:
920370e8328SKevin Wolf@example
921370e8328SKevin Wolf-blockdev driver=file,node-name=disk,filename=disk.img
922370e8328SKevin Wolf@end example
923370e8328SKevin Wolf
924370e8328SKevin Wolf@item Driver-specific options for @code{raw}
925370e8328SKevin Wolf
926370e8328SKevin WolfThis is the image format block driver for raw images. It is usually
927370e8328SKevin Wolfstacked on top of a protocol level block driver such as @code{file}.
928370e8328SKevin Wolf
929370e8328SKevin Wolf@table @code
930370e8328SKevin Wolf@item file
931370e8328SKevin WolfReference to or definition of the data source block driver node
932370e8328SKevin Wolf(e.g. a @code{file} driver node)
933370e8328SKevin Wolf@end table
934370e8328SKevin WolfExample 1:
935370e8328SKevin Wolf@example
936370e8328SKevin Wolf-blockdev driver=file,node-name=disk_file,filename=disk.img
937370e8328SKevin Wolf-blockdev driver=raw,node-name=disk,file=disk_file
938370e8328SKevin Wolf@end example
939370e8328SKevin WolfExample 2:
940370e8328SKevin Wolf@example
941370e8328SKevin Wolf-blockdev driver=raw,node-name=disk,file.driver=file,file.filename=disk.img
942370e8328SKevin Wolf@end example
943370e8328SKevin Wolf
944370e8328SKevin Wolf@item Driver-specific options for @code{qcow2}
945370e8328SKevin Wolf
946370e8328SKevin WolfThis is the image format block driver for qcow2 images. It is usually
947370e8328SKevin Wolfstacked on top of a protocol level block driver such as @code{file}.
948370e8328SKevin Wolf
949370e8328SKevin Wolf@table @code
950370e8328SKevin Wolf@item file
951370e8328SKevin WolfReference to or definition of the data source block driver node
952370e8328SKevin Wolf(e.g. a @code{file} driver node)
953370e8328SKevin Wolf
954370e8328SKevin Wolf@item backing
955370e8328SKevin WolfReference to or definition of the backing file block device (default is taken
9564f7be280SMax Reitzfrom the image file). It is allowed to pass @code{null} here in order to disable
9574f7be280SMax Reitzthe default backing file.
958370e8328SKevin Wolf
959370e8328SKevin Wolf@item lazy-refcounts
960370e8328SKevin WolfWhether to enable the lazy refcounts feature (on/off; default is taken from the
961370e8328SKevin Wolfimage file)
962370e8328SKevin Wolf
963370e8328SKevin Wolf@item cache-size
964370e8328SKevin WolfThe maximum total size of the L2 table and refcount block caches in bytes
96540fb215dSLeonid Bloch(default: the sum of l2-cache-size and refcount-cache-size)
966370e8328SKevin Wolf
967370e8328SKevin Wolf@item l2-cache-size
968370e8328SKevin WolfThe maximum size of the L2 table cache in bytes
96980668d0fSLeonid Bloch(default: if cache-size is not specified - 32M on Linux platforms, and 8M on
97080668d0fSLeonid Blochnon-Linux platforms; otherwise, as large as possible within the cache-size,
97180668d0fSLeonid Blochwhile permitting the requested or the minimal refcount cache size)
972370e8328SKevin Wolf
973370e8328SKevin Wolf@item refcount-cache-size
974370e8328SKevin WolfThe maximum size of the refcount block cache in bytes
97540fb215dSLeonid Bloch(default: 4 times the cluster size; or if cache-size is specified, the part of
97640fb215dSLeonid Blochit which is not used for the L2 cache)
977370e8328SKevin Wolf
978370e8328SKevin Wolf@item cache-clean-interval
979370e8328SKevin WolfClean unused entries in the L2 and refcount caches. The interval is in seconds.
980e3a7b455SLeonid BlochThe default value is 600 on supporting platforms, and 0 on other platforms.
981e3a7b455SLeonid BlochSetting it to 0 disables this feature.
982370e8328SKevin Wolf
983370e8328SKevin Wolf@item pass-discard-request
984370e8328SKevin WolfWhether discard requests to the qcow2 device should be forwarded to the data
985370e8328SKevin Wolfsource (on/off; default: on if discard=unmap is specified, off otherwise)
986370e8328SKevin Wolf
987370e8328SKevin Wolf@item pass-discard-snapshot
988370e8328SKevin WolfWhether discard requests for the data source should be issued when a snapshot
989370e8328SKevin Wolfoperation (e.g. deleting a snapshot) frees clusters in the qcow2 file (on/off;
990370e8328SKevin Wolfdefault: on)
991370e8328SKevin Wolf
992370e8328SKevin Wolf@item pass-discard-other
993370e8328SKevin WolfWhether discard requests for the data source should be issued on other
994370e8328SKevin Wolfoccasions where a cluster gets freed (on/off; default: off)
995370e8328SKevin Wolf
996370e8328SKevin Wolf@item overlap-check
997370e8328SKevin WolfWhich overlap checks to perform for writes to the image
998370e8328SKevin Wolf(none/constant/cached/all; default: cached). For details or finer
999370e8328SKevin Wolfgranularity control refer to the QAPI documentation of @code{blockdev-add}.
1000370e8328SKevin Wolf@end table
1001370e8328SKevin Wolf
1002370e8328SKevin WolfExample 1:
1003370e8328SKevin Wolf@example
1004370e8328SKevin Wolf-blockdev driver=file,node-name=my_file,filename=/tmp/disk.qcow2
1005370e8328SKevin Wolf-blockdev driver=qcow2,node-name=hda,file=my_file,overlap-check=none,cache-size=16777216
1006370e8328SKevin Wolf@end example
1007370e8328SKevin WolfExample 2:
1008370e8328SKevin Wolf@example
1009370e8328SKevin Wolf-blockdev driver=qcow2,node-name=disk,file.driver=http,file.filename=http://example.com/image.qcow2
1010370e8328SKevin Wolf@end example
1011370e8328SKevin Wolf
1012370e8328SKevin Wolf@item Driver-specific options for other drivers
1013370e8328SKevin WolfPlease refer to the QAPI documentation of the @code{blockdev-add} QMP command.
1014370e8328SKevin Wolf
1015dfaca464SKevin Wolf@end table
1016dfaca464SKevin Wolf
1017dfaca464SKevin WolfETEXI
101842e5f393SMarkus Armbruster
10195824d651Sblueswir1DEF("drive", HAS_ARG, QEMU_OPTION_drive,
10205824d651Sblueswir1    "-drive [file=file][,if=type][,bus=n][,unit=m][,media=d][,index=i]\n"
102192196b2fSStefan Hajnoczi    "       [,cache=writethrough|writeback|none|directsync|unsafe][,format=f]\n"
1022572023f7SKevin Wolf    "       [,snapshot=on|off][,rerror=ignore|stop|report]\n"
1023d1db760dSStefan Hajnoczi    "       [,werror=ignore|stop|report|enospc][,id=name][,aio=threads|native]\n"
1024fb0490f6SStefan Hajnoczi    "       [,readonly=on|off][,copy-on-read=on|off]\n"
10252f7133b2SPeter Lieven    "       [,discard=ignore|unmap][,detect-zeroes=on|off|unmap]\n"
10263e9fab69SBenoît Canet    "       [[,bps=b]|[[,bps_rd=r][,bps_wr=w]]]\n"
10273e9fab69SBenoît Canet    "       [[,iops=i]|[[,iops_rd=r][,iops_wr=w]]]\n"
10283e9fab69SBenoît Canet    "       [[,bps_max=bm]|[[,bps_rd_max=rm][,bps_wr_max=wm]]]\n"
10293e9fab69SBenoît Canet    "       [[,iops_max=im]|[[,iops_rd_max=irm][,iops_wr_max=iwm]]]\n"
10302024c1dfSBenoît Canet    "       [[,iops_size=is]]\n"
103176f4afb4SAlberto Garcia    "       [[,group=g]]\n"
1032ad96090aSBlue Swirl    "                use 'file' as a drive image\n", QEMU_ARCH_ALL)
10335824d651Sblueswir1STEXI
10345824d651Sblueswir1@item -drive @var{option}[,@var{option}[,@var{option}[,...]]]
10356616b2adSStefan Weil@findex -drive
10365824d651Sblueswir1
1037dfaca464SKevin WolfDefine a new drive. This includes creating a block driver node (the backend) as
1038dfaca464SKevin Wolfwell as a guest device, and is mostly a shortcut for defining the corresponding
1039dfaca464SKevin Wolf@option{-blockdev} and @option{-device} options.
1040dfaca464SKevin Wolf
1041dfaca464SKevin Wolf@option{-drive} accepts all options that are accepted by @option{-blockdev}. In
1042dfaca464SKevin Wolfaddition, it knows the following options:
10435824d651Sblueswir1
1044b3f046c2SKevin Wolf@table @option
10455824d651Sblueswir1@item file=@var{file}
10465824d651Sblueswir1This option defines which disk image (@pxref{disk_images}) to use with
10475824d651Sblueswir1this drive. If the filename contains comma, you must double it
10485824d651Sblueswir1(for instance, "file=my,,file" to use file "my,file").
10490f5314a2SRonnie Sahlberg
10500f5314a2SRonnie SahlbergSpecial files such as iSCSI devices can be specified using protocol
10510f5314a2SRonnie Sahlbergspecific URLs. See the section for "Device URL Syntax" for more information.
10525824d651Sblueswir1@item if=@var{interface}
10535824d651Sblueswir1This option defines on which type on interface the drive is connected.
1054ed1fcd00SCraig JellickAvailable types are: ide, scsi, sd, mtd, floppy, pflash, virtio, none.
10555824d651Sblueswir1@item bus=@var{bus},unit=@var{unit}
10565824d651Sblueswir1These options define where is connected the drive by defining the bus number and
10575824d651Sblueswir1the unit id.
10585824d651Sblueswir1@item index=@var{index}
10595824d651Sblueswir1This option defines where is connected the drive by using an index in the list
10605824d651Sblueswir1of available connectors of a given interface type.
10615824d651Sblueswir1@item media=@var{media}
10625824d651Sblueswir1This option defines the type of the media: disk or cdrom.
10635824d651Sblueswir1@item snapshot=@var{snapshot}
10649d85d557SMichael Tokarev@var{snapshot} is "on" or "off" and controls snapshot mode for the given drive
10659d85d557SMichael Tokarev(see @option{-snapshot}).
10665824d651Sblueswir1@item cache=@var{cache}
1067dfaca464SKevin Wolf@var{cache} is "none", "writeback", "unsafe", "directsync" or "writethrough"
1068dfaca464SKevin Wolfand controls how the host cache is used to access block data. This is a
1069dfaca464SKevin Wolfshortcut that sets the @option{cache.direct} and @option{cache.no-flush}
1070dfaca464SKevin Wolfoptions (as in @option{-blockdev}), and additionally @option{cache.writeback},
1071dfaca464SKevin Wolfwhich provides a default for the @option{write-cache} option of block guest
1072dfaca464SKevin Wolfdevices (as in @option{-device}). The modes correspond to the following
1073dfaca464SKevin Wolfsettings:
1074dfaca464SKevin Wolf
1075dfaca464SKevin Wolf@c Our texi2pod.pl script doesn't support @multitable, so fall back to using
1076dfaca464SKevin Wolf@c plain ASCII art (well, UTF-8 art really). This looks okay both in the manpage
1077dfaca464SKevin Wolf@c and the HTML output.
1078dfaca464SKevin Wolf@example
1079dfaca464SKevin Wolf@             │ cache.writeback   cache.direct   cache.no-flush
1080dfaca464SKevin Wolf─────────────┼─────────────────────────────────────────────────
1081dfaca464SKevin Wolfwriteback    │ on                off            off
1082dfaca464SKevin Wolfnone         │ on                on             off
1083dfaca464SKevin Wolfwritethrough │ off               off            off
1084dfaca464SKevin Wolfdirectsync   │ off               on             off
1085dfaca464SKevin Wolfunsafe       │ on                off            on
1086dfaca464SKevin Wolf@end example
1087dfaca464SKevin Wolf
1088dfaca464SKevin WolfThe default mode is @option{cache=writeback}.
1089dfaca464SKevin Wolf
10905c6c3a6cSChristoph Hellwig@item aio=@var{aio}
10915c6c3a6cSChristoph Hellwig@var{aio} is "threads", or "native" and selects between pthread based disk I/O and native Linux AIO.
10925824d651Sblueswir1@item format=@var{format}
10935824d651Sblueswir1Specify which disk @var{format} will be used rather than detecting
1094d33c8a7dSMichael Tokarevthe format.  Can be used to specify format=raw to avoid interpreting
10955824d651Sblueswir1an untrusted format header.
1096ae73e591SLuiz Capitulino@item werror=@var{action},rerror=@var{action}
1097ae73e591SLuiz CapitulinoSpecify which @var{action} to take on write and read errors. Valid actions are:
1098ae73e591SLuiz Capitulino"ignore" (ignore the error and try to continue), "stop" (pause QEMU),
1099ae73e591SLuiz Capitulino"report" (report the error to the guest), "enospc" (pause QEMU only if the
1100ae73e591SLuiz Capitulinohost disk is full; report the error to the guest otherwise).
1101ae73e591SLuiz CapitulinoThe default setting is @option{werror=enospc} and @option{rerror=report}.
1102fb0490f6SStefan Hajnoczi@item copy-on-read=@var{copy-on-read}
1103fb0490f6SStefan Hajnoczi@var{copy-on-read} is "on" or "off" and enables whether to copy read backing
1104fb0490f6SStefan Hajnoczifile sectors into the image file.
110501f9cfabSStefan Hajnoczi@item bps=@var{b},bps_rd=@var{r},bps_wr=@var{w}
110601f9cfabSStefan HajnocziSpecify bandwidth throttling limits in bytes per second, either for all request
110701f9cfabSStefan Hajnoczitypes or for reads or writes only.  Small values can lead to timeouts or hangs
110801f9cfabSStefan Hajnocziinside the guest.  A safe minimum for disks is 2 MB/s.
110901f9cfabSStefan Hajnoczi@item bps_max=@var{bm},bps_rd_max=@var{rm},bps_wr_max=@var{wm}
111001f9cfabSStefan HajnocziSpecify bursts in bytes per second, either for all request types or for reads
111101f9cfabSStefan Hajnoczior writes only.  Bursts allow the guest I/O to spike above the limit
111201f9cfabSStefan Hajnoczitemporarily.
111301f9cfabSStefan Hajnoczi@item iops=@var{i},iops_rd=@var{r},iops_wr=@var{w}
111401f9cfabSStefan HajnocziSpecify request rate limits in requests per second, either for all request
111501f9cfabSStefan Hajnoczitypes or for reads or writes only.
111601f9cfabSStefan Hajnoczi@item iops_max=@var{bm},iops_rd_max=@var{rm},iops_wr_max=@var{wm}
111701f9cfabSStefan HajnocziSpecify bursts in requests per second, either for all request types or for reads
111801f9cfabSStefan Hajnoczior writes only.  Bursts allow the guest I/O to spike above the limit
111901f9cfabSStefan Hajnoczitemporarily.
112001f9cfabSStefan Hajnoczi@item iops_size=@var{is}
112101f9cfabSStefan HajnocziLet every @var{is} bytes of a request count as a new request for iops
112201f9cfabSStefan Hajnoczithrottling purposes.  Use this option to prevent guests from circumventing iops
112301f9cfabSStefan Hajnoczilimits by sending fewer but larger requests.
112401f9cfabSStefan Hajnoczi@item group=@var{g}
112501f9cfabSStefan HajnocziJoin a throttling quota group with given name @var{g}.  All drives that are
112601f9cfabSStefan Hajnoczimembers of the same group are accounted for together.  Use this option to
112701f9cfabSStefan Hajnocziprevent guests from circumventing throttling limits by using many small disks
112801f9cfabSStefan Hajnocziinstead of a single larger disk.
11295824d651Sblueswir1@end table
11305824d651Sblueswir1
1131dfaca464SKevin WolfBy default, the @option{cache.writeback=on} mode is used. It will report data
1132a13e5e05SKevin Wolfwrites as completed as soon as the data is present in the host page cache.
1133a13e5e05SKevin WolfThis is safe as long as your guest OS makes sure to correctly flush disk caches
1134a13e5e05SKevin Wolfwhere needed. If your guest OS does not handle volatile disk write caches
1135a13e5e05SKevin Wolfcorrectly and your host crashes or loses power, then the guest may experience
1136a13e5e05SKevin Wolfdata corruption.
11375824d651Sblueswir1
1138dfaca464SKevin WolfFor such guests, you should consider using @option{cache.writeback=off}. This
1139a13e5e05SKevin Wolfmeans that the host page cache will be used to read and write data, but write
1140a13e5e05SKevin Wolfnotification will be sent to the guest only after QEMU has made sure to flush
1141a13e5e05SKevin Wolfeach write to the disk. Be aware that this has a major impact on performance.
11425824d651Sblueswir1
1143dfaca464SKevin WolfWhen using the @option{-snapshot} option, unsafe caching is always used.
1144016f5cf6SAlexander Graf
1145fb0490f6SStefan HajnocziCopy-on-read avoids accessing the same backing file sectors repeatedly and is
1146fb0490f6SStefan Hajnocziuseful when the backing file is over a slow network.  By default copy-on-read
1147fb0490f6SStefan Hajnocziis off.
1148fb0490f6SStefan Hajnoczi
11495824d651Sblueswir1Instead of @option{-cdrom} you can use:
11505824d651Sblueswir1@example
11513804da9dSStefan Weilqemu-system-i386 -drive file=file,index=2,media=cdrom
11525824d651Sblueswir1@end example
11535824d651Sblueswir1
11545824d651Sblueswir1Instead of @option{-hda}, @option{-hdb}, @option{-hdc}, @option{-hdd}, you can
11555824d651Sblueswir1use:
11565824d651Sblueswir1@example
11573804da9dSStefan Weilqemu-system-i386 -drive file=file,index=0,media=disk
11583804da9dSStefan Weilqemu-system-i386 -drive file=file,index=1,media=disk
11593804da9dSStefan Weilqemu-system-i386 -drive file=file,index=2,media=disk
11603804da9dSStefan Weilqemu-system-i386 -drive file=file,index=3,media=disk
11615824d651Sblueswir1@end example
11625824d651Sblueswir1
1163587ed6beSCorey BryantYou can open an image using pre-opened file descriptors from an fd set:
1164587ed6beSCorey Bryant@example
1165587ed6beSCorey Bryantqemu-system-i386
1166587ed6beSCorey Bryant-add-fd fd=3,set=2,opaque="rdwr:/path/to/file"
1167587ed6beSCorey Bryant-add-fd fd=4,set=2,opaque="rdonly:/path/to/file"
1168587ed6beSCorey Bryant-drive file=/dev/fdset/2,index=0,media=disk
1169587ed6beSCorey Bryant@end example
1170587ed6beSCorey Bryant
11715824d651Sblueswir1You can connect a CDROM to the slave of ide0:
11725824d651Sblueswir1@example
11733804da9dSStefan Weilqemu-system-i386 -drive file=file,if=ide,index=1,media=cdrom
11745824d651Sblueswir1@end example
11755824d651Sblueswir1
11765824d651Sblueswir1If you don't specify the "file=" argument, you define an empty drive:
11775824d651Sblueswir1@example
11783804da9dSStefan Weilqemu-system-i386 -drive if=ide,index=1,media=cdrom
11795824d651Sblueswir1@end example
11805824d651Sblueswir1
11815824d651Sblueswir1Instead of @option{-fda}, @option{-fdb}, you can use:
11825824d651Sblueswir1@example
11833804da9dSStefan Weilqemu-system-i386 -drive file=file,index=0,if=floppy
11843804da9dSStefan Weilqemu-system-i386 -drive file=file,index=1,if=floppy
11855824d651Sblueswir1@end example
11865824d651Sblueswir1
11875824d651Sblueswir1By default, @var{interface} is "ide" and @var{index} is automatically
11885824d651Sblueswir1incremented:
11895824d651Sblueswir1@example
11903804da9dSStefan Weilqemu-system-i386 -drive file=a -drive file=b"
11915824d651Sblueswir1@end example
11925824d651Sblueswir1is interpreted like:
11935824d651Sblueswir1@example
11943804da9dSStefan Weilqemu-system-i386 -hda a -hdb b
11955824d651Sblueswir1@end example
11965824d651Sblueswir1ETEXI
11975824d651Sblueswir1
11985824d651Sblueswir1DEF("mtdblock", HAS_ARG, QEMU_OPTION_mtdblock,
1199ad96090aSBlue Swirl    "-mtdblock file  use 'file' as on-board Flash memory image\n",
1200ad96090aSBlue Swirl    QEMU_ARCH_ALL)
12015824d651Sblueswir1STEXI
12024e257e5eSKevin Wolf@item -mtdblock @var{file}
12036616b2adSStefan Weil@findex -mtdblock
12044e257e5eSKevin WolfUse @var{file} as on-board Flash memory image.
12055824d651Sblueswir1ETEXI
12065824d651Sblueswir1
12075824d651Sblueswir1DEF("sd", HAS_ARG, QEMU_OPTION_sd,
1208ad96090aSBlue Swirl    "-sd file        use 'file' as SecureDigital card image\n", QEMU_ARCH_ALL)
12095824d651Sblueswir1STEXI
12104e257e5eSKevin Wolf@item -sd @var{file}
12116616b2adSStefan Weil@findex -sd
12124e257e5eSKevin WolfUse @var{file} as SecureDigital card image.
12135824d651Sblueswir1ETEXI
12145824d651Sblueswir1
12155824d651Sblueswir1DEF("pflash", HAS_ARG, QEMU_OPTION_pflash,
1216ad96090aSBlue Swirl    "-pflash file    use 'file' as a parallel flash image\n", QEMU_ARCH_ALL)
12175824d651Sblueswir1STEXI
12184e257e5eSKevin Wolf@item -pflash @var{file}
12196616b2adSStefan Weil@findex -pflash
12204e257e5eSKevin WolfUse @var{file} as a parallel flash image.
12215824d651Sblueswir1ETEXI
12225824d651Sblueswir1
12235824d651Sblueswir1DEF("snapshot", 0, QEMU_OPTION_snapshot,
1224ad96090aSBlue Swirl    "-snapshot       write to temporary files instead of disk image files\n",
1225ad96090aSBlue Swirl    QEMU_ARCH_ALL)
12265824d651Sblueswir1STEXI
12275824d651Sblueswir1@item -snapshot
12286616b2adSStefan Weil@findex -snapshot
12295824d651Sblueswir1Write to temporary files instead of disk image files. In this case,
12305824d651Sblueswir1the raw disk image you use is not written back. You can however force
12315824d651Sblueswir1the write back by pressing @key{C-a s} (@pxref{disk_images}).
12325824d651Sblueswir1ETEXI
12335824d651Sblueswir1
123474db920cSGautham R ShenoyDEF("fsdev", HAS_ARG, QEMU_OPTION_fsdev,
1235b44a6b09SGreg Kurz    "-fsdev local,id=id,path=path,security_model=mapped-xattr|mapped-file|passthrough|none\n"
1236b44a6b09SGreg Kurz    " [,writeout=immediate][,readonly][,fmode=fmode][,dmode=dmode]\n"
1237b8bbdb88SPradeep Jagadeesh    " [[,throttling.bps-total=b]|[[,throttling.bps-read=r][,throttling.bps-write=w]]]\n"
1238b8bbdb88SPradeep Jagadeesh    " [[,throttling.iops-total=i]|[[,throttling.iops-read=r][,throttling.iops-write=w]]]\n"
1239b8bbdb88SPradeep Jagadeesh    " [[,throttling.bps-total-max=bm]|[[,throttling.bps-read-max=rm][,throttling.bps-write-max=wm]]]\n"
1240b8bbdb88SPradeep Jagadeesh    " [[,throttling.iops-total-max=im]|[[,throttling.iops-read-max=irm][,throttling.iops-write-max=iwm]]]\n"
1241b44a6b09SGreg Kurz    " [[,throttling.iops-size=is]]\n"
1242b44a6b09SGreg Kurz    "-fsdev proxy,id=id,socket=socket[,writeout=immediate][,readonly]\n"
1243b44a6b09SGreg Kurz    "-fsdev proxy,id=id,sock_fd=sock_fd[,writeout=immediate][,readonly]\n"
1244b44a6b09SGreg Kurz    "-fsdev synth,id=id\n",
124574db920cSGautham R Shenoy    QEMU_ARCH_ALL)
124674db920cSGautham R Shenoy
124774db920cSGautham R ShenoySTEXI
124874db920cSGautham R Shenoy
1249b44a6b09SGreg Kurz@item -fsdev local,id=@var{id},path=@var{path},security_model=@var{security_model} [,writeout=@var{writeout}][,readonly][,fmode=@var{fmode}][,dmode=@var{dmode}] [,throttling.@var{option}=@var{value}[,throttling.@var{option}=@var{value}[,...]]]
1250b44a6b09SGreg Kurz@itemx -fsdev proxy,id=@var{id},socket=@var{socket}[,writeout=@var{writeout}][,readonly]
1251b44a6b09SGreg Kurz@itemx -fsdev proxy,id=@var{id},sock_fd=@var{sock_fd}[,writeout=@var{writeout}][,readonly]
1252b44a6b09SGreg Kurz@itemx -fsdev synth,id=@var{id}[,readonly]
125374db920cSGautham R Shenoy@findex -fsdev
12547c92a3d2SAneesh Kumar K.VDefine a new file system device. Valid options are:
12557c92a3d2SAneesh Kumar K.V@table @option
1256b44a6b09SGreg Kurz@item local
1257b44a6b09SGreg KurzAccesses to the filesystem are done by QEMU.
1258b44a6b09SGreg Kurz@item proxy
1259b44a6b09SGreg KurzAccesses to the filesystem are done by virtfs-proxy-helper(1).
1260b44a6b09SGreg Kurz@item synth
1261b44a6b09SGreg KurzSynthetic filesystem, only used by QTests.
12627c92a3d2SAneesh Kumar K.V@item id=@var{id}
1263b44a6b09SGreg KurzSpecifies identifier for this device.
12647c92a3d2SAneesh Kumar K.V@item path=@var{path}
12657c92a3d2SAneesh Kumar K.VSpecifies the export path for the file system device. Files under
12667c92a3d2SAneesh Kumar K.Vthis path will be available to the 9p client on the guest.
12677c92a3d2SAneesh Kumar K.V@item security_model=@var{security_model}
12687c92a3d2SAneesh Kumar K.VSpecifies the security model to be used for this export path.
12692c30dd74SAneesh Kumar K.VSupported security models are "passthrough", "mapped-xattr", "mapped-file" and "none".
12707c92a3d2SAneesh Kumar K.VIn "passthrough" security model, files are stored using the same
1271b65ee4faSStefan Weilcredentials as they are created on the guest. This requires QEMU
12722c30dd74SAneesh Kumar K.Vto run as root. In "mapped-xattr" security model, some of the file
12737c92a3d2SAneesh Kumar K.Vattributes like uid, gid, mode bits and link target are stored as
12742c30dd74SAneesh Kumar K.Vfile attributes. For "mapped-file" these attributes are stored in the
12752c30dd74SAneesh Kumar K.Vhidden .virtfs_metadata directory. Directories exported by this security model cannot
12767c92a3d2SAneesh Kumar K.Vinteract with other unix tools. "none" security model is same as
12777c92a3d2SAneesh Kumar K.Vpassthrough except the sever won't report failures if it fails to
1278d9b36a6eSM. Mohan Kumarset file attributes like ownership. Security model is mandatory
127993aee84fSGreg Kurzonly for local fsdriver. Other fsdrivers (like proxy) don't take
1280d9b36a6eSM. Mohan Kumarsecurity model as a parameter.
12817c92a3d2SAneesh Kumar K.V@item writeout=@var{writeout}
12827c92a3d2SAneesh Kumar K.VThis is an optional argument. The only supported value is "immediate".
12837c92a3d2SAneesh Kumar K.VThis means that host page cache will be used to read and write data but
12847c92a3d2SAneesh Kumar K.Vwrite notification will be sent to the guest only when the data has been
12857c92a3d2SAneesh Kumar K.Vreported as written by the storage subsystem.
12862c74c2cbSM. Mohan Kumar@item readonly
12872c74c2cbSM. Mohan KumarEnables exporting 9p share as a readonly mount for guests. By default
12882c74c2cbSM. Mohan Kumarread-write access is given.
128984a87cc4SM. Mohan Kumar@item socket=@var{socket}
129084a87cc4SM. Mohan KumarEnables proxy filesystem driver to use passed socket file for communicating
1291b44a6b09SGreg Kurzwith virtfs-proxy-helper(1).
1292f67e3ffdSM. Mohan Kumar@item sock_fd=@var{sock_fd}
1293f67e3ffdSM. Mohan KumarEnables proxy filesystem driver to use passed socket descriptor for
1294b44a6b09SGreg Kurzcommunicating with virtfs-proxy-helper(1). Usually a helper like libvirt
1295b44a6b09SGreg Kurzwill create socketpair and pass one of the fds as sock_fd.
1296b96feb2cSTobias Schramm@item fmode=@var{fmode}
1297b96feb2cSTobias SchrammSpecifies the default mode for newly created files on the host. Works only
1298b96feb2cSTobias Schrammwith security models "mapped-xattr" and "mapped-file".
1299b96feb2cSTobias Schramm@item dmode=@var{dmode}
1300b96feb2cSTobias SchrammSpecifies the default mode for newly created directories on the host. Works
1301b96feb2cSTobias Schrammonly with security models "mapped-xattr" and "mapped-file".
1302b44a6b09SGreg Kurz@item throttling.bps-total=@var{b},throttling.bps-read=@var{r},throttling.bps-write=@var{w}
1303b44a6b09SGreg KurzSpecify bandwidth throttling limits in bytes per second, either for all request
1304b44a6b09SGreg Kurztypes or for reads or writes only.
1305b44a6b09SGreg Kurz@item throttling.bps-total-max=@var{bm},bps-read-max=@var{rm},bps-write-max=@var{wm}
1306b44a6b09SGreg KurzSpecify bursts in bytes per second, either for all request types or for reads
1307b44a6b09SGreg Kurzor writes only.  Bursts allow the guest I/O to spike above the limit
1308b44a6b09SGreg Kurztemporarily.
1309b44a6b09SGreg Kurz@item throttling.iops-total=@var{i},throttling.iops-read=@var{r}, throttling.iops-write=@var{w}
1310b44a6b09SGreg KurzSpecify request rate limits in requests per second, either for all request
1311b44a6b09SGreg Kurztypes or for reads or writes only.
1312b44a6b09SGreg Kurz@item throttling.iops-total-max=@var{im},throttling.iops-read-max=@var{irm}, throttling.iops-write-max=@var{iwm}
1313b44a6b09SGreg KurzSpecify bursts in requests per second, either for all request types or for reads
1314b44a6b09SGreg Kurzor writes only.  Bursts allow the guest I/O to spike above the limit temporarily.
1315b44a6b09SGreg Kurz@item throttling.iops-size=@var{is}
1316b44a6b09SGreg KurzLet every @var{is} bytes of a request count as a new request for iops
1317b44a6b09SGreg Kurzthrottling purposes.
131874db920cSGautham R Shenoy@end table
13197c92a3d2SAneesh Kumar K.V
1320b44a6b09SGreg Kurz-fsdev option is used along with -device driver "virtio-9p-...".
1321b44a6b09SGreg Kurz@item -device virtio-9p-@var{type},fsdev=@var{id},mount_tag=@var{mount_tag}
1322b44a6b09SGreg KurzOptions for virtio-9p-... driver are:
13237c92a3d2SAneesh Kumar K.V@table @option
1324b44a6b09SGreg Kurz@item @var{type}
1325b44a6b09SGreg KurzSpecifies the variant to be used. Supported values are "pci", "ccw" or "device",
1326b44a6b09SGreg Kurzdepending on the machine type.
13277c92a3d2SAneesh Kumar K.V@item fsdev=@var{id}
1328b44a6b09SGreg KurzSpecifies the id value specified along with -fsdev option.
13297c92a3d2SAneesh Kumar K.V@item mount_tag=@var{mount_tag}
1330b44a6b09SGreg KurzSpecifies the tag name to be used by the guest to mount this export point.
13317c92a3d2SAneesh Kumar K.V@end table
13327c92a3d2SAneesh Kumar K.V
133374db920cSGautham R ShenoyETEXI
133474db920cSGautham R Shenoy
13353d54abc7SGautham R ShenoyDEF("virtfs", HAS_ARG, QEMU_OPTION_virtfs,
1336b44a6b09SGreg Kurz    "-virtfs local,path=path,mount_tag=tag,security_model=mapped-xattr|mapped-file|passthrough|none\n"
1337b44a6b09SGreg Kurz    "        [,id=id][,writeout=immediate][,readonly][,fmode=fmode][,dmode=dmode]\n"
1338b44a6b09SGreg Kurz    "-virtfs proxy,mount_tag=tag,socket=socket[,id=id][,writeout=immediate][,readonly]\n"
1339b44a6b09SGreg Kurz    "-virtfs proxy,mount_tag=tag,sock_fd=sock_fd[,id=id][,writeout=immediate][,readonly]\n"
1340b44a6b09SGreg Kurz    "-virtfs synth,mount_tag=tag[,id=id][,readonly]\n",
13413d54abc7SGautham R Shenoy    QEMU_ARCH_ALL)
13423d54abc7SGautham R Shenoy
13433d54abc7SGautham R ShenoySTEXI
13443d54abc7SGautham R Shenoy
1345b44a6b09SGreg Kurz@item -virtfs local,path=@var{path},mount_tag=@var{mount_tag} ,security_model=@var{security_model}[,writeout=@var{writeout}][,readonly] [,fmode=@var{fmode}][,dmode=@var{dmode}]
1346b44a6b09SGreg Kurz@itemx -virtfs proxy,socket=@var{socket},mount_tag=@var{mount_tag} [,writeout=@var{writeout}][,readonly]
1347b44a6b09SGreg Kurz@itemx -virtfs proxy,sock_fd=@var{sock_fd},mount_tag=@var{mount_tag} [,writeout=@var{writeout}][,readonly]
1348b44a6b09SGreg Kurz@itemx -virtfs synth,mount_tag=@var{mount_tag}
13493d54abc7SGautham R Shenoy@findex -virtfs
13503d54abc7SGautham R Shenoy
1351b44a6b09SGreg KurzDefine a new filesystem device and expose it to the guest using a virtio-9p-device. The general form of a Virtual File system pass-through options are:
13527c92a3d2SAneesh Kumar K.V@table @option
1353b44a6b09SGreg Kurz@item local
1354b44a6b09SGreg KurzAccesses to the filesystem are done by QEMU.
1355b44a6b09SGreg Kurz@item proxy
1356b44a6b09SGreg KurzAccesses to the filesystem are done by virtfs-proxy-helper(1).
1357b44a6b09SGreg Kurz@item synth
1358b44a6b09SGreg KurzSynthetic filesystem, only used by QTests.
13597c92a3d2SAneesh Kumar K.V@item id=@var{id}
1360b44a6b09SGreg KurzSpecifies identifier for the filesystem device
13617c92a3d2SAneesh Kumar K.V@item path=@var{path}
13627c92a3d2SAneesh Kumar K.VSpecifies the export path for the file system device. Files under
13637c92a3d2SAneesh Kumar K.Vthis path will be available to the 9p client on the guest.
13647c92a3d2SAneesh Kumar K.V@item security_model=@var{security_model}
13657c92a3d2SAneesh Kumar K.VSpecifies the security model to be used for this export path.
13662c30dd74SAneesh Kumar K.VSupported security models are "passthrough", "mapped-xattr", "mapped-file" and "none".
13677c92a3d2SAneesh Kumar K.VIn "passthrough" security model, files are stored using the same
1368b65ee4faSStefan Weilcredentials as they are created on the guest. This requires QEMU
13692c30dd74SAneesh Kumar K.Vto run as root. In "mapped-xattr" security model, some of the file
13707c92a3d2SAneesh Kumar K.Vattributes like uid, gid, mode bits and link target are stored as
13712c30dd74SAneesh Kumar K.Vfile attributes. For "mapped-file" these attributes are stored in the
13722c30dd74SAneesh Kumar K.Vhidden .virtfs_metadata directory. Directories exported by this security model cannot
13737c92a3d2SAneesh Kumar K.Vinteract with other unix tools. "none" security model is same as
13747c92a3d2SAneesh Kumar K.Vpassthrough except the sever won't report failures if it fails to
1375d9b36a6eSM. Mohan Kumarset file attributes like ownership. Security model is mandatory only
137693aee84fSGreg Kurzfor local fsdriver. Other fsdrivers (like proxy) don't take security
1377d9b36a6eSM. Mohan Kumarmodel as a parameter.
13787c92a3d2SAneesh Kumar K.V@item writeout=@var{writeout}
13797c92a3d2SAneesh Kumar K.VThis is an optional argument. The only supported value is "immediate".
13807c92a3d2SAneesh Kumar K.VThis means that host page cache will be used to read and write data but
13817c92a3d2SAneesh Kumar K.Vwrite notification will be sent to the guest only when the data has been
13827c92a3d2SAneesh Kumar K.Vreported as written by the storage subsystem.
13832c74c2cbSM. Mohan Kumar@item readonly
13842c74c2cbSM. Mohan KumarEnables exporting 9p share as a readonly mount for guests. By default
13852c74c2cbSM. Mohan Kumarread-write access is given.
138684a87cc4SM. Mohan Kumar@item socket=@var{socket}
138784a87cc4SM. Mohan KumarEnables proxy filesystem driver to use passed socket file for
1388b44a6b09SGreg Kurzcommunicating with virtfs-proxy-helper(1). Usually a helper like libvirt
1389b44a6b09SGreg Kurzwill create socketpair and pass one of the fds as sock_fd.
1390f67e3ffdSM. Mohan Kumar@item sock_fd
1391f67e3ffdSM. Mohan KumarEnables proxy filesystem driver to use passed 'sock_fd' as the socket
1392b44a6b09SGreg Kurzdescriptor for interfacing with virtfs-proxy-helper(1).
1393b96feb2cSTobias Schramm@item fmode=@var{fmode}
1394b96feb2cSTobias SchrammSpecifies the default mode for newly created files on the host. Works only
1395b96feb2cSTobias Schrammwith security models "mapped-xattr" and "mapped-file".
1396b96feb2cSTobias Schramm@item dmode=@var{dmode}
1397b96feb2cSTobias SchrammSpecifies the default mode for newly created directories on the host. Works
1398b96feb2cSTobias Schrammonly with security models "mapped-xattr" and "mapped-file".
1399b44a6b09SGreg Kurz@item mount_tag=@var{mount_tag}
1400b44a6b09SGreg KurzSpecifies the tag name to be used by the guest to mount this export point.
14013d54abc7SGautham R Shenoy@end table
14023d54abc7SGautham R ShenoyETEXI
14033d54abc7SGautham R Shenoy
14049db221aeSAneesh Kumar K.VDEF("virtfs_synth", 0, QEMU_OPTION_virtfs_synth,
14059db221aeSAneesh Kumar K.V    "-virtfs_synth Create synthetic file system image\n",
14069db221aeSAneesh Kumar K.V    QEMU_ARCH_ALL)
14079db221aeSAneesh Kumar K.VSTEXI
14089db221aeSAneesh Kumar K.V@item -virtfs_synth
14099db221aeSAneesh Kumar K.V@findex -virtfs_synth
14106e4199afSGreg KurzCreate synthetic file system image. Note that this option is now deprecated.
14116e4199afSGreg KurzPlease use @code{-fsdev synth} and @code{-device virtio-9p-...} instead.
14129db221aeSAneesh Kumar K.VETEXI
14139db221aeSAneesh Kumar K.V
141461d70487SMarkus ArmbrusterDEF("iscsi", HAS_ARG, QEMU_OPTION_iscsi,
141561d70487SMarkus Armbruster    "-iscsi [user=user][,password=password]\n"
141661d70487SMarkus Armbruster    "       [,header-digest=CRC32C|CR32C-NONE|NONE-CRC32C|NONE\n"
141761d70487SMarkus Armbruster    "       [,initiator-name=initiator-iqn][,id=target-iqn]\n"
141861d70487SMarkus Armbruster    "       [,timeout=timeout]\n"
141961d70487SMarkus Armbruster    "                iSCSI session parameters\n", QEMU_ARCH_ALL)
142061d70487SMarkus Armbruster
14215824d651Sblueswir1STEXI
142244743148SMarkus Armbruster@item -iscsi
142344743148SMarkus Armbruster@findex -iscsi
142444743148SMarkus ArmbrusterConfigure iSCSI session parameters.
142544743148SMarkus ArmbrusterETEXI
142644743148SMarkus Armbruster
142744743148SMarkus ArmbrusterSTEXI
14285824d651Sblueswir1@end table
14295824d651Sblueswir1ETEXI
14305824d651Sblueswir1DEFHEADING()
14315824d651Sblueswir1
1432de6b4f90SMarkus ArmbrusterDEFHEADING(USB options:)
143310adb8beSMarkus ArmbrusterSTEXI
143410adb8beSMarkus Armbruster@table @option
143510adb8beSMarkus ArmbrusterETEXI
143610adb8beSMarkus Armbruster
143710adb8beSMarkus ArmbrusterDEF("usb", 0, QEMU_OPTION_usb,
1438a358a3afSThomas Huth    "-usb            enable the USB driver (if it is not used by default yet)\n",
143910adb8beSMarkus Armbruster    QEMU_ARCH_ALL)
144010adb8beSMarkus ArmbrusterSTEXI
144110adb8beSMarkus Armbruster@item -usb
144210adb8beSMarkus Armbruster@findex -usb
1443a358a3afSThomas HuthEnable the USB driver (if it is not used by default yet).
144410adb8beSMarkus ArmbrusterETEXI
144510adb8beSMarkus Armbruster
144610adb8beSMarkus ArmbrusterDEF("usbdevice", HAS_ARG, QEMU_OPTION_usbdevice,
144710adb8beSMarkus Armbruster    "-usbdevice name add the host or guest USB device 'name'\n",
144810adb8beSMarkus Armbruster    QEMU_ARCH_ALL)
144910adb8beSMarkus ArmbrusterSTEXI
145010adb8beSMarkus Armbruster
145110adb8beSMarkus Armbruster@item -usbdevice @var{devname}
145210adb8beSMarkus Armbruster@findex -usbdevice
1453a358a3afSThomas HuthAdd the USB device @var{devname}. Note that this option is deprecated,
1454a358a3afSThomas Huthplease use @code{-device usb-...} instead. @xref{usb_devices}.
145510adb8beSMarkus Armbruster
145610adb8beSMarkus Armbruster@table @option
145710adb8beSMarkus Armbruster
145810adb8beSMarkus Armbruster@item mouse
145910adb8beSMarkus ArmbrusterVirtual Mouse. This will override the PS/2 mouse emulation when activated.
146010adb8beSMarkus Armbruster
146110adb8beSMarkus Armbruster@item tablet
146210adb8beSMarkus ArmbrusterPointer device that uses absolute coordinates (like a touchscreen). This
146310adb8beSMarkus Armbrustermeans QEMU is able to report the mouse position without having to grab the
146410adb8beSMarkus Armbrustermouse. Also overrides the PS/2 mouse emulation when activated.
146510adb8beSMarkus Armbruster
146610adb8beSMarkus Armbruster@item braille
146710adb8beSMarkus ArmbrusterBraille device.  This will use BrlAPI to display the braille output on a real
146810adb8beSMarkus Armbrusteror fake device.
146910adb8beSMarkus Armbruster
147010adb8beSMarkus Armbruster@end table
147110adb8beSMarkus ArmbrusterETEXI
147210adb8beSMarkus Armbruster
147310adb8beSMarkus ArmbrusterSTEXI
147410adb8beSMarkus Armbruster@end table
147510adb8beSMarkus ArmbrusterETEXI
147610adb8beSMarkus ArmbrusterDEFHEADING()
147710adb8beSMarkus Armbruster
1478de6b4f90SMarkus ArmbrusterDEFHEADING(Display options:)
14795824d651Sblueswir1STEXI
14805824d651Sblueswir1@table @option
14815824d651Sblueswir1ETEXI
14825824d651Sblueswir1
14831472a95bSJes SorensenDEF("display", HAS_ARG, QEMU_OPTION_display,
1484d8aec9d9SMarc-André Lureau    "-display spice-app[,gl=on|off]\n"
14851472a95bSJes Sorensen    "-display sdl[,frame=on|off][,alt_grab=on|off][,ctrl_grab=on|off]\n"
14864867e47cSElie Tournier    "            [,window_close=on|off][,gl=on|core|es|off]\n"
1487f04ec5afSRobert Ho    "-display gtk[,grab_on_hover=on|off][,gl=on|off]|\n"
1488f04ec5afSRobert Ho    "-display vnc=<display>[,<optargs>]\n"
14892f8b7cd5SSamuel Thibault    "-display curses[,charset=<encoding>]\n"
1490144aaa99SErik Skultety    "-display none\n"
1491144aaa99SErik Skultety    "-display egl-headless[,rendernode=<file>]"
1492f04ec5afSRobert Ho    "                select display type\n"
1493f04ec5afSRobert Ho    "The default display is equivalent to\n"
1494f04ec5afSRobert Ho#if defined(CONFIG_GTK)
1495f04ec5afSRobert Ho            "\t\"-display gtk\"\n"
1496f04ec5afSRobert Ho#elif defined(CONFIG_SDL)
1497f04ec5afSRobert Ho            "\t\"-display sdl\"\n"
1498f04ec5afSRobert Ho#elif defined(CONFIG_COCOA)
1499f04ec5afSRobert Ho            "\t\"-display cocoa\"\n"
1500f04ec5afSRobert Ho#elif defined(CONFIG_VNC)
1501f04ec5afSRobert Ho            "\t\"-vnc localhost:0,to=99,id=default\"\n"
1502f04ec5afSRobert Ho#else
1503f04ec5afSRobert Ho            "\t\"-display none\"\n"
1504f04ec5afSRobert Ho#endif
1505f04ec5afSRobert Ho    , QEMU_ARCH_ALL)
15061472a95bSJes SorensenSTEXI
15071472a95bSJes Sorensen@item -display @var{type}
15081472a95bSJes Sorensen@findex -display
15091472a95bSJes SorensenSelect type of display to use. This option is a replacement for the
15101472a95bSJes Sorensenold style -sdl/-curses/... options. Valid values for @var{type} are
15111472a95bSJes Sorensen@table @option
15121472a95bSJes Sorensen@item sdl
15131472a95bSJes SorensenDisplay video output via SDL (usually in a separate graphics
15141472a95bSJes Sorensenwindow; see the SDL documentation for other possibilities).
15151472a95bSJes Sorensen@item curses
15161472a95bSJes SorensenDisplay video output via curses. For graphics device models which
15171472a95bSJes Sorensensupport a text mode, QEMU can display this output using a
15181472a95bSJes Sorensencurses/ncurses interface. Nothing is displayed when the graphics
15191472a95bSJes Sorensendevice is in graphical mode or if the graphics device does not support
15201472a95bSJes Sorensena text mode. Generally only the VGA device models support text mode.
15212f8b7cd5SSamuel ThibaultThe font charset used by the guest can be specified with the
15222f8b7cd5SSamuel Thibault@code{charset} option, for example @code{charset=CP850} for IBM CP850
15232f8b7cd5SSamuel Thibaultencoding. The default is @code{CP437}.
15244171d32eSJes Sorensen@item none
15254171d32eSJes SorensenDo not display video output. The guest will still see an emulated
15264171d32eSJes Sorensengraphics card, but its output will not be displayed to the QEMU
15274171d32eSJes Sorensenuser. This option differs from the -nographic option in that it
15284171d32eSJes Sorensenonly affects what is done with video output; -nographic also changes
15294171d32eSJes Sorensenthe destination of the serial and parallel port data.
1530881249c7SJan Kiszka@item gtk
1531881249c7SJan KiszkaDisplay video output in a GTK window. This interface provides drop-down
1532881249c7SJan Kiszkamenus and other UI elements to configure and control the VM during
1533881249c7SJan Kiszkaruntime.
15343264ff12SJes Sorensen@item vnc
15353264ff12SJes SorensenStart a VNC server on display <arg>
1536144aaa99SErik Skultety@item egl-headless
1537144aaa99SErik SkultetyOffload all OpenGL operations to a local DRI device. For any graphical display,
1538144aaa99SErik Skultetythis display needs to be paired with either VNC or SPICE displays.
1539d8aec9d9SMarc-André Lureau@item spice-app
1540d8aec9d9SMarc-André LureauStart QEMU as a Spice server and launch the default Spice client
1541d8aec9d9SMarc-André Lureauapplication. The Spice server will redirect the serial consoles and
1542d8aec9d9SMarc-André LureauQEMU monitors. (Since 4.0)
15431472a95bSJes Sorensen@end table
15441472a95bSJes SorensenETEXI
15451472a95bSJes Sorensen
15465824d651Sblueswir1DEF("nographic", 0, QEMU_OPTION_nographic,
1547ad96090aSBlue Swirl    "-nographic      disable graphical output and redirect serial I/Os to console\n",
1548ad96090aSBlue Swirl    QEMU_ARCH_ALL)
15495824d651Sblueswir1STEXI
15505824d651Sblueswir1@item -nographic
15516616b2adSStefan Weil@findex -nographic
1552dc0a3e44SColin LordNormally, if QEMU is compiled with graphical window support, it displays
1553dc0a3e44SColin Lordoutput such as guest graphics, guest console, and the QEMU monitor in a
1554dc0a3e44SColin Lordwindow. With this option, you can totally disable graphical output so
1555dc0a3e44SColin Lordthat QEMU is a simple command line application. The emulated serial port
1556dc0a3e44SColin Lordis redirected on the console and muxed with the monitor (unless
1557dc0a3e44SColin Lordredirected elsewhere explicitly). Therefore, you can still use QEMU to
1558dc0a3e44SColin Lorddebug a Linux kernel with a serial console. Use @key{C-a h} for help on
1559dc0a3e44SColin Lordswitching between the console and monitor.
15605824d651Sblueswir1ETEXI
15615824d651Sblueswir1
15625824d651Sblueswir1DEF("curses", 0, QEMU_OPTION_curses,
1563f04ec5afSRobert Ho    "-curses         shorthand for -display curses\n",
1564ad96090aSBlue Swirl    QEMU_ARCH_ALL)
15655824d651Sblueswir1STEXI
15665824d651Sblueswir1@item -curses
1567b8f490ebSMarkus Armbruster@findex -curses
1568dc0a3e44SColin LordNormally, if QEMU is compiled with graphical window support, it displays
1569dc0a3e44SColin Lordoutput such as guest graphics, guest console, and the QEMU monitor in a
1570dc0a3e44SColin Lordwindow. With this option, QEMU can display the VGA output when in text
1571dc0a3e44SColin Lordmode using a curses/ncurses interface. Nothing is displayed in graphical
1572dc0a3e44SColin Lordmode.
15735824d651Sblueswir1ETEXI
15745824d651Sblueswir1
15755824d651Sblueswir1DEF("alt-grab", 0, QEMU_OPTION_alt_grab,
1576ad96090aSBlue Swirl    "-alt-grab       use Ctrl-Alt-Shift to grab mouse (instead of Ctrl-Alt)\n",
1577ad96090aSBlue Swirl    QEMU_ARCH_ALL)
15785824d651Sblueswir1STEXI
15795824d651Sblueswir1@item -alt-grab
15806616b2adSStefan Weil@findex -alt-grab
1581de1db2a1SBrad HardsUse Ctrl-Alt-Shift to grab mouse (instead of Ctrl-Alt). Note that this also
1582de1db2a1SBrad Hardsaffects the special keys (for fullscreen, monitor-mode switching, etc).
15835824d651Sblueswir1ETEXI
15845824d651Sblueswir1
15850ca9f8a4SDustin KirklandDEF("ctrl-grab", 0, QEMU_OPTION_ctrl_grab,
1586ad96090aSBlue Swirl    "-ctrl-grab      use Right-Ctrl to grab mouse (instead of Ctrl-Alt)\n",
1587ad96090aSBlue Swirl    QEMU_ARCH_ALL)
15880ca9f8a4SDustin KirklandSTEXI
15890ca9f8a4SDustin Kirkland@item -ctrl-grab
15906616b2adSStefan Weil@findex -ctrl-grab
1591de1db2a1SBrad HardsUse Right-Ctrl to grab mouse (instead of Ctrl-Alt). Note that this also
1592de1db2a1SBrad Hardsaffects the special keys (for fullscreen, monitor-mode switching, etc).
15930ca9f8a4SDustin KirklandETEXI
15940ca9f8a4SDustin Kirkland
15955824d651Sblueswir1DEF("no-quit", 0, QEMU_OPTION_no_quit,
1596ad96090aSBlue Swirl    "-no-quit        disable SDL window close capability\n", QEMU_ARCH_ALL)
15975824d651Sblueswir1STEXI
15985824d651Sblueswir1@item -no-quit
15996616b2adSStefan Weil@findex -no-quit
16005824d651Sblueswir1Disable SDL window close capability.
16015824d651Sblueswir1ETEXI
16025824d651Sblueswir1
16035824d651Sblueswir1DEF("sdl", 0, QEMU_OPTION_sdl,
1604f04ec5afSRobert Ho    "-sdl            shorthand for -display sdl\n", QEMU_ARCH_ALL)
16055824d651Sblueswir1STEXI
16065824d651Sblueswir1@item -sdl
16076616b2adSStefan Weil@findex -sdl
16085824d651Sblueswir1Enable SDL.
16095824d651Sblueswir1ETEXI
16105824d651Sblueswir1
161129b0040bSGerd HoffmannDEF("spice", HAS_ARG, QEMU_OPTION_spice,
161227af7788SYonit Halperin    "-spice [port=port][,tls-port=secured-port][,x509-dir=<dir>]\n"
161327af7788SYonit Halperin    "       [,x509-key-file=<file>][,x509-key-password=<file>]\n"
161427af7788SYonit Halperin    "       [,x509-cert-file=<file>][,x509-cacert-file=<file>]\n"
1615fe4831b1SMarc-André Lureau    "       [,x509-dh-key-file=<file>][,addr=addr][,ipv4|ipv6|unix]\n"
161627af7788SYonit Halperin    "       [,tls-ciphers=<list>]\n"
161727af7788SYonit Halperin    "       [,tls-channel=[main|display|cursor|inputs|record|playback]]\n"
161827af7788SYonit Halperin    "       [,plaintext-channel=[main|display|cursor|inputs|record|playback]]\n"
161927af7788SYonit Halperin    "       [,sasl][,password=<secret>][,disable-ticketing]\n"
162027af7788SYonit Halperin    "       [,image-compression=[auto_glz|auto_lz|quic|glz|lz|off]]\n"
162127af7788SYonit Halperin    "       [,jpeg-wan-compression=[auto|never|always]]\n"
162227af7788SYonit Halperin    "       [,zlib-glz-wan-compression=[auto|never|always]]\n"
162327af7788SYonit Halperin    "       [,streaming-video=[off|all|filter]][,disable-copy-paste]\n"
16245ad24e5fSHans de Goede    "       [,disable-agent-file-xfer][,agent-mouse=[on|off]]\n"
16255ad24e5fSHans de Goede    "       [,playback-compression=[on|off]][,seamless-migration=[on|off]]\n"
16267b525508SMarc-André Lureau    "       [,gl=[on|off]][,rendernode=<file>]\n"
162727af7788SYonit Halperin    "   enable spice\n"
162827af7788SYonit Halperin    "   at least one of {port, tls-port} is mandatory\n",
162927af7788SYonit Halperin    QEMU_ARCH_ALL)
163029b0040bSGerd HoffmannSTEXI
163129b0040bSGerd Hoffmann@item -spice @var{option}[,@var{option}[,...]]
163229b0040bSGerd Hoffmann@findex -spice
163329b0040bSGerd HoffmannEnable the spice remote desktop protocol. Valid options are
163429b0040bSGerd Hoffmann
163529b0040bSGerd Hoffmann@table @option
163629b0040bSGerd Hoffmann
163729b0040bSGerd Hoffmann@item port=<nr>
1638c448e855SGerd HoffmannSet the TCP port spice is listening on for plaintext channels.
163929b0040bSGerd Hoffmann
1640333b0eebSGerd Hoffmann@item addr=<addr>
1641333b0eebSGerd HoffmannSet the IP address spice is listening on.  Default is any address.
1642333b0eebSGerd Hoffmann
1643333b0eebSGerd Hoffmann@item ipv4
1644f9cfd655SMarkus Armbruster@itemx ipv6
1645f9cfd655SMarkus Armbruster@itemx unix
1646333b0eebSGerd HoffmannForce using the specified IP version.
1647333b0eebSGerd Hoffmann
164829b0040bSGerd Hoffmann@item password=<secret>
164929b0040bSGerd HoffmannSet the password you need to authenticate.
165029b0040bSGerd Hoffmann
165148b3ed0aSMarc-André Lureau@item sasl
165248b3ed0aSMarc-André LureauRequire that the client use SASL to authenticate with the spice.
165348b3ed0aSMarc-André LureauThe exact choice of authentication method used is controlled from the
165448b3ed0aSMarc-André Lureausystem / user's SASL configuration file for the 'qemu' service. This
165548b3ed0aSMarc-André Lureauis typically found in /etc/sasl2/qemu.conf. If running QEMU as an
165648b3ed0aSMarc-André Lureauunprivileged user, an environment variable SASL_CONF_PATH can be used
165748b3ed0aSMarc-André Lureauto make it search alternate locations for the service config.
165848b3ed0aSMarc-André LureauWhile some SASL auth methods can also provide data encryption (eg GSSAPI),
165948b3ed0aSMarc-André Lureauit is recommended that SASL always be combined with the 'tls' and
166048b3ed0aSMarc-André Lureau'x509' settings to enable use of SSL and server certificates. This
166148b3ed0aSMarc-André Lureauensures a data encryption preventing compromise of authentication
166248b3ed0aSMarc-André Lureaucredentials.
166348b3ed0aSMarc-André Lureau
166429b0040bSGerd Hoffmann@item disable-ticketing
166529b0040bSGerd HoffmannAllow client connects without authentication.
166629b0040bSGerd Hoffmann
1667d4970b07SHans de Goede@item disable-copy-paste
1668d4970b07SHans de GoedeDisable copy paste between the client and the guest.
1669d4970b07SHans de Goede
16705ad24e5fSHans de Goede@item disable-agent-file-xfer
16715ad24e5fSHans de GoedeDisable spice-vdagent based file-xfer between the client and the guest.
16725ad24e5fSHans de Goede
1673c448e855SGerd Hoffmann@item tls-port=<nr>
1674c448e855SGerd HoffmannSet the TCP port spice is listening on for encrypted channels.
1675c448e855SGerd Hoffmann
1676c448e855SGerd Hoffmann@item x509-dir=<dir>
1677c448e855SGerd HoffmannSet the x509 file directory. Expects same filenames as -vnc $display,x509=$dir
1678c448e855SGerd Hoffmann
1679c448e855SGerd Hoffmann@item x509-key-file=<file>
1680f9cfd655SMarkus Armbruster@itemx x509-key-password=<file>
1681f9cfd655SMarkus Armbruster@itemx x509-cert-file=<file>
1682f9cfd655SMarkus Armbruster@itemx x509-cacert-file=<file>
1683f9cfd655SMarkus Armbruster@itemx x509-dh-key-file=<file>
1684c448e855SGerd HoffmannThe x509 file names can also be configured individually.
1685c448e855SGerd Hoffmann
1686c448e855SGerd Hoffmann@item tls-ciphers=<list>
1687c448e855SGerd HoffmannSpecify which ciphers to use.
1688c448e855SGerd Hoffmann
1689d70d6b31SAlon Levy@item tls-channel=[main|display|cursor|inputs|record|playback]
1690f9cfd655SMarkus Armbruster@itemx plaintext-channel=[main|display|cursor|inputs|record|playback]
169117b6dea0SGerd HoffmannForce specific channel to be used with or without TLS encryption.  The
169217b6dea0SGerd Hoffmannoptions can be specified multiple times to configure multiple
169317b6dea0SGerd Hoffmannchannels.  The special name "default" can be used to set the default
169417b6dea0SGerd Hoffmannmode.  For channels which are not explicitly forced into one mode the
169517b6dea0SGerd Hoffmannspice client is allowed to pick tls/plaintext as he pleases.
169617b6dea0SGerd Hoffmann
16979f04e09eSYonit Halperin@item image-compression=[auto_glz|auto_lz|quic|glz|lz|off]
16989f04e09eSYonit HalperinConfigure image compression (lossless).
16999f04e09eSYonit HalperinDefault is auto_glz.
17009f04e09eSYonit Halperin
17019f04e09eSYonit Halperin@item jpeg-wan-compression=[auto|never|always]
1702f9cfd655SMarkus Armbruster@itemx zlib-glz-wan-compression=[auto|never|always]
17039f04e09eSYonit HalperinConfigure wan image compression (lossy for slow links).
17049f04e09eSYonit HalperinDefault is auto.
17059f04e09eSYonit Halperin
170684a23f25SGerd Hoffmann@item streaming-video=[off|all|filter]
170793ca519eSLi ZhijianConfigure video stream detection.  Default is off.
170884a23f25SGerd Hoffmann
170984a23f25SGerd Hoffmann@item agent-mouse=[on|off]
171084a23f25SGerd HoffmannEnable/disable passing mouse events via vdagent.  Default is on.
171184a23f25SGerd Hoffmann
171284a23f25SGerd Hoffmann@item playback-compression=[on|off]
171384a23f25SGerd HoffmannEnable/disable audio stream compression (using celt 0.5.1).  Default is on.
171484a23f25SGerd Hoffmann
17158c957053SYonit Halperin@item seamless-migration=[on|off]
17168c957053SYonit HalperinEnable/disable spice seamless migration. Default is off.
17178c957053SYonit Halperin
1718474114b7SGerd Hoffmann@item gl=[on|off]
1719474114b7SGerd HoffmannEnable/disable OpenGL context. Default is off.
1720474114b7SGerd Hoffmann
17217b525508SMarc-André Lureau@item rendernode=<file>
17227b525508SMarc-André LureauDRM render node for OpenGL rendering. If not specified, it will pick
17237b525508SMarc-André Lureauthe first available. (Since 2.9)
17247b525508SMarc-André Lureau
172529b0040bSGerd Hoffmann@end table
172629b0040bSGerd HoffmannETEXI
172729b0040bSGerd Hoffmann
17285824d651Sblueswir1DEF("portrait", 0, QEMU_OPTION_portrait,
1729ad96090aSBlue Swirl    "-portrait       rotate graphical output 90 deg left (only PXA LCD)\n",
1730ad96090aSBlue Swirl    QEMU_ARCH_ALL)
17315824d651Sblueswir1STEXI
17325824d651Sblueswir1@item -portrait
17336616b2adSStefan Weil@findex -portrait
17345824d651Sblueswir1Rotate graphical output 90 deg left (only PXA LCD).
17355824d651Sblueswir1ETEXI
17365824d651Sblueswir1
17379312805dSVasily KhoruzhickDEF("rotate", HAS_ARG, QEMU_OPTION_rotate,
17389312805dSVasily Khoruzhick    "-rotate <deg>   rotate graphical output some deg left (only PXA LCD)\n",
17399312805dSVasily Khoruzhick    QEMU_ARCH_ALL)
17409312805dSVasily KhoruzhickSTEXI
17416265c43bSMarkus Armbruster@item -rotate @var{deg}
17429312805dSVasily Khoruzhick@findex -rotate
17439312805dSVasily KhoruzhickRotate graphical output some deg left (only PXA LCD).
17449312805dSVasily KhoruzhickETEXI
17459312805dSVasily Khoruzhick
17465824d651Sblueswir1DEF("vga", HAS_ARG, QEMU_OPTION_vga,
1747a94f0c5cSGerd Hoffmann    "-vga [std|cirrus|vmware|qxl|xenfb|tcx|cg3|virtio|none]\n"
1748ad96090aSBlue Swirl    "                select video card type\n", QEMU_ARCH_ALL)
17495824d651Sblueswir1STEXI
1750e4558dcaSmalc@item -vga @var{type}
17516616b2adSStefan Weil@findex -vga
17525824d651Sblueswir1Select type of VGA card to emulate. Valid values for @var{type} are
1753b3f046c2SKevin Wolf@table @option
17545824d651Sblueswir1@item cirrus
17555824d651Sblueswir1Cirrus Logic GD5446 Video card. All Windows versions starting from
17565824d651Sblueswir1Windows 95 should recognize and use this graphic card. For optimal
17575824d651Sblueswir1performances, use 16 bit color depth in the guest and the host OS.
175841eeb0e6SAlberto Garcia(This card was the default before QEMU 2.2)
17595824d651Sblueswir1@item std
17605824d651Sblueswir1Standard VGA card with Bochs VBE extensions.  If your guest OS
17615824d651Sblueswir1supports the VESA 2.0 VBE extensions (e.g. Windows XP) and if you want
17625824d651Sblueswir1to use high resolution modes (>= 1280x1024x16) then you should use
176341eeb0e6SAlberto Garciathis option. (This card is the default since QEMU 2.2)
17645824d651Sblueswir1@item vmware
17655824d651Sblueswir1VMWare SVGA-II compatible adapter. Use it if you have sufficiently
17665824d651Sblueswir1recent XFree86/XOrg server or Windows guest with a driver for this
17675824d651Sblueswir1card.
1768a19cbfb3SGerd Hoffmann@item qxl
1769a19cbfb3SGerd HoffmannQXL paravirtual graphic card.  It is VGA compatible (including VESA
1770a19cbfb3SGerd Hoffmann2.0 VBE support).  Works best with qxl guest drivers installed though.
1771a19cbfb3SGerd HoffmannRecommended choice when using the spice protocol.
177233632788SMark Cave-Ayland@item tcx
177333632788SMark Cave-Ayland(sun4m only) Sun TCX framebuffer. This is the default framebuffer for
177433632788SMark Cave-Aylandsun4m machines and offers both 8-bit and 24-bit colour depths at a
177533632788SMark Cave-Aylandfixed resolution of 1024x768.
177633632788SMark Cave-Ayland@item cg3
177733632788SMark Cave-Ayland(sun4m only) Sun cgthree framebuffer. This is a simple 8-bit framebuffer
177833632788SMark Cave-Aylandfor sun4m machines available in both 1024x768 (OpenBIOS) and 1152x900 (OBP)
177933632788SMark Cave-Aylandresolutions aimed at people wishing to run older Solaris versions.
1780a94f0c5cSGerd Hoffmann@item virtio
1781a94f0c5cSGerd HoffmannVirtio VGA card.
17825824d651Sblueswir1@item none
17835824d651Sblueswir1Disable VGA card.
17845824d651Sblueswir1@end table
17855824d651Sblueswir1ETEXI
17865824d651Sblueswir1
17875824d651Sblueswir1DEF("full-screen", 0, QEMU_OPTION_full_screen,
1788ad96090aSBlue Swirl    "-full-screen    start in full screen\n", QEMU_ARCH_ALL)
17895824d651Sblueswir1STEXI
17905824d651Sblueswir1@item -full-screen
17916616b2adSStefan Weil@findex -full-screen
17925824d651Sblueswir1Start in full screen.
17935824d651Sblueswir1ETEXI
17945824d651Sblueswir1
17955824d651Sblueswir1DEF("g", 1, QEMU_OPTION_g ,
1796ad96090aSBlue Swirl    "-g WxH[xDEPTH]  Set the initial graphical resolution and depth\n",
1797ad96090aSBlue Swirl    QEMU_ARCH_PPC | QEMU_ARCH_SPARC)
17985824d651Sblueswir1STEXI
179995d5f08bSStefan Weil@item -g @var{width}x@var{height}[x@var{depth}]
18006616b2adSStefan Weil@findex -g
180195d5f08bSStefan WeilSet the initial graphical resolution and depth (PPC, SPARC only).
18025824d651Sblueswir1ETEXI
18035824d651Sblueswir1
18045824d651Sblueswir1DEF("vnc", HAS_ARG, QEMU_OPTION_vnc ,
1805f04ec5afSRobert Ho    "-vnc <display>  shorthand for -display vnc=<display>\n", QEMU_ARCH_ALL)
18065824d651Sblueswir1STEXI
18075824d651Sblueswir1@item -vnc @var{display}[,@var{option}[,@var{option}[,...]]]
18086616b2adSStefan Weil@findex -vnc
1809dc0a3e44SColin LordNormally, if QEMU is compiled with graphical window support, it displays
1810dc0a3e44SColin Lordoutput such as guest graphics, guest console, and the QEMU monitor in a
1811dc0a3e44SColin Lordwindow. With this option, you can have QEMU listen on VNC display
1812dc0a3e44SColin Lord@var{display} and redirect the VGA display over the VNC session. It is
1813dc0a3e44SColin Lordvery useful to enable the usb tablet device when using this option
1814a358a3afSThomas Huth(option @option{-device usb-tablet}). When using the VNC display, you
1815dc0a3e44SColin Lordmust use the @option{-k} parameter to set the keyboard layout if you are
1816dc0a3e44SColin Lordnot using en-us. Valid syntax for the @var{display} is
18175824d651Sblueswir1
1818b3f046c2SKevin Wolf@table @option
18195824d651Sblueswir1
182099a9a52aSRobert Ho@item to=@var{L}
182199a9a52aSRobert Ho
182299a9a52aSRobert HoWith this option, QEMU will try next available VNC @var{display}s, until the
182399a9a52aSRobert Honumber @var{L}, if the origianlly defined "-vnc @var{display}" is not
182499a9a52aSRobert Hoavailable, e.g. port 5900+@var{display} is already used by another
182599a9a52aSRobert Hoapplication. By default, to=0.
182699a9a52aSRobert Ho
18275824d651Sblueswir1@item @var{host}:@var{d}
18285824d651Sblueswir1
18295824d651Sblueswir1TCP connections will only be allowed from @var{host} on display @var{d}.
18305824d651Sblueswir1By convention the TCP port is 5900+@var{d}. Optionally, @var{host} can
18315824d651Sblueswir1be omitted in which case the server will accept connections from any host.
18325824d651Sblueswir1
18334e257e5eSKevin Wolf@item unix:@var{path}
18345824d651Sblueswir1
18355824d651Sblueswir1Connections will be allowed over UNIX domain sockets where @var{path} is the
18365824d651Sblueswir1location of a unix socket to listen for connections on.
18375824d651Sblueswir1
18385824d651Sblueswir1@item none
18395824d651Sblueswir1
18405824d651Sblueswir1VNC is initialized but not started. The monitor @code{change} command
18415824d651Sblueswir1can be used to later start the VNC server.
18425824d651Sblueswir1
18435824d651Sblueswir1@end table
18445824d651Sblueswir1
18455824d651Sblueswir1Following the @var{display} value there may be one or more @var{option} flags
18465824d651Sblueswir1separated by commas. Valid options are
18475824d651Sblueswir1
1848b3f046c2SKevin Wolf@table @option
18495824d651Sblueswir1
18505824d651Sblueswir1@item reverse
18515824d651Sblueswir1
18525824d651Sblueswir1Connect to a listening VNC client via a ``reverse'' connection. The
18535824d651Sblueswir1client is specified by the @var{display}. For reverse network
18545824d651Sblueswir1connections (@var{host}:@var{d},@code{reverse}), the @var{d} argument
18555824d651Sblueswir1is a TCP port number, not a display number.
18565824d651Sblueswir1
18577536ee4bSTim Hardeck@item websocket
18587536ee4bSTim Hardeck
18597536ee4bSTim HardeckOpens an additional TCP listening port dedicated to VNC Websocket connections.
1860275e0d61SDaniel P. BerrangeIf a bare @var{websocket} option is given, the Websocket port is
1861275e0d61SDaniel P. Berrange5700+@var{display}. An alternative port can be specified with the
1862275e0d61SDaniel P. Berrangesyntax @code{websocket}=@var{port}.
1863275e0d61SDaniel P. Berrange
1864275e0d61SDaniel P. BerrangeIf @var{host} is specified connections will only be allowed from this host.
1865275e0d61SDaniel P. BerrangeIt is possible to control the websocket listen address independently, using
1866275e0d61SDaniel P. Berrangethe syntax @code{websocket}=@var{host}:@var{port}.
1867275e0d61SDaniel P. Berrange
18683e305e4aSDaniel P. BerrangeIf no TLS credentials are provided, the websocket connection runs in
18693e305e4aSDaniel P. Berrangeunencrypted mode. If TLS credentials are provided, the websocket connection
18703e305e4aSDaniel P. Berrangerequires encrypted client connections.
18717536ee4bSTim Hardeck
18725824d651Sblueswir1@item password
18735824d651Sblueswir1
18745824d651Sblueswir1Require that password based authentication is used for client connections.
187586ee5bc3SMichal Novotny
187686ee5bc3SMichal NovotnyThe password must be set separately using the @code{set_password} command in
187786ee5bc3SMichal Novotnythe @ref{pcsys_monitor}. The syntax to change your password is:
187886ee5bc3SMichal Novotny@code{set_password <protocol> <password>} where <protocol> could be either
187986ee5bc3SMichal Novotny"vnc" or "spice".
188086ee5bc3SMichal Novotny
188186ee5bc3SMichal NovotnyIf you would like to change <protocol> password expiration, you should use
188286ee5bc3SMichal Novotny@code{expire_password <protocol> <expiration-time>} where expiration time could
188386ee5bc3SMichal Novotnybe one of the following options: now, never, +seconds or UNIX time of
188486ee5bc3SMichal Novotnyexpiration, e.g. +60 to make password expire in 60 seconds, or 1335196800
188586ee5bc3SMichal Novotnyto make password expire on "Mon Apr 23 12:00:00 EDT 2012" (UNIX time for this
188686ee5bc3SMichal Novotnydate and time).
188786ee5bc3SMichal Novotny
188886ee5bc3SMichal NovotnyYou can also use keywords "now" or "never" for the expiration time to
188986ee5bc3SMichal Novotnyallow <protocol> password to expire immediately or never expire.
18905824d651Sblueswir1
18913e305e4aSDaniel P. Berrange@item tls-creds=@var{ID}
18923e305e4aSDaniel P. Berrange
18933e305e4aSDaniel P. BerrangeProvides the ID of a set of TLS credentials to use to secure the
18943e305e4aSDaniel P. BerrangeVNC server. They will apply to both the normal VNC server socket
18953e305e4aSDaniel P. Berrangeand the websocket socket (if enabled). Setting TLS credentials
18963e305e4aSDaniel P. Berrangewill cause the VNC server socket to enable the VeNCrypt auth
18973e305e4aSDaniel P. Berrangemechanism.  The credentials should have been previously created
18983e305e4aSDaniel P. Berrangeusing the @option{-object tls-creds} argument.
18993e305e4aSDaniel P. Berrange
190055cf09a0SDaniel P. Berrange@item tls-authz=@var{ID}
190155cf09a0SDaniel P. Berrange
190255cf09a0SDaniel P. BerrangeProvides the ID of the QAuthZ authorization object against which
190355cf09a0SDaniel P. Berrangethe client's x509 distinguished name will validated. This object is
190455cf09a0SDaniel P. Berrangeonly resolved at time of use, so can be deleted and recreated on the
190555cf09a0SDaniel P. Berrangefly while the VNC server is active. If missing, it will default
190655cf09a0SDaniel P. Berrangeto denying access.
190755cf09a0SDaniel P. Berrange
19085824d651Sblueswir1@item sasl
19095824d651Sblueswir1
19105824d651Sblueswir1Require that the client use SASL to authenticate with the VNC server.
19115824d651Sblueswir1The exact choice of authentication method used is controlled from the
19125824d651Sblueswir1system / user's SASL configuration file for the 'qemu' service. This
19135824d651Sblueswir1is typically found in /etc/sasl2/qemu.conf. If running QEMU as an
19145824d651Sblueswir1unprivileged user, an environment variable SASL_CONF_PATH can be used
19155824d651Sblueswir1to make it search alternate locations for the service config.
19165824d651Sblueswir1While some SASL auth methods can also provide data encryption (eg GSSAPI),
19175824d651Sblueswir1it is recommended that SASL always be combined with the 'tls' and
19185824d651Sblueswir1'x509' settings to enable use of SSL and server certificates. This
19195824d651Sblueswir1ensures a data encryption preventing compromise of authentication
19205824d651Sblueswir1credentials. See the @ref{vnc_security} section for details on using
19215824d651Sblueswir1SASL authentication.
19225824d651Sblueswir1
192355cf09a0SDaniel P. Berrange@item sasl-authz=@var{ID}
192455cf09a0SDaniel P. Berrange
192555cf09a0SDaniel P. BerrangeProvides the ID of the QAuthZ authorization object against which
192655cf09a0SDaniel P. Berrangethe client's SASL username will validated. This object is
192755cf09a0SDaniel P. Berrangeonly resolved at time of use, so can be deleted and recreated on the
192855cf09a0SDaniel P. Berrangefly while the VNC server is active. If missing, it will default
192955cf09a0SDaniel P. Berrangeto denying access.
193055cf09a0SDaniel P. Berrange
19315824d651Sblueswir1@item acl
19325824d651Sblueswir1
193355cf09a0SDaniel P. BerrangeLegacy method for enabling authorization of clients against the
193455cf09a0SDaniel P. Berrangex509 distinguished name and SASL username. It results in the creation
193555cf09a0SDaniel P. Berrangeof two @code{authz-list} objects with IDs of @code{vnc.username} and
193655cf09a0SDaniel P. Berrange@code{vnc.x509dname}. The rules for these objects must be configured
193755cf09a0SDaniel P. Berrangewith the HMP ACL commands.
193855cf09a0SDaniel P. Berrange
193955cf09a0SDaniel P. BerrangeThis option is deprecated and should no longer be used. The new
194055cf09a0SDaniel P. Berrange@option{sasl-authz} and @option{tls-authz} options are a
194155cf09a0SDaniel P. Berrangereplacement.
19425824d651Sblueswir1
19436f9c78c1SCorentin Chary@item lossy
19446f9c78c1SCorentin Chary
19456f9c78c1SCorentin CharyEnable lossy compression methods (gradient, JPEG, ...). If this
19466f9c78c1SCorentin Charyoption is set, VNC client may receive lossy framebuffer updates
19476f9c78c1SCorentin Charydepending on its encoding settings. Enabling this option can save
19486f9c78c1SCorentin Charya lot of bandwidth at the expense of quality.
19496f9c78c1SCorentin Chary
195080e0c8c3SCorentin Chary@item non-adaptive
195180e0c8c3SCorentin Chary
195280e0c8c3SCorentin CharyDisable adaptive encodings. Adaptive encodings are enabled by default.
195380e0c8c3SCorentin CharyAn adaptive encoding will try to detect frequently updated screen regions,
195480e0c8c3SCorentin Charyand send updates in these regions using a lossy encoding (like JPEG).
195561cc8701SStefan WeilThis can be really helpful to save bandwidth when playing videos. Disabling
19569d85d557SMichael Tokarevadaptive encodings restores the original static behavior of encodings
195780e0c8c3SCorentin Charylike Tight.
195880e0c8c3SCorentin Chary
19598cf36489SGerd Hoffmann@item share=[allow-exclusive|force-shared|ignore]
19608cf36489SGerd Hoffmann
19618cf36489SGerd HoffmannSet display sharing policy.  'allow-exclusive' allows clients to ask
19628cf36489SGerd Hoffmannfor exclusive access.  As suggested by the rfb spec this is
19638cf36489SGerd Hoffmannimplemented by dropping other connections.  Connecting multiple
19648cf36489SGerd Hoffmannclients in parallel requires all clients asking for a shared session
19658cf36489SGerd Hoffmann(vncviewer: -shared switch).  This is the default.  'force-shared'
19668cf36489SGerd Hoffmanndisables exclusive client access.  Useful for shared desktop sessions,
19678cf36489SGerd Hoffmannwhere you don't want someone forgetting specify -shared disconnect
19688cf36489SGerd Hoffmanneverybody else.  'ignore' completely ignores the shared flag and
19698cf36489SGerd Hoffmannallows everybody connect unconditionally.  Doesn't conform to the rfb
1970b65ee4faSStefan Weilspec but is traditional QEMU behavior.
19718cf36489SGerd Hoffmann
1972c5ce8333SGerd Hoffmann@item key-delay-ms
1973c5ce8333SGerd Hoffmann
1974c5ce8333SGerd HoffmannSet keyboard delay, for key down and key up events, in milliseconds.
1975d3b0db6dSAlexander GrafDefault is 10.  Keyboards are low-bandwidth devices, so this slowdown
1976c5ce8333SGerd Hoffmanncan help the device and guest to keep up and not lose events in case
1977c5ce8333SGerd Hoffmannevents are arriving in bulk.  Possible causes for the latter are flaky
1978c5ce8333SGerd Hoffmannnetwork connections, or scripts for automated testing.
1979c5ce8333SGerd Hoffmann
19805824d651Sblueswir1@end table
19815824d651Sblueswir1ETEXI
19825824d651Sblueswir1
19835824d651Sblueswir1STEXI
19845824d651Sblueswir1@end table
19855824d651Sblueswir1ETEXI
1986a3adb7adSMichael EllermanARCHHEADING(, QEMU_ARCH_I386)
19875824d651Sblueswir1
1988de6b4f90SMarkus ArmbrusterARCHHEADING(i386 target only:, QEMU_ARCH_I386)
19895824d651Sblueswir1STEXI
19905824d651Sblueswir1@table @option
19915824d651Sblueswir1ETEXI
19925824d651Sblueswir1
19935824d651Sblueswir1DEF("win2k-hack", 0, QEMU_OPTION_win2k_hack,
1994ad96090aSBlue Swirl    "-win2k-hack     use it when installing Windows 2000 to avoid a disk full bug\n",
1995ad96090aSBlue Swirl    QEMU_ARCH_I386)
19965824d651Sblueswir1STEXI
19975824d651Sblueswir1@item -win2k-hack
19986616b2adSStefan Weil@findex -win2k-hack
19995824d651Sblueswir1Use it when installing Windows 2000 to avoid a disk full bug. After
20005824d651Sblueswir1Windows 2000 is installed, you no longer need this option (this option
20015824d651Sblueswir1slows down the IDE transfers).
20025824d651Sblueswir1ETEXI
20035824d651Sblueswir1
20045824d651Sblueswir1DEF("no-fd-bootchk", 0, QEMU_OPTION_no_fd_bootchk,
2005ad96090aSBlue Swirl    "-no-fd-bootchk  disable boot signature checking for floppy disks\n",
2006ad96090aSBlue Swirl    QEMU_ARCH_I386)
20075824d651Sblueswir1STEXI
20085824d651Sblueswir1@item -no-fd-bootchk
20096616b2adSStefan Weil@findex -no-fd-bootchk
20104eda32f5SMarkus ArmbrusterDisable boot signature checking for floppy disks in BIOS. May
20115824d651Sblueswir1be needed to boot from old floppy disks.
20125824d651Sblueswir1ETEXI
20135824d651Sblueswir1
20145824d651Sblueswir1DEF("no-acpi", 0, QEMU_OPTION_no_acpi,
2015f5d8c8cdSShannon Zhao           "-no-acpi        disable ACPI\n", QEMU_ARCH_I386 | QEMU_ARCH_ARM)
20165824d651Sblueswir1STEXI
20175824d651Sblueswir1@item -no-acpi
20186616b2adSStefan Weil@findex -no-acpi
20195824d651Sblueswir1Disable ACPI (Advanced Configuration and Power Interface) support. Use
20205824d651Sblueswir1it if your guest OS complains about ACPI problems (PC target machine
20215824d651Sblueswir1only).
20225824d651Sblueswir1ETEXI
20235824d651Sblueswir1
20245824d651Sblueswir1DEF("no-hpet", 0, QEMU_OPTION_no_hpet,
2025ad96090aSBlue Swirl    "-no-hpet        disable HPET\n", QEMU_ARCH_I386)
20265824d651Sblueswir1STEXI
20275824d651Sblueswir1@item -no-hpet
20286616b2adSStefan Weil@findex -no-hpet
20295824d651Sblueswir1Disable HPET support.
20305824d651Sblueswir1ETEXI
20315824d651Sblueswir1
20325824d651Sblueswir1DEF("acpitable", HAS_ARG, QEMU_OPTION_acpitable,
2033104bf02eSMichael Tokarev    "-acpitable [sig=str][,rev=n][,oem_id=str][,oem_table_id=str][,oem_rev=n][,asl_compiler_id=str][,asl_compiler_rev=n][,{data|file}=file1[:file2]...]\n"
2034ad96090aSBlue Swirl    "                ACPI table description\n", QEMU_ARCH_I386)
20355824d651Sblueswir1STEXI
20365824d651Sblueswir1@item -acpitable [sig=@var{str}][,rev=@var{n}][,oem_id=@var{str}][,oem_table_id=@var{str}][,oem_rev=@var{n}] [,asl_compiler_id=@var{str}][,asl_compiler_rev=@var{n}][,data=@var{file1}[:@var{file2}]...]
20376616b2adSStefan Weil@findex -acpitable
20385824d651Sblueswir1Add ACPI table with specified header fields and context from specified files.
2039104bf02eSMichael TokarevFor file=, take whole ACPI table from the specified files, including all
2040104bf02eSMichael TokarevACPI headers (possible overridden by other options).
2041104bf02eSMichael TokarevFor data=, only data
2042104bf02eSMichael Tokarevportion of the table is used, all header information is specified in the
2043104bf02eSMichael Tokarevcommand line.
2044ae123749SLaszlo ErsekIf a SLIC table is supplied to QEMU, then the SLIC's oem_id and oem_table_id
2045ae123749SLaszlo Ersekfields will override the same in the RSDT and the FADT (a.k.a. FACP), in order
2046ae123749SLaszlo Ersekto ensure the field matches required by the Microsoft SLIC spec and the ACPI
2047ae123749SLaszlo Ersekspec.
20485824d651Sblueswir1ETEXI
20495824d651Sblueswir1
2050b6f6e3d3SaliguoriDEF("smbios", HAS_ARG, QEMU_OPTION_smbios,
2051b6f6e3d3Saliguori    "-smbios file=binary\n"
2052ca1a8a06SBruce Rogers    "                load SMBIOS entry from binary file\n"
2053b155eb1dSGabriel L. Somlo    "-smbios type=0[,vendor=str][,version=str][,date=str][,release=%d.%d]\n"
2054b155eb1dSGabriel L. Somlo    "              [,uefi=on|off]\n"
2055ca1a8a06SBruce Rogers    "                specify SMBIOS type 0 fields\n"
2056b6f6e3d3Saliguori    "-smbios type=1[,manufacturer=str][,product=str][,version=str][,serial=str]\n"
2057b6f6e3d3Saliguori    "              [,uuid=uuid][,sku=str][,family=str]\n"
2058b155eb1dSGabriel L. Somlo    "                specify SMBIOS type 1 fields\n"
2059b155eb1dSGabriel L. Somlo    "-smbios type=2[,manufacturer=str][,product=str][,version=str][,serial=str]\n"
2060b155eb1dSGabriel L. Somlo    "              [,asset=str][,location=str]\n"
2061b155eb1dSGabriel L. Somlo    "                specify SMBIOS type 2 fields\n"
2062b155eb1dSGabriel L. Somlo    "-smbios type=3[,manufacturer=str][,version=str][,serial=str][,asset=str]\n"
2063b155eb1dSGabriel L. Somlo    "              [,sku=str]\n"
2064b155eb1dSGabriel L. Somlo    "                specify SMBIOS type 3 fields\n"
2065b155eb1dSGabriel L. Somlo    "-smbios type=4[,sock_pfx=str][,manufacturer=str][,version=str][,serial=str]\n"
2066b155eb1dSGabriel L. Somlo    "              [,asset=str][,part=str]\n"
2067b155eb1dSGabriel L. Somlo    "                specify SMBIOS type 4 fields\n"
2068b155eb1dSGabriel L. Somlo    "-smbios type=17[,loc_pfx=str][,bank=str][,manufacturer=str][,serial=str]\n"
20693ebd6cc8SGabriel L. Somlo    "               [,asset=str][,part=str][,speed=%d]\n"
2070b155eb1dSGabriel L. Somlo    "                specify SMBIOS type 17 fields\n",
2071c30e1565SWei Huang    QEMU_ARCH_I386 | QEMU_ARCH_ARM)
2072b6f6e3d3SaliguoriSTEXI
2073b6f6e3d3Saliguori@item -smbios file=@var{binary}
20746616b2adSStefan Weil@findex -smbios
2075b6f6e3d3SaliguoriLoad SMBIOS entry from binary file.
2076b6f6e3d3Saliguori
207784351843SGabriel L. Somlo@item -smbios type=0[,vendor=@var{str}][,version=@var{str}][,date=@var{str}][,release=@var{%d.%d}][,uefi=on|off]
2078b6f6e3d3SaliguoriSpecify SMBIOS type 0 fields
2079b6f6e3d3Saliguori
2080b6f6e3d3Saliguori@item -smbios type=1[,manufacturer=@var{str}][,product=@var{str}][,version=@var{str}][,serial=@var{str}][,uuid=@var{uuid}][,sku=@var{str}][,family=@var{str}]
2081b6f6e3d3SaliguoriSpecify SMBIOS type 1 fields
2082b155eb1dSGabriel L. Somlo
20833fdbd1d7SIgor Mammedov@item -smbios type=2[,manufacturer=@var{str}][,product=@var{str}][,version=@var{str}][,serial=@var{str}][,asset=@var{str}][,location=@var{str}]
2084b155eb1dSGabriel L. SomloSpecify SMBIOS type 2 fields
2085b155eb1dSGabriel L. Somlo
2086b155eb1dSGabriel L. Somlo@item -smbios type=3[,manufacturer=@var{str}][,version=@var{str}][,serial=@var{str}][,asset=@var{str}][,sku=@var{str}]
2087b155eb1dSGabriel L. SomloSpecify SMBIOS type 3 fields
2088b155eb1dSGabriel L. Somlo
2089b155eb1dSGabriel L. Somlo@item -smbios type=4[,sock_pfx=@var{str}][,manufacturer=@var{str}][,version=@var{str}][,serial=@var{str}][,asset=@var{str}][,part=@var{str}]
2090b155eb1dSGabriel L. SomloSpecify SMBIOS type 4 fields
2091b155eb1dSGabriel L. Somlo
20923ebd6cc8SGabriel L. Somlo@item -smbios type=17[,loc_pfx=@var{str}][,bank=@var{str}][,manufacturer=@var{str}][,serial=@var{str}][,asset=@var{str}][,part=@var{str}][,speed=@var{%d}]
2093b155eb1dSGabriel L. SomloSpecify SMBIOS type 17 fields
2094b6f6e3d3SaliguoriETEXI
2095b6f6e3d3Saliguori
20965824d651Sblueswir1STEXI
20975824d651Sblueswir1@end table
20985824d651Sblueswir1ETEXI
2099c70a01e4SMarkus ArmbrusterDEFHEADING()
21005824d651Sblueswir1
2101de6b4f90SMarkus ArmbrusterDEFHEADING(Network options:)
21025824d651Sblueswir1STEXI
21035824d651Sblueswir1@table @option
21045824d651Sblueswir1ETEXI
21055824d651Sblueswir1
21066a8b4a5bSThomas HuthDEF("netdev", HAS_ARG, QEMU_OPTION_netdev,
21075824d651Sblueswir1#ifdef CONFIG_SLIRP
21080b11c036SSamuel Thibault    "-netdev user,id=str[,ipv4[=on|off]][,net=addr[/mask]][,host=addr]\n"
21090b11c036SSamuel Thibault    "         [,ipv6[=on|off]][,ipv6-net=addr[/int]][,ipv6-host=addr]\n"
21100b11c036SSamuel Thibault    "         [,restrict=on|off][,hostname=host][,dhcpstart=addr]\n"
2111f18d1375SBenjamin Drung    "         [,dns=addr][,ipv6-dns=addr][,dnssearch=domain][,domainname=domain]\n"
21120fca92b9SFam Zheng    "         [,tftp=dir][,tftp-server-name=name][,bootfile=f][,hostfwd=rule][,guestfwd=rule]"
2113ad196a9dSJan Kiszka#ifndef _WIN32
2114c92ef6a2SJan Kiszka                                             "[,smb=dir[,smbserver=addr]]\n"
2115ad196a9dSJan Kiszka#endif
21166a8b4a5bSThomas Huth    "                configure a user mode network backend with ID 'str',\n"
21176a8b4a5bSThomas Huth    "                its DHCP server and optional services\n"
21185824d651Sblueswir1#endif
21195824d651Sblueswir1#ifdef _WIN32
21206a8b4a5bSThomas Huth    "-netdev tap,id=str,ifname=name\n"
21216a8b4a5bSThomas Huth    "                configure a host TAP network backend with ID 'str'\n"
21225824d651Sblueswir1#else
21236a8b4a5bSThomas Huth    "-netdev tap,id=str[,fd=h][,fds=x:y:...:z][,ifname=name][,script=file][,downscript=dfile]\n"
2124584613eaSAlexey Kardashevskiy    "         [,br=bridge][,helper=helper][,sndbuf=nbytes][,vnet_hdr=on|off][,vhost=on|off]\n"
21256a8b4a5bSThomas Huth    "         [,vhostfd=h][,vhostfds=x:y:...:z][,vhostforce=on|off][,queues=n]\n"
212669e87b32SJason Wang    "         [,poll-us=n]\n"
21276a8b4a5bSThomas Huth    "                configure a host TAP network backend with ID 'str'\n"
2128584613eaSAlexey Kardashevskiy    "                connected to a bridge (default=" DEFAULT_BRIDGE_INTERFACE ")\n"
2129a7c36ee4SCorey Bryant    "                use network scripts 'file' (default=" DEFAULT_NETWORK_SCRIPT ")\n"
2130a7c36ee4SCorey Bryant    "                to configure it and 'dfile' (default=" DEFAULT_NETWORK_DOWN_SCRIPT ")\n"
2131a7c36ee4SCorey Bryant    "                to deconfigure it\n"
2132ca1a8a06SBruce Rogers    "                use '[down]script=no' to disable script execution\n"
2133a7c36ee4SCorey Bryant    "                use network helper 'helper' (default=" DEFAULT_BRIDGE_HELPER ") to\n"
2134a7c36ee4SCorey Bryant    "                configure it\n"
21355824d651Sblueswir1    "                use 'fd=h' to connect to an already opened TAP interface\n"
21362ca81baaSJason Wang    "                use 'fds=x:y:...:z' to connect to already opened multiqueue capable TAP interfaces\n"
2137ca1a8a06SBruce Rogers    "                use 'sndbuf=nbytes' to limit the size of the send buffer (the\n"
2138f157ed20SMichael S. Tsirkin    "                default is disabled 'sndbuf=0' to enable flow control set 'sndbuf=1048576')\n"
2139ca1a8a06SBruce Rogers    "                use vnet_hdr=off to avoid enabling the IFF_VNET_HDR tap flag\n"
2140ca1a8a06SBruce Rogers    "                use vnet_hdr=on to make the lack of IFF_VNET_HDR support an error condition\n"
214182b0d80eSMichael S. Tsirkin    "                use vhost=on to enable experimental in kernel accelerator\n"
21425430a28fSmst@redhat.com    "                    (only has effect for virtio guests which use MSIX)\n"
21435430a28fSmst@redhat.com    "                use vhostforce=on to force vhost on for non-MSIX virtio guests\n"
214482b0d80eSMichael S. Tsirkin    "                use 'vhostfd=h' to connect to an already opened vhost net device\n"
21452ca81baaSJason Wang    "                use 'vhostfds=x:y:...:z to connect to multiple already opened vhost net devices\n"
2146ec396014SJason Wang    "                use 'queues=n' to specify the number of queues to be created for multiqueue TAP\n"
214769e87b32SJason Wang    "                use 'poll-us=n' to speciy the maximum number of microseconds that could be\n"
214869e87b32SJason Wang    "                spent on busy polling for vhost net\n"
21496a8b4a5bSThomas Huth    "-netdev bridge,id=str[,br=bridge][,helper=helper]\n"
21506a8b4a5bSThomas Huth    "                configure a host TAP network backend with ID 'str' that is\n"
21516a8b4a5bSThomas Huth    "                connected to a bridge (default=" DEFAULT_BRIDGE_INTERFACE ")\n"
21526a8b4a5bSThomas Huth    "                using the program 'helper (default=" DEFAULT_BRIDGE_HELPER ")\n"
21530df0ff6dSMark McLoughlin#endif
21543fb69aa1SAnton Ivanov#ifdef __linux__
21556a8b4a5bSThomas Huth    "-netdev l2tpv3,id=str,src=srcaddr,dst=dstaddr[,srcport=srcport][,dstport=dstport]\n"
21566a8b4a5bSThomas Huth    "         [,rxsession=rxsession],txsession=txsession[,ipv6=on/off][,udp=on/off]\n"
21576a8b4a5bSThomas Huth    "         [,cookie64=on/off][,counter][,pincounter][,txcookie=txcookie]\n"
21586a8b4a5bSThomas Huth    "         [,rxcookie=rxcookie][,offset=offset]\n"
21596a8b4a5bSThomas Huth    "                configure a network backend with ID 'str' connected to\n"
21606a8b4a5bSThomas Huth    "                an Ethernet over L2TPv3 pseudowire.\n"
21613fb69aa1SAnton Ivanov    "                Linux kernel 3.3+ as well as most routers can talk\n"
21622f47b403SMichael Tokarev    "                L2TPv3. This transport allows connecting a VM to a VM,\n"
21633fb69aa1SAnton Ivanov    "                VM to a router and even VM to Host. It is a nearly-universal\n"
21643fb69aa1SAnton Ivanov    "                standard (RFC3391). Note - this implementation uses static\n"
21653fb69aa1SAnton Ivanov    "                pre-configured tunnels (same as the Linux kernel).\n"
21663fb69aa1SAnton Ivanov    "                use 'src=' to specify source address\n"
21673fb69aa1SAnton Ivanov    "                use 'dst=' to specify destination address\n"
21683fb69aa1SAnton Ivanov    "                use 'udp=on' to specify udp encapsulation\n"
21693952651aSGonglei    "                use 'srcport=' to specify source udp port\n"
21703fb69aa1SAnton Ivanov    "                use 'dstport=' to specify destination udp port\n"
21713fb69aa1SAnton Ivanov    "                use 'ipv6=on' to force v6\n"
21723fb69aa1SAnton Ivanov    "                L2TPv3 uses cookies to prevent misconfiguration as\n"
21733fb69aa1SAnton Ivanov    "                well as a weak security measure\n"
21743fb69aa1SAnton Ivanov    "                use 'rxcookie=0x012345678' to specify a rxcookie\n"
21753fb69aa1SAnton Ivanov    "                use 'txcookie=0x012345678' to specify a txcookie\n"
21763fb69aa1SAnton Ivanov    "                use 'cookie64=on' to set cookie size to 64 bit, otherwise 32\n"
21773fb69aa1SAnton Ivanov    "                use 'counter=off' to force a 'cut-down' L2TPv3 with no counter\n"
21783fb69aa1SAnton Ivanov    "                use 'pincounter=on' to work around broken counter handling in peer\n"
21793fb69aa1SAnton Ivanov    "                use 'offset=X' to add an extra offset between header and data\n"
21803fb69aa1SAnton Ivanov#endif
21816a8b4a5bSThomas Huth    "-netdev socket,id=str[,fd=h][,listen=[host]:port][,connect=host:port]\n"
21826a8b4a5bSThomas Huth    "                configure a network backend to connect to another network\n"
21836a8b4a5bSThomas Huth    "                using a socket connection\n"
21846a8b4a5bSThomas Huth    "-netdev socket,id=str[,fd=h][,mcast=maddr:port[,localaddr=addr]]\n"
21856a8b4a5bSThomas Huth    "                configure a network backend to connect to a multicast maddr and port\n"
21863a75e74cSMike Ryan    "                use 'localaddr=addr' to specify the host address to send packets from\n"
21876a8b4a5bSThomas Huth    "-netdev socket,id=str[,fd=h][,udp=host:port][,localaddr=host:port]\n"
21886a8b4a5bSThomas Huth    "                configure a network backend to connect to another network\n"
21896a8b4a5bSThomas Huth    "                using an UDP tunnel\n"
21905824d651Sblueswir1#ifdef CONFIG_VDE
21916a8b4a5bSThomas Huth    "-netdev vde,id=str[,sock=socketpath][,port=n][,group=groupname][,mode=octalmode]\n"
21926a8b4a5bSThomas Huth    "                configure a network backend to connect to port 'n' of a vde switch\n"
21936a8b4a5bSThomas Huth    "                running on host and listening for incoming connections on 'socketpath'.\n"
21945824d651Sblueswir1    "                Use group 'groupname' and mode 'octalmode' to change default\n"
21955824d651Sblueswir1    "                ownership and permissions for communication port.\n"
21965824d651Sblueswir1#endif
219758952137SVincenzo Maffione#ifdef CONFIG_NETMAP
21986a8b4a5bSThomas Huth    "-netdev netmap,id=str,ifname=name[,devname=nmname]\n"
219958952137SVincenzo Maffione    "                attach to the existing netmap-enabled network interface 'name', or to a\n"
220058952137SVincenzo Maffione    "                VALE port (created on the fly) called 'name' ('nmname' is name of the \n"
220158952137SVincenzo Maffione    "                netmap device, defaults to '/dev/netmap')\n"
220258952137SVincenzo Maffione#endif
2203253dc14cSThomas Huth#ifdef CONFIG_POSIX
22046a8b4a5bSThomas Huth    "-netdev vhost-user,id=str,chardev=dev[,vhostforce=on|off]\n"
22056a8b4a5bSThomas Huth    "                configure a vhost-user network, backed by a chardev 'dev'\n"
2206253dc14cSThomas Huth#endif
220718d65d22SThomas Huth    "-netdev hubport,id=str,hubid=n[,netdev=nd]\n"
2208af1a5c3eSThomas Huth    "                configure a hub port on the hub with ID 'n'\n", QEMU_ARCH_ALL)
220978cd6f7bSThomas HuthDEF("nic", HAS_ARG, QEMU_OPTION_nic,
2210dfaa7d50SBALATON Zoltan    "-nic [tap|bridge|"
221178cd6f7bSThomas Huth#ifdef CONFIG_SLIRP
221278cd6f7bSThomas Huth    "user|"
221378cd6f7bSThomas Huth#endif
221478cd6f7bSThomas Huth#ifdef __linux__
221578cd6f7bSThomas Huth    "l2tpv3|"
221678cd6f7bSThomas Huth#endif
221778cd6f7bSThomas Huth#ifdef CONFIG_VDE
221878cd6f7bSThomas Huth    "vde|"
221978cd6f7bSThomas Huth#endif
222078cd6f7bSThomas Huth#ifdef CONFIG_NETMAP
222178cd6f7bSThomas Huth    "netmap|"
222278cd6f7bSThomas Huth#endif
222378cd6f7bSThomas Huth#ifdef CONFIG_POSIX
222478cd6f7bSThomas Huth    "vhost-user|"
222578cd6f7bSThomas Huth#endif
222678cd6f7bSThomas Huth    "socket][,option][,...][mac=macaddr]\n"
222778cd6f7bSThomas Huth    "                initialize an on-board / default host NIC (using MAC address\n"
222878cd6f7bSThomas Huth    "                macaddr) and connect it to the given host network backend\n"
2229dfaa7d50SBALATON Zoltan    "-nic none       use it alone to have zero network devices (the default is to\n"
223078cd6f7bSThomas Huth    "                provided a 'user' network connection)\n",
223178cd6f7bSThomas Huth    QEMU_ARCH_ALL)
22326a8b4a5bSThomas HuthDEF("net", HAS_ARG, QEMU_OPTION_net,
2233af1a5c3eSThomas Huth    "-net nic[,macaddr=mac][,model=type][,name=str][,addr=str][,vectors=v]\n"
22340e60a82dSThomas Huth    "                configure or create an on-board (or machine default) NIC and\n"
2235af1a5c3eSThomas Huth    "                connect it to hub 0 (please use -nic unless you need a hub)\n"
22366a8b4a5bSThomas Huth    "-net ["
2237a1ea458fSMark McLoughlin#ifdef CONFIG_SLIRP
2238a1ea458fSMark McLoughlin    "user|"
2239a1ea458fSMark McLoughlin#endif
2240a1ea458fSMark McLoughlin    "tap|"
2241a7c36ee4SCorey Bryant    "bridge|"
2242a1ea458fSMark McLoughlin#ifdef CONFIG_VDE
2243a1ea458fSMark McLoughlin    "vde|"
2244a1ea458fSMark McLoughlin#endif
224558952137SVincenzo Maffione#ifdef CONFIG_NETMAP
224658952137SVincenzo Maffione    "netmap|"
224758952137SVincenzo Maffione#endif
2248af1a5c3eSThomas Huth    "socket][,option][,option][,...]\n"
22496a8b4a5bSThomas Huth    "                old way to initialize a host network interface\n"
22506a8b4a5bSThomas Huth    "                (use the -netdev option if possible instead)\n", QEMU_ARCH_ALL)
22515824d651Sblueswir1STEXI
2252abbbb035SThomas Huth@item -nic [tap|bridge|user|l2tpv3|vde|netmap|vhost-user|socket][,...][,mac=macaddr][,model=mn]
2253abbbb035SThomas Huth@findex -nic
2254abbbb035SThomas HuthThis option is a shortcut for configuring both the on-board (default) guest
2255abbbb035SThomas HuthNIC hardware and the host network backend in one go. The host backend options
2256abbbb035SThomas Huthare the same as with the corresponding @option{-netdev} options below.
2257abbbb035SThomas HuthThe guest NIC model can be set with @option{model=@var{modelname}}.
2258abbbb035SThomas HuthUse @option{model=help} to list the available device types.
2259abbbb035SThomas HuthThe hardware MAC address can be set with @option{mac=@var{macaddr}}.
2260abbbb035SThomas Huth
2261abbbb035SThomas HuthThe following two example do exactly the same, to show how @option{-nic} can
2262abbbb035SThomas Huthbe used to shorten the command line length (note that the e1000 is the default
2263abbbb035SThomas Huthon i386, so the @option{model=e1000} parameter could even be omitted here, too):
2264abbbb035SThomas Huth@example
2265abbbb035SThomas Huthqemu-system-i386 -netdev user,id=n1,ipv6=off -device e1000,netdev=n1,mac=52:54:98:76:54:32
2266abbbb035SThomas Huthqemu-system-i386 -nic user,ipv6=off,model=e1000,mac=52:54:98:76:54:32
2267abbbb035SThomas Huth@end example
2268abbbb035SThomas Huth
2269abbbb035SThomas Huth@item -nic none
2270abbbb035SThomas HuthIndicate that no network devices should be configured. It is used to override
2271abbbb035SThomas Huththe default configuration (default NIC with ``user'' host network backend)
2272abbbb035SThomas Huthwhich is activated if no other networking options are provided.
22735824d651Sblueswir1
227408d12022SStefan Hajnoczi@item -netdev user,id=@var{id}[,@var{option}][,@var{option}][,...]
2275b8f490ebSMarkus Armbruster@findex -netdev
2276abbbb035SThomas HuthConfigure user mode host network backend which requires no administrator
2277ad196a9dSJan Kiszkaprivilege to run. Valid options are:
22785824d651Sblueswir1
2279b3f046c2SKevin Wolf@table @option
228008d12022SStefan Hajnoczi@item id=@var{id}
2281ad196a9dSJan KiszkaAssign symbolic name for use in monitor commands.
2282ad196a9dSJan Kiszka
2283abbbb035SThomas Huth@item ipv4=on|off and ipv6=on|off
2284abbbb035SThomas HuthSpecify that either IPv4 or IPv6 must be enabled. If neither is specified
2285abbbb035SThomas Huthboth protocols are enabled.
22860b11c036SSamuel Thibault
2287c92ef6a2SJan Kiszka@item net=@var{addr}[/@var{mask}]
2288c92ef6a2SJan KiszkaSet IP network address the guest will see. Optionally specify the netmask,
2289c92ef6a2SJan Kiszkaeither in the form a.b.c.d or as number of valid top-most bits. Default is
2290b0b36e5dSBrad Hards10.0.2.0/24.
2291c92ef6a2SJan Kiszka
2292c92ef6a2SJan Kiszka@item host=@var{addr}
2293c92ef6a2SJan KiszkaSpecify the guest-visible address of the host. Default is the 2nd IP in the
2294c92ef6a2SJan Kiszkaguest network, i.e. x.x.x.2.
2295ad196a9dSJan Kiszka
2296d8eb3864SSamuel Thibault@item ipv6-net=@var{addr}[/@var{int}]
2297d8eb3864SSamuel ThibaultSet IPv6 network address the guest will see (default is fec0::/64). The
2298d8eb3864SSamuel Thibaultnetwork prefix is given in the usual hexadecimal IPv6 address
2299d8eb3864SSamuel Thibaultnotation. The prefix size is optional, and is given as the number of
2300d8eb3864SSamuel Thibaultvalid top-most bits (default is 64).
23017aac531eSYann Bordenave
2302d8eb3864SSamuel Thibault@item ipv6-host=@var{addr}
23037aac531eSYann BordenaveSpecify the guest-visible IPv6 address of the host. Default is the 2nd IPv6 in
23047aac531eSYann Bordenavethe guest network, i.e. xxxx::2.
23057aac531eSYann Bordenave
2306c54ed5bcSJan Kiszka@item restrict=on|off
2307caef55edSBrad HardsIf this option is enabled, the guest will be isolated, i.e. it will not be
2308ad196a9dSJan Kiszkaable to contact the host and no guest IP packets will be routed over the host
2309caef55edSBrad Hardsto the outside. This option does not affect any explicitly set forwarding rules.
2310ad196a9dSJan Kiszka
2311ad196a9dSJan Kiszka@item hostname=@var{name}
231263d2960bSKlaus StengelSpecifies the client hostname reported by the built-in DHCP server.
2313ad196a9dSJan Kiszka
2314c92ef6a2SJan Kiszka@item dhcpstart=@var{addr}
2315c92ef6a2SJan KiszkaSpecify the first of the 16 IPs the built-in DHCP server can assign. Default
2316b0b36e5dSBrad Hardsis the 15th to 31st IP in the guest network, i.e. x.x.x.15 to x.x.x.31.
2317c92ef6a2SJan Kiszka
2318c92ef6a2SJan Kiszka@item dns=@var{addr}
2319c92ef6a2SJan KiszkaSpecify the guest-visible address of the virtual nameserver. The address must
2320c92ef6a2SJan Kiszkabe different from the host address. Default is the 3rd IP in the guest network,
2321c92ef6a2SJan Kiszkai.e. x.x.x.3.
2322c92ef6a2SJan Kiszka
2323d8eb3864SSamuel Thibault@item ipv6-dns=@var{addr}
23247aac531eSYann BordenaveSpecify the guest-visible address of the IPv6 virtual nameserver. The address
23257aac531eSYann Bordenavemust be different from the host address. Default is the 3rd IP in the guest
23267aac531eSYann Bordenavenetwork, i.e. xxxx::3.
23277aac531eSYann Bordenave
232863d2960bSKlaus Stengel@item dnssearch=@var{domain}
232963d2960bSKlaus StengelProvides an entry for the domain-search list sent by the built-in
233063d2960bSKlaus StengelDHCP server. More than one domain suffix can be transmitted by specifying
233163d2960bSKlaus Stengelthis option multiple times. If supported, this will cause the guest to
233263d2960bSKlaus Stengelautomatically try to append the given domain suffix(es) in case a domain name
233363d2960bSKlaus Stengelcan not be resolved.
233463d2960bSKlaus Stengel
233563d2960bSKlaus StengelExample:
233663d2960bSKlaus Stengel@example
2337abbbb035SThomas Huthqemu-system-i386 -nic user,dnssearch=mgmt.example.org,dnssearch=example.org
233863d2960bSKlaus Stengel@end example
233963d2960bSKlaus Stengel
2340f18d1375SBenjamin Drung@item domainname=@var{domain}
2341f18d1375SBenjamin DrungSpecifies the client domain name reported by the built-in DHCP server.
2342f18d1375SBenjamin Drung
2343ad196a9dSJan Kiszka@item tftp=@var{dir}
2344ad196a9dSJan KiszkaWhen using the user mode network stack, activate a built-in TFTP
2345ad196a9dSJan Kiszkaserver. The files in @var{dir} will be exposed as the root of a TFTP server.
2346ad196a9dSJan KiszkaThe TFTP client on the guest must be configured in binary mode (use the command
2347c92ef6a2SJan Kiszka@code{bin} of the Unix TFTP client).
2348ad196a9dSJan Kiszka
23490fca92b9SFam Zheng@item tftp-server-name=@var{name}
23500fca92b9SFam ZhengIn BOOTP reply, broadcast @var{name} as the "TFTP server name" (RFC2132 option
23510fca92b9SFam Zheng66). This can be used to advise the guest to load boot files or configurations
23520fca92b9SFam Zhengfrom a different server than the host address.
23530fca92b9SFam Zheng
2354ad196a9dSJan Kiszka@item bootfile=@var{file}
2355ad196a9dSJan KiszkaWhen using the user mode network stack, broadcast @var{file} as the BOOTP
2356ad196a9dSJan Kiszkafilename. In conjunction with @option{tftp}, this can be used to network boot
2357ad196a9dSJan Kiszkaa guest from a local directory.
2358ad196a9dSJan Kiszka
2359ad196a9dSJan KiszkaExample (using pxelinux):
2360ad196a9dSJan Kiszka@example
2361abbbb035SThomas Huthqemu-system-i386 -hda linux.img -boot n -device e1000,netdev=n1 \
2362abbbb035SThomas Huth    -netdev user,id=n1,tftp=/path/to/tftp/files,bootfile=/pxelinux.0
2363ad196a9dSJan Kiszka@end example
2364ad196a9dSJan Kiszka
2365c92ef6a2SJan Kiszka@item smb=@var{dir}[,smbserver=@var{addr}]
2366ad196a9dSJan KiszkaWhen using the user mode network stack, activate a built-in SMB
2367ad196a9dSJan Kiszkaserver so that Windows OSes can access to the host files in @file{@var{dir}}
2368c92ef6a2SJan Kiszkatransparently. The IP address of the SMB server can be set to @var{addr}. By
2369c92ef6a2SJan Kiszkadefault the 4th IP in the guest network is used, i.e. x.x.x.4.
2370ad196a9dSJan Kiszka
2371ad196a9dSJan KiszkaIn the guest Windows OS, the line:
2372ad196a9dSJan Kiszka@example
2373ad196a9dSJan Kiszka10.0.2.4 smbserver
2374ad196a9dSJan Kiszka@end example
2375ad196a9dSJan Kiszkamust be added in the file @file{C:\WINDOWS\LMHOSTS} (for windows 9x/Me)
2376ad196a9dSJan Kiszkaor @file{C:\WINNT\SYSTEM32\DRIVERS\ETC\LMHOSTS} (Windows NT/2000).
2377ad196a9dSJan Kiszka
2378ad196a9dSJan KiszkaThen @file{@var{dir}} can be accessed in @file{\\smbserver\qemu}.
2379ad196a9dSJan Kiszka
2380e2d8830eSBradNote that a SAMBA server must be installed on the host OS.
2381ad196a9dSJan Kiszka
23823c6a0580SJan Kiszka@item hostfwd=[tcp|udp]:[@var{hostaddr}]:@var{hostport}-[@var{guestaddr}]:@var{guestport}
2383c92ef6a2SJan KiszkaRedirect incoming TCP or UDP connections to the host port @var{hostport} to
2384c92ef6a2SJan Kiszkathe guest IP address @var{guestaddr} on guest port @var{guestport}. If
2385c92ef6a2SJan Kiszka@var{guestaddr} is not specified, its value is x.x.x.15 (default first address
23863c6a0580SJan Kiszkagiven by the built-in DHCP server). By specifying @var{hostaddr}, the rule can
23873c6a0580SJan Kiszkabe bound to a specific host interface. If no connection type is set, TCP is
2388c92ef6a2SJan Kiszkaused. This option can be given multiple times.
2389ad196a9dSJan Kiszka
2390ad196a9dSJan KiszkaFor example, to redirect host X11 connection from screen 1 to guest
2391ad196a9dSJan Kiszkascreen 0, use the following:
2392ad196a9dSJan Kiszka
2393ad196a9dSJan Kiszka@example
2394ad196a9dSJan Kiszka# on the host
2395abbbb035SThomas Huthqemu-system-i386 -nic user,hostfwd=tcp:127.0.0.1:6001-:6000
2396ad196a9dSJan Kiszka# this host xterm should open in the guest X11 server
2397ad196a9dSJan Kiszkaxterm -display :1
2398ad196a9dSJan Kiszka@end example
2399ad196a9dSJan Kiszka
2400ad196a9dSJan KiszkaTo redirect telnet connections from host port 5555 to telnet port on
2401ad196a9dSJan Kiszkathe guest, use the following:
2402ad196a9dSJan Kiszka
2403ad196a9dSJan Kiszka@example
2404ad196a9dSJan Kiszka# on the host
2405abbbb035SThomas Huthqemu-system-i386 -nic user,hostfwd=tcp::5555-:23
2406ad196a9dSJan Kiszkatelnet localhost 5555
2407ad196a9dSJan Kiszka@end example
2408ad196a9dSJan Kiszka
2409ad196a9dSJan KiszkaThen when you use on the host @code{telnet localhost 5555}, you
2410ad196a9dSJan Kiszkaconnect to the guest telnet server.
2411ad196a9dSJan Kiszka
2412c92ef6a2SJan Kiszka@item guestfwd=[tcp]:@var{server}:@var{port}-@var{dev}
2413f9cfd655SMarkus Armbruster@itemx guestfwd=[tcp]:@var{server}:@var{port}-@var{cmd:command}
24143c6a0580SJan KiszkaForward guest TCP connections to the IP address @var{server} on port @var{port}
2415b412eb61SAlexander Grafto the character device @var{dev} or to a program executed by @var{cmd:command}
2416b412eb61SAlexander Grafwhich gets spawned for each connection. This option can be given multiple times.
2417b412eb61SAlexander Graf
241843ffe61fSStefan WeilYou can either use a chardev directly and have that one used throughout QEMU's
2419b412eb61SAlexander Graflifetime, like in the following example:
2420b412eb61SAlexander Graf
2421b412eb61SAlexander Graf@example
2422b412eb61SAlexander Graf# open 10.10.1.1:4321 on bootup, connect 10.0.2.100:1234 to it whenever
2423b412eb61SAlexander Graf# the guest accesses it
2424abbbb035SThomas Huthqemu-system-i386 -nic user,guestfwd=tcp:10.0.2.100:1234-tcp:10.10.1.1:4321
2425b412eb61SAlexander Graf@end example
2426b412eb61SAlexander Graf
2427b412eb61SAlexander GrafOr you can execute a command on every TCP connection established by the guest,
242843ffe61fSStefan Weilso that QEMU behaves similar to an inetd process for that virtual server:
2429b412eb61SAlexander Graf
2430b412eb61SAlexander Graf@example
2431b412eb61SAlexander Graf# call "netcat 10.10.1.1 4321" on every TCP connection to 10.0.2.100:1234
2432b412eb61SAlexander Graf# and connect the TCP stream to its stdin/stdout
2433abbbb035SThomas Huthqemu-system-i386 -nic  'user,id=n1,guestfwd=tcp:10.0.2.100:1234-cmd:netcat 10.10.1.1 4321'
2434b412eb61SAlexander Graf@end example
2435ad196a9dSJan Kiszka
2436ad196a9dSJan Kiszka@end table
2437ad196a9dSJan Kiszka
2438584613eaSAlexey Kardashevskiy@item -netdev tap,id=@var{id}[,fd=@var{h}][,ifname=@var{name}][,script=@var{file}][,downscript=@var{dfile}][,br=@var{bridge}][,helper=@var{helper}]
2439abbbb035SThomas HuthConfigure a host TAP network backend with ID @var{id}.
2440a7c36ee4SCorey Bryant
2441a7c36ee4SCorey BryantUse the network script @var{file} to configure it and the network script
24425824d651Sblueswir1@var{dfile} to deconfigure it. If @var{name} is not provided, the OS
2443a7c36ee4SCorey Bryantautomatically provides one. The default network configure script is
2444a7c36ee4SCorey Bryant@file{/etc/qemu-ifup} and the default network deconfigure script is
2445a7c36ee4SCorey Bryant@file{/etc/qemu-ifdown}. Use @option{script=no} or @option{downscript=no}
2446a7c36ee4SCorey Bryantto disable script execution.
2447a7c36ee4SCorey Bryant
2448a7c36ee4SCorey BryantIf running QEMU as an unprivileged user, use the network helper
2449584613eaSAlexey Kardashevskiy@var{helper} to configure the TAP interface and attach it to the bridge.
2450584613eaSAlexey KardashevskiyThe default network helper executable is @file{/path/to/qemu-bridge-helper}
2451584613eaSAlexey Kardashevskiyand the default bridge device is @file{br0}.
2452a7c36ee4SCorey Bryant
2453a7c36ee4SCorey Bryant@option{fd}=@var{h} can be used to specify the handle of an already
2454a7c36ee4SCorey Bryantopened host TAP interface.
2455a7c36ee4SCorey Bryant
2456a7c36ee4SCorey BryantExamples:
24575824d651Sblueswir1
24585824d651Sblueswir1@example
2459a7c36ee4SCorey Bryant#launch a QEMU instance with the default network script
2460abbbb035SThomas Huthqemu-system-i386 linux.img -nic tap
24615824d651Sblueswir1@end example
24625824d651Sblueswir1
24635824d651Sblueswir1@example
2464a7c36ee4SCorey Bryant#launch a QEMU instance with two NICs, each one connected
2465a7c36ee4SCorey Bryant#to a TAP device
24663804da9dSStefan Weilqemu-system-i386 linux.img \
246774f78b99SThomas Huth        -netdev tap,id=nd0,ifname=tap0 -device e1000,netdev=nd0 \
246874f78b99SThomas Huth        -netdev tap,id=nd1,ifname=tap1 -device rtl8139,netdev=nd1
24695824d651Sblueswir1@end example
24705824d651Sblueswir1
2471a7c36ee4SCorey Bryant@example
2472a7c36ee4SCorey Bryant#launch a QEMU instance with the default network helper to
2473a7c36ee4SCorey Bryant#connect a TAP device to bridge br0
2474abbbb035SThomas Huthqemu-system-i386 linux.img -device virtio-net-pci,netdev=n1 \
2475abbbb035SThomas Huth        -netdev tap,id=n1,"helper=/path/to/qemu-bridge-helper"
2476a7c36ee4SCorey Bryant@end example
2477a7c36ee4SCorey Bryant
247808d12022SStefan Hajnoczi@item -netdev bridge,id=@var{id}[,br=@var{bridge}][,helper=@var{helper}]
2479a7c36ee4SCorey BryantConnect a host TAP network interface to a host bridge device.
2480a7c36ee4SCorey Bryant
2481a7c36ee4SCorey BryantUse the network helper @var{helper} to configure the TAP interface and
2482a7c36ee4SCorey Bryantattach it to the bridge. The default network helper executable is
2483420508fbSAmos Kong@file{/path/to/qemu-bridge-helper} and the default bridge
2484a7c36ee4SCorey Bryantdevice is @file{br0}.
2485a7c36ee4SCorey Bryant
2486a7c36ee4SCorey BryantExamples:
2487a7c36ee4SCorey Bryant
2488a7c36ee4SCorey Bryant@example
2489a7c36ee4SCorey Bryant#launch a QEMU instance with the default network helper to
2490a7c36ee4SCorey Bryant#connect a TAP device to bridge br0
2491abbbb035SThomas Huthqemu-system-i386 linux.img -netdev bridge,id=n1 -device virtio-net,netdev=n1
2492a7c36ee4SCorey Bryant@end example
2493a7c36ee4SCorey Bryant
2494a7c36ee4SCorey Bryant@example
2495a7c36ee4SCorey Bryant#launch a QEMU instance with the default network helper to
2496a7c36ee4SCorey Bryant#connect a TAP device to bridge qemubr0
2497abbbb035SThomas Huthqemu-system-i386 linux.img -netdev bridge,br=qemubr0,id=n1 -device virtio-net,netdev=n1
2498a7c36ee4SCorey Bryant@end example
2499a7c36ee4SCorey Bryant
250008d12022SStefan Hajnoczi@item -netdev socket,id=@var{id}[,fd=@var{h}][,listen=[@var{host}]:@var{port}][,connect=@var{host}:@var{port}]
25015824d651Sblueswir1
2502abbbb035SThomas HuthThis host network backend can be used to connect the guest's network to
2503abbbb035SThomas Huthanother QEMU virtual machine using a TCP socket connection. If @option{listen}
2504abbbb035SThomas Huthis specified, QEMU waits for incoming connections on @var{port}
25055824d651Sblueswir1(@var{host} is optional). @option{connect} is used to connect to
25065824d651Sblueswir1another QEMU instance using the @option{listen} option. @option{fd}=@var{h}
25075824d651Sblueswir1specifies an already opened TCP socket.
25085824d651Sblueswir1
25095824d651Sblueswir1Example:
25105824d651Sblueswir1@example
25115824d651Sblueswir1# launch a first QEMU instance
25123804da9dSStefan Weilqemu-system-i386 linux.img \
2513abbbb035SThomas Huth                 -device e1000,netdev=n1,mac=52:54:00:12:34:56 \
2514abbbb035SThomas Huth                 -netdev socket,id=n1,listen=:1234
2515abbbb035SThomas Huth# connect the network of this instance to the network of the first instance
25163804da9dSStefan Weilqemu-system-i386 linux.img \
2517abbbb035SThomas Huth                 -device e1000,netdev=n2,mac=52:54:00:12:34:57 \
2518abbbb035SThomas Huth                 -netdev socket,id=n2,connect=127.0.0.1:1234
25195824d651Sblueswir1@end example
25205824d651Sblueswir1
252108d12022SStefan Hajnoczi@item -netdev socket,id=@var{id}[,fd=@var{h}][,mcast=@var{maddr}:@var{port}[,localaddr=@var{addr}]]
25225824d651Sblueswir1
2523abbbb035SThomas HuthConfigure a socket host network backend to share the guest's network traffic
2524abbbb035SThomas Huthwith another QEMU virtual machines using a UDP multicast socket, effectively
2525abbbb035SThomas Huthmaking a bus for every QEMU with same multicast address @var{maddr} and @var{port}.
25265824d651Sblueswir1NOTES:
25275824d651Sblueswir1@enumerate
25285824d651Sblueswir1@item
25295824d651Sblueswir1Several QEMU can be running on different hosts and share same bus (assuming
25305824d651Sblueswir1correct multicast setup for these hosts).
25315824d651Sblueswir1@item
25325824d651Sblueswir1mcast support is compatible with User Mode Linux (argument @option{eth@var{N}=mcast}), see
25335824d651Sblueswir1@url{http://user-mode-linux.sf.net}.
25345824d651Sblueswir1@item
25355824d651Sblueswir1Use @option{fd=h} to specify an already opened UDP multicast socket.
25365824d651Sblueswir1@end enumerate
25375824d651Sblueswir1
25385824d651Sblueswir1Example:
25395824d651Sblueswir1@example
25405824d651Sblueswir1# launch one QEMU instance
25413804da9dSStefan Weilqemu-system-i386 linux.img \
2542abbbb035SThomas Huth                 -device e1000,netdev=n1,mac=52:54:00:12:34:56 \
2543abbbb035SThomas Huth                 -netdev socket,id=n1,mcast=230.0.0.1:1234
25445824d651Sblueswir1# launch another QEMU instance on same "bus"
25453804da9dSStefan Weilqemu-system-i386 linux.img \
2546abbbb035SThomas Huth                 -device e1000,netdev=n2,mac=52:54:00:12:34:57 \
2547abbbb035SThomas Huth                 -netdev socket,id=n2,mcast=230.0.0.1:1234
25485824d651Sblueswir1# launch yet another QEMU instance on same "bus"
25493804da9dSStefan Weilqemu-system-i386 linux.img \
255037a4442aSThomas Huth                 -device e1000,netdev=n3,mac=52:54:00:12:34:58 \
2551abbbb035SThomas Huth                 -netdev socket,id=n3,mcast=230.0.0.1:1234
25525824d651Sblueswir1@end example
25535824d651Sblueswir1
25545824d651Sblueswir1Example (User Mode Linux compat.):
25555824d651Sblueswir1@example
2556abbbb035SThomas Huth# launch QEMU instance (note mcast address selected is UML's default)
25573804da9dSStefan Weilqemu-system-i386 linux.img \
2558abbbb035SThomas Huth                 -device e1000,netdev=n1,mac=52:54:00:12:34:56 \
2559abbbb035SThomas Huth                 -netdev socket,id=n1,mcast=239.192.168.1:1102
25605824d651Sblueswir1# launch UML
25615824d651Sblueswir1/path/to/linux ubd0=/path/to/root_fs eth0=mcast
25625824d651Sblueswir1@end example
25635824d651Sblueswir1
25643a75e74cSMike RyanExample (send packets from host's 1.2.3.4):
25653a75e74cSMike Ryan@example
25663804da9dSStefan Weilqemu-system-i386 linux.img \
2567abbbb035SThomas Huth                 -device e1000,netdev=n1,mac=52:54:00:12:34:56 \
2568abbbb035SThomas Huth                 -netdev socket,id=n1,mcast=239.192.168.1:1102,localaddr=1.2.3.4
25693a75e74cSMike Ryan@end example
25703a75e74cSMike Ryan
25713fb69aa1SAnton Ivanov@item -netdev l2tpv3,id=@var{id},src=@var{srcaddr},dst=@var{dstaddr}[,srcport=@var{srcport}][,dstport=@var{dstport}],txsession=@var{txsession}[,rxsession=@var{rxsession}][,ipv6][,udp][,cookie64][,counter][,pincounter][,txcookie=@var{txcookie}][,rxcookie=@var{rxcookie}][,offset=@var{offset}]
2572abbbb035SThomas HuthConfigure a L2TPv3 pseudowire host network backend. L2TPv3 (RFC3391) is a
2573abbbb035SThomas Huthpopular protocol to transport Ethernet (and other Layer 2) data frames between
25743fb69aa1SAnton Ivanovtwo systems. It is present in routers, firewalls and the Linux kernel
25753fb69aa1SAnton Ivanov(from version 3.3 onwards).
25763fb69aa1SAnton Ivanov
25773fb69aa1SAnton IvanovThis transport allows a VM to communicate to another VM, router or firewall directly.
25783fb69aa1SAnton Ivanov
25791e9a7379SMarkus Armbruster@table @option
25803fb69aa1SAnton Ivanov@item src=@var{srcaddr}
25813fb69aa1SAnton Ivanov    source address (mandatory)
25823fb69aa1SAnton Ivanov@item dst=@var{dstaddr}
25833fb69aa1SAnton Ivanov    destination address (mandatory)
25843fb69aa1SAnton Ivanov@item udp
25853fb69aa1SAnton Ivanov    select udp encapsulation (default is ip).
25863fb69aa1SAnton Ivanov@item srcport=@var{srcport}
25873fb69aa1SAnton Ivanov    source udp port.
25883fb69aa1SAnton Ivanov@item dstport=@var{dstport}
25893fb69aa1SAnton Ivanov    destination udp port.
25903fb69aa1SAnton Ivanov@item ipv6
25913fb69aa1SAnton Ivanov    force v6, otherwise defaults to v4.
25923fb69aa1SAnton Ivanov@item rxcookie=@var{rxcookie}
2593f9cfd655SMarkus Armbruster@itemx txcookie=@var{txcookie}
25943fb69aa1SAnton Ivanov    Cookies are a weak form of security in the l2tpv3 specification.
25953fb69aa1SAnton IvanovTheir function is mostly to prevent misconfiguration. By default they are 32
25963fb69aa1SAnton Ivanovbit.
25973fb69aa1SAnton Ivanov@item cookie64
25983fb69aa1SAnton Ivanov    Set cookie size to 64 bit instead of the default 32
25993fb69aa1SAnton Ivanov@item counter=off
26003fb69aa1SAnton Ivanov    Force a 'cut-down' L2TPv3 with no counter as in
26013fb69aa1SAnton Ivanovdraft-mkonstan-l2tpext-keyed-ipv6-tunnel-00
26023fb69aa1SAnton Ivanov@item pincounter=on
26033fb69aa1SAnton Ivanov    Work around broken counter handling in peer. This may also help on
26043fb69aa1SAnton Ivanovnetworks which have packet reorder.
26053fb69aa1SAnton Ivanov@item offset=@var{offset}
26063fb69aa1SAnton Ivanov    Add an extra offset between header and data
26071e9a7379SMarkus Armbruster@end table
26083fb69aa1SAnton Ivanov
26093fb69aa1SAnton IvanovFor example, to attach a VM running on host 4.3.2.1 via L2TPv3 to the bridge br-lan
26103fb69aa1SAnton Ivanovon the remote Linux host 1.2.3.4:
26113fb69aa1SAnton Ivanov@example
26123fb69aa1SAnton Ivanov# Setup tunnel on linux host using raw ip as encapsulation
26133fb69aa1SAnton Ivanov# on 1.2.3.4
26143fb69aa1SAnton Ivanovip l2tp add tunnel remote 4.3.2.1 local 1.2.3.4 tunnel_id 1 peer_tunnel_id 1 \
26153fb69aa1SAnton Ivanov    encap udp udp_sport 16384 udp_dport 16384
26163fb69aa1SAnton Ivanovip l2tp add session tunnel_id 1 name vmtunnel0 session_id \
26173fb69aa1SAnton Ivanov    0xFFFFFFFF peer_session_id 0xFFFFFFFF
26183fb69aa1SAnton Ivanovifconfig vmtunnel0 mtu 1500
26193fb69aa1SAnton Ivanovifconfig vmtunnel0 up
26203fb69aa1SAnton Ivanovbrctl addif br-lan vmtunnel0
26213fb69aa1SAnton Ivanov
26223fb69aa1SAnton Ivanov
26233fb69aa1SAnton Ivanov# on 4.3.2.1
26243fb69aa1SAnton Ivanov# launch QEMU instance - if your network has reorder or is very lossy add ,pincounter
26253fb69aa1SAnton Ivanov
2626abbbb035SThomas Huthqemu-system-i386 linux.img -device e1000,netdev=n1 \
2627abbbb035SThomas Huth    -netdev l2tpv3,id=n1,src=4.2.3.1,dst=1.2.3.4,udp,srcport=16384,dstport=16384,rxsession=0xffffffff,txsession=0xffffffff,counter
26283fb69aa1SAnton Ivanov
26293fb69aa1SAnton Ivanov@end example
26303fb69aa1SAnton Ivanov
263108d12022SStefan Hajnoczi@item -netdev vde,id=@var{id}[,sock=@var{socketpath}][,port=@var{n}][,group=@var{groupname}][,mode=@var{octalmode}]
2632abbbb035SThomas HuthConfigure VDE backend to connect to PORT @var{n} of a vde switch running on host and
26335824d651Sblueswir1listening for incoming connections on @var{socketpath}. Use GROUP @var{groupname}
26345824d651Sblueswir1and MODE @var{octalmode} to change default ownership and permissions for
2635c1ba4e0bSStefan Weilcommunication port. This option is only available if QEMU has been compiled
26365824d651Sblueswir1with vde support enabled.
26375824d651Sblueswir1
26385824d651Sblueswir1Example:
26395824d651Sblueswir1@example
26405824d651Sblueswir1# launch vde switch
26415824d651Sblueswir1vde_switch -F -sock /tmp/myswitch
26425824d651Sblueswir1# launch QEMU instance
2643abbbb035SThomas Huthqemu-system-i386 linux.img -nic vde,sock=/tmp/myswitch
26445824d651Sblueswir1@end example
26455824d651Sblueswir1
2646b931bfbfSChangchun Ouyang@item -netdev vhost-user,chardev=@var{id}[,vhostforce=on|off][,queues=n]
264703ce5744SNikolay Nikolaev
264803ce5744SNikolay NikolaevEstablish a vhost-user netdev, backed by a chardev @var{id}. The chardev should
264903ce5744SNikolay Nikolaevbe a unix domain socket backed one. The vhost-user uses a specifically defined
265003ce5744SNikolay Nikolaevprotocol to pass vhost ioctl replacement messages to an application on the other
265103ce5744SNikolay Nikolaevend of the socket. On non-MSIX guests, the feature can be forced with
2652b931bfbfSChangchun Ouyang@var{vhostforce}. Use 'queues=@var{n}' to specify the number of queues to
2653b931bfbfSChangchun Ouyangbe created for multiqueue vhost-user.
265403ce5744SNikolay Nikolaev
265503ce5744SNikolay NikolaevExample:
265603ce5744SNikolay Nikolaev@example
265703ce5744SNikolay Nikolaevqemu -m 512 -object memory-backend-file,id=mem,size=512M,mem-path=/hugetlbfs,share=on \
265803ce5744SNikolay Nikolaev     -numa node,memdev=mem \
265979cad2faSVincenzo Maffione     -chardev socket,id=chr0,path=/path/to/socket \
266003ce5744SNikolay Nikolaev     -netdev type=vhost-user,id=net0,chardev=chr0 \
266103ce5744SNikolay Nikolaev     -device virtio-net-pci,netdev=net0
266203ce5744SNikolay Nikolaev@end example
266303ce5744SNikolay Nikolaev
2664abbbb035SThomas Huth@item -netdev hubport,id=@var{id},hubid=@var{hubid}[,netdev=@var{nd}]
266578cd6f7bSThomas Huth
2666abbbb035SThomas HuthCreate a hub port on the emulated hub with ID @var{hubid}.
266778cd6f7bSThomas Huth
2668abbbb035SThomas HuthThe hubport netdev lets you connect a NIC to a QEMU emulated hub instead of a
2669af1a5c3eSThomas Huthsingle netdev. Alternatively, you can also connect the hubport to another
2670af1a5c3eSThomas Huthnetdev with ID @var{nd} by using the @option{netdev=@var{nd}} option.
2671abbbb035SThomas Huth
2672af1a5c3eSThomas Huth@item -net nic[,netdev=@var{nd}][,macaddr=@var{mac}][,model=@var{type}] [,name=@var{name}][,addr=@var{addr}][,vectors=@var{v}]
2673abbbb035SThomas Huth@findex -net
2674abbbb035SThomas HuthLegacy option to configure or create an on-board (or machine default) Network
2675af1a5c3eSThomas HuthInterface Card(NIC) and connect it either to the emulated hub with ID 0 (i.e.
2676af1a5c3eSThomas Huththe default hub), or to the netdev @var{nd}.
2677abbbb035SThomas HuthThe NIC is an e1000 by default on the PC target. Optionally, the MAC address
2678abbbb035SThomas Huthcan be changed to @var{mac}, the device address set to @var{addr} (PCI cards
2679abbbb035SThomas Huthonly), and a @var{name} can be assigned for use in monitor commands.
2680abbbb035SThomas HuthOptionally, for PCI cards, you can specify the number @var{v} of MSI-X vectors
2681abbbb035SThomas Huththat the card should have; this option currently only affects virtio cards; set
2682abbbb035SThomas Huth@var{v} = 0 to disable MSI-X. If no @option{-net} option is specified, a single
2683abbbb035SThomas HuthNIC is created.  QEMU can emulate several different models of network card.
2684abbbb035SThomas HuthUse @code{-net nic,model=help} for a list of available devices for your target.
2685abbbb035SThomas Huth
2686af1a5c3eSThomas Huth@item -net user|tap|bridge|socket|l2tpv3|vde[,...][,name=@var{name}]
2687abbbb035SThomas HuthConfigure a host network backend (with the options corresponding to the same
2688af1a5c3eSThomas Huth@option{-netdev} option) and connect it to the emulated hub 0 (the default
2689af1a5c3eSThomas Huthhub). Use @var{name} to specify the name of the hub port.
26905824d651Sblueswir1ETEXI
26915824d651Sblueswir1
2692c70a01e4SMarkus ArmbrusterSTEXI
2693c70a01e4SMarkus Armbruster@end table
2694c70a01e4SMarkus ArmbrusterETEXI
26957273a2dbSMatthew BoothDEFHEADING()
26967273a2dbSMatthew Booth
2697de6b4f90SMarkus ArmbrusterDEFHEADING(Character device options:)
26987273a2dbSMatthew Booth
26997273a2dbSMatthew BoothDEF("chardev", HAS_ARG, QEMU_OPTION_chardev,
2700517b3d40SLin Ma    "-chardev help\n"
2701d0d7708bSDaniel P. Berrange    "-chardev null,id=id[,mux=on|off][,logfile=PATH][,logappend=on|off]\n"
27025dd1f02bSCorey Minyard    "-chardev socket,id=id[,host=host],port=port[,to=to][,ipv4][,ipv6][,nodelay][,reconnect=seconds]\n"
2703981b06e7SJulia Suvorova    "         [,server][,nowait][,telnet][,websocket][,reconnect=seconds][,mux=on|off]\n"
2704fd4a5fd4SDaniel P. Berrange    "         [,logfile=PATH][,logappend=on|off][,tls-creds=ID][,tls-authz=ID] (tcp)\n"
2705981b06e7SJulia Suvorova    "-chardev socket,id=id,path=path[,server][,nowait][,telnet][,websocket][,reconnect=seconds]\n"
2706d0d7708bSDaniel P. Berrange    "         [,mux=on|off][,logfile=PATH][,logappend=on|off] (unix)\n"
27077273a2dbSMatthew Booth    "-chardev udp,id=id[,host=host],port=port[,localaddr=localaddr]\n"
270897331287SJan Kiszka    "         [,localport=localport][,ipv4][,ipv6][,mux=on|off]\n"
2709d0d7708bSDaniel P. Berrange    "         [,logfile=PATH][,logappend=on|off]\n"
2710d0d7708bSDaniel P. Berrange    "-chardev msmouse,id=id[,mux=on|off][,logfile=PATH][,logappend=on|off]\n"
27117273a2dbSMatthew Booth    "-chardev vc,id=id[[,width=width][,height=height]][[,cols=cols][,rows=rows]]\n"
2712d0d7708bSDaniel P. Berrange    "         [,mux=on|off][,logfile=PATH][,logappend=on|off]\n"
2713d0d7708bSDaniel P. Berrange    "-chardev ringbuf,id=id[,size=size][,logfile=PATH][,logappend=on|off]\n"
2714d0d7708bSDaniel P. Berrange    "-chardev file,id=id,path=path[,mux=on|off][,logfile=PATH][,logappend=on|off]\n"
2715d0d7708bSDaniel P. Berrange    "-chardev pipe,id=id,path=path[,mux=on|off][,logfile=PATH][,logappend=on|off]\n"
27167273a2dbSMatthew Booth#ifdef _WIN32
2717d0d7708bSDaniel P. Berrange    "-chardev console,id=id[,mux=on|off][,logfile=PATH][,logappend=on|off]\n"
2718d0d7708bSDaniel P. Berrange    "-chardev serial,id=id,path=path[,mux=on|off][,logfile=PATH][,logappend=on|off]\n"
27197273a2dbSMatthew Booth#else
2720d0d7708bSDaniel P. Berrange    "-chardev pty,id=id[,mux=on|off][,logfile=PATH][,logappend=on|off]\n"
2721d0d7708bSDaniel P. Berrange    "-chardev stdio,id=id[,mux=on|off][,signal=on|off][,logfile=PATH][,logappend=on|off]\n"
27227273a2dbSMatthew Booth#endif
27237273a2dbSMatthew Booth#ifdef CONFIG_BRLAPI
2724d0d7708bSDaniel P. Berrange    "-chardev braille,id=id[,mux=on|off][,logfile=PATH][,logappend=on|off]\n"
27257273a2dbSMatthew Booth#endif
27267273a2dbSMatthew Booth#if defined(__linux__) || defined(__sun__) || defined(__FreeBSD__) \
27277273a2dbSMatthew Booth        || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__DragonFly__)
2728d0d7708bSDaniel P. Berrange    "-chardev serial,id=id,path=path[,mux=on|off][,logfile=PATH][,logappend=on|off]\n"
2729d0d7708bSDaniel P. Berrange    "-chardev tty,id=id,path=path[,mux=on|off][,logfile=PATH][,logappend=on|off]\n"
27307273a2dbSMatthew Booth#endif
27317273a2dbSMatthew Booth#if defined(__linux__) || defined(__FreeBSD__) || defined(__DragonFly__)
2732d0d7708bSDaniel P. Berrange    "-chardev parallel,id=id,path=path[,mux=on|off][,logfile=PATH][,logappend=on|off]\n"
2733d0d7708bSDaniel P. Berrange    "-chardev parport,id=id,path=path[,mux=on|off][,logfile=PATH][,logappend=on|off]\n"
27347273a2dbSMatthew Booth#endif
2735cbcc6336SAlon Levy#if defined(CONFIG_SPICE)
2736d0d7708bSDaniel P. Berrange    "-chardev spicevmc,id=id,name=name[,debug=debug][,logfile=PATH][,logappend=on|off]\n"
2737d0d7708bSDaniel P. Berrange    "-chardev spiceport,id=id,name=name[,debug=debug][,logfile=PATH][,logappend=on|off]\n"
2738cbcc6336SAlon Levy#endif
2739ad96090aSBlue Swirl    , QEMU_ARCH_ALL
27407273a2dbSMatthew Booth)
27417273a2dbSMatthew Booth
27427273a2dbSMatthew BoothSTEXI
2743dddba068SMarkus Armbruster
2744dddba068SMarkus ArmbrusterThe general form of a character device option is:
2745dddba068SMarkus Armbruster@table @option
274697331287SJan Kiszka@item -chardev @var{backend},id=@var{id}[,mux=on|off][,@var{options}]
27476616b2adSStefan Weil@findex -chardev
27487273a2dbSMatthew BoothBackend is one of:
27497273a2dbSMatthew Booth@option{null},
27507273a2dbSMatthew Booth@option{socket},
27517273a2dbSMatthew Booth@option{udp},
27527273a2dbSMatthew Booth@option{msmouse},
27537273a2dbSMatthew Booth@option{vc},
27544f57378fSMarkus Armbruster@option{ringbuf},
27557273a2dbSMatthew Booth@option{file},
27567273a2dbSMatthew Booth@option{pipe},
27577273a2dbSMatthew Booth@option{console},
27587273a2dbSMatthew Booth@option{serial},
27597273a2dbSMatthew Booth@option{pty},
27607273a2dbSMatthew Booth@option{stdio},
27617273a2dbSMatthew Booth@option{braille},
27627273a2dbSMatthew Booth@option{tty},
276388a946d3SGerd Hoffmann@option{parallel},
2764cbcc6336SAlon Levy@option{parport},
276516fdc56aSThomas Huth@option{spicevmc},
27665a49d3e9SMarc-André Lureau@option{spiceport}.
27677273a2dbSMatthew BoothThe specific backend will determine the applicable options.
27687273a2dbSMatthew Booth
2769dddba068SMarkus ArmbrusterUse @code{-chardev help} to print all available chardev backend types.
2770517b3d40SLin Ma
27717273a2dbSMatthew BoothAll devices must have an id, which can be any string up to 127 characters long.
27727273a2dbSMatthew BoothIt is used to uniquely identify this device in other command line directives.
27737273a2dbSMatthew Booth
277497331287SJan KiszkaA character device may be used in multiplexing mode by multiple front-ends.
2775a40db1b3SPeter MaydellSpecify @option{mux=on} to enable this mode.
2776a40db1b3SPeter MaydellA multiplexer is a "1:N" device, and here the "1" end is your specified chardev
2777a40db1b3SPeter Maydellbackend, and the "N" end is the various parts of QEMU that can talk to a chardev.
2778a40db1b3SPeter MaydellIf you create a chardev with @option{id=myid} and @option{mux=on}, QEMU will
2779a40db1b3SPeter Maydellcreate a multiplexer with your specified ID, and you can then configure multiple
2780a40db1b3SPeter Maydellfront ends to use that chardev ID for their input/output. Up to four different
2781a40db1b3SPeter Maydellfront ends can be connected to a single multiplexed chardev. (Without
2782a40db1b3SPeter Maydellmultiplexing enabled, a chardev can only be used by a single front end.)
2783a40db1b3SPeter MaydellFor instance you could use this to allow a single stdio chardev to be used by
2784a40db1b3SPeter Maydelltwo serial ports and the QEMU monitor:
2785a40db1b3SPeter Maydell
2786a40db1b3SPeter Maydell@example
2787a40db1b3SPeter Maydell-chardev stdio,mux=on,id=char0 \
2788bdbcb547SMarc-André Lureau-mon chardev=char0,mode=readline \
2789a40db1b3SPeter Maydell-serial chardev:char0 \
2790a40db1b3SPeter Maydell-serial chardev:char0
2791a40db1b3SPeter Maydell@end example
2792a40db1b3SPeter Maydell
2793a40db1b3SPeter MaydellYou can have more than one multiplexer in a system configuration; for instance
2794a40db1b3SPeter Maydellyou could have a TCP port multiplexed between UART 0 and UART 1, and stdio
2795a40db1b3SPeter Maydellmultiplexed between the QEMU monitor and a parallel port:
2796a40db1b3SPeter Maydell
2797a40db1b3SPeter Maydell@example
2798a40db1b3SPeter Maydell-chardev stdio,mux=on,id=char0 \
2799bdbcb547SMarc-André Lureau-mon chardev=char0,mode=readline \
2800a40db1b3SPeter Maydell-parallel chardev:char0 \
2801a40db1b3SPeter Maydell-chardev tcp,...,mux=on,id=char1 \
2802a40db1b3SPeter Maydell-serial chardev:char1 \
2803a40db1b3SPeter Maydell-serial chardev:char1
2804a40db1b3SPeter Maydell@end example
2805a40db1b3SPeter Maydell
2806a40db1b3SPeter MaydellWhen you're using a multiplexed character device, some escape sequences are
2807a40db1b3SPeter Maydellinterpreted in the input. @xref{mux_keys, Keys in the character backend
2808a40db1b3SPeter Maydellmultiplexer}.
2809a40db1b3SPeter Maydell
2810a40db1b3SPeter MaydellNote that some other command line options may implicitly create multiplexed
2811a40db1b3SPeter Maydellcharacter backends; for instance @option{-serial mon:stdio} creates a
2812a40db1b3SPeter Maydellmultiplexed stdio backend connected to the serial port and the QEMU monitor,
2813a40db1b3SPeter Maydelland @option{-nographic} also multiplexes the console and the monitor to
2814a40db1b3SPeter Maydellstdio.
2815a40db1b3SPeter Maydell
2816a40db1b3SPeter MaydellThere is currently no support for multiplexing in the other direction
2817a40db1b3SPeter Maydell(where a single QEMU front end takes input and output from multiple chardevs).
281897331287SJan Kiszka
2819d0d7708bSDaniel P. BerrangeEvery backend supports the @option{logfile} option, which supplies the path
2820d0d7708bSDaniel P. Berrangeto a file to record all data transmitted via the backend. The @option{logappend}
2821d0d7708bSDaniel P. Berrangeoption controls whether the log file will be truncated or appended to when
2822d0d7708bSDaniel P. Berrangeopened.
2823d0d7708bSDaniel P. Berrange
2824dddba068SMarkus Armbruster@end table
28257273a2dbSMatthew Booth
2826dddba068SMarkus ArmbrusterThe available backends are:
2827dddba068SMarkus Armbruster
2828dddba068SMarkus Armbruster@table @option
28297273a2dbSMatthew Booth@item -chardev null,id=@var{id}
28307273a2dbSMatthew BoothA void device. This device will not emit any data, and will drop any data it
28317273a2dbSMatthew Boothreceives. The null backend does not take any options.
28327273a2dbSMatthew Booth
2833fd4a5fd4SDaniel P. Berrange@item -chardev socket,id=@var{id}[,@var{TCP options} or @var{unix options}][,server][,nowait][,telnet][,websocket][,reconnect=@var{seconds}][,tls-creds=@var{id}][,tls-authz=@var{id}]
28347273a2dbSMatthew Booth
28357273a2dbSMatthew BoothCreate a two-way stream socket, which can be either a TCP or a unix socket. A
28367273a2dbSMatthew Boothunix socket will be created if @option{path} is specified. Behaviour is
28377273a2dbSMatthew Boothundefined if TCP options are specified for a unix socket.
28387273a2dbSMatthew Booth
28397273a2dbSMatthew Booth@option{server} specifies that the socket shall be a listening socket.
28407273a2dbSMatthew Booth
28417273a2dbSMatthew Booth@option{nowait} specifies that QEMU should not block waiting for a client to
28427273a2dbSMatthew Boothconnect to a listening socket.
28437273a2dbSMatthew Booth
28447273a2dbSMatthew Booth@option{telnet} specifies that traffic on the socket should interpret telnet
28457273a2dbSMatthew Boothescape sequences.
28467273a2dbSMatthew Booth
2847981b06e7SJulia Suvorova@option{websocket} specifies that the socket uses WebSocket protocol for
2848981b06e7SJulia Suvorovacommunication.
2849981b06e7SJulia Suvorova
28505dd1f02bSCorey Minyard@option{reconnect} sets the timeout for reconnecting on non-server sockets when
28515dd1f02bSCorey Minyardthe remote end goes away.  qemu will delay this many seconds and then attempt
28525dd1f02bSCorey Minyardto reconnect.  Zero disables reconnecting, and is the default.
28535dd1f02bSCorey Minyard
2854a8fb5427SDaniel P. Berrange@option{tls-creds} requests enablement of the TLS protocol for encryption,
2855a8fb5427SDaniel P. Berrangeand specifies the id of the TLS credentials to use for the handshake. The
2856a8fb5427SDaniel P. Berrangecredentials must be previously created with the @option{-object tls-creds}
2857a8fb5427SDaniel P. Berrangeargument.
2858a8fb5427SDaniel P. Berrange
2859fd4a5fd4SDaniel P. Berrange@option{tls-auth} provides the ID of the QAuthZ authorization object against
2860fd4a5fd4SDaniel P. Berrangewhich the client's x509 distinguished name will be validated. This object is
2861fd4a5fd4SDaniel P. Berrangeonly resolved at time of use, so can be deleted and recreated on the fly
2862fd4a5fd4SDaniel P. Berrangewhile the chardev server is active. If missing, it will default to denying
2863fd4a5fd4SDaniel P. Berrangeaccess.
2864fd4a5fd4SDaniel P. Berrange
28657273a2dbSMatthew BoothTCP and unix socket options are given below:
28667273a2dbSMatthew Booth
28677273a2dbSMatthew Booth@table @option
28687273a2dbSMatthew Booth
28698d533561SAurelien Jarno@item TCP options: port=@var{port}[,host=@var{host}][,to=@var{to}][,ipv4][,ipv6][,nodelay]
28707273a2dbSMatthew Booth
28717273a2dbSMatthew Booth@option{host} for a listening socket specifies the local address to be bound.
28727273a2dbSMatthew BoothFor a connecting socket species the remote host to connect to. @option{host} is
28737273a2dbSMatthew Boothoptional for listening sockets. If not specified it defaults to @code{0.0.0.0}.
28747273a2dbSMatthew Booth
28757273a2dbSMatthew Booth@option{port} for a listening socket specifies the local port to be bound. For a
28767273a2dbSMatthew Boothconnecting socket specifies the port on the remote host to connect to.
28777273a2dbSMatthew Booth@option{port} can be given as either a port number or a service name.
28787273a2dbSMatthew Booth@option{port} is required.
28797273a2dbSMatthew Booth
28807273a2dbSMatthew Booth@option{to} is only relevant to listening sockets. If it is specified, and
28817273a2dbSMatthew Booth@option{port} cannot be bound, QEMU will attempt to bind to subsequent ports up
28827273a2dbSMatthew Boothto and including @option{to} until it succeeds. @option{to} must be specified
28837273a2dbSMatthew Boothas a port number.
28847273a2dbSMatthew Booth
28857273a2dbSMatthew Booth@option{ipv4} and @option{ipv6} specify that either IPv4 or IPv6 must be used.
28867273a2dbSMatthew BoothIf neither is specified the socket may use either protocol.
28877273a2dbSMatthew Booth
28887273a2dbSMatthew Booth@option{nodelay} disables the Nagle algorithm.
28897273a2dbSMatthew Booth
28907273a2dbSMatthew Booth@item unix options: path=@var{path}
28917273a2dbSMatthew Booth
28927273a2dbSMatthew Booth@option{path} specifies the local path of the unix socket. @option{path} is
28937273a2dbSMatthew Boothrequired.
28947273a2dbSMatthew Booth
28957273a2dbSMatthew Booth@end table
28967273a2dbSMatthew Booth
28977273a2dbSMatthew Booth@item -chardev udp,id=@var{id}[,host=@var{host}],port=@var{port}[,localaddr=@var{localaddr}][,localport=@var{localport}][,ipv4][,ipv6]
28987273a2dbSMatthew Booth
28997273a2dbSMatthew BoothSends all traffic from the guest to a remote host over UDP.
29007273a2dbSMatthew Booth
29017273a2dbSMatthew Booth@option{host} specifies the remote host to connect to. If not specified it
29027273a2dbSMatthew Boothdefaults to @code{localhost}.
29037273a2dbSMatthew Booth
29047273a2dbSMatthew Booth@option{port} specifies the port on the remote host to connect to. @option{port}
29057273a2dbSMatthew Boothis required.
29067273a2dbSMatthew Booth
29077273a2dbSMatthew Booth@option{localaddr} specifies the local address to bind to. If not specified it
29087273a2dbSMatthew Boothdefaults to @code{0.0.0.0}.
29097273a2dbSMatthew Booth
29107273a2dbSMatthew Booth@option{localport} specifies the local port to bind to. If not specified any
29117273a2dbSMatthew Boothavailable local port will be used.
29127273a2dbSMatthew Booth
29137273a2dbSMatthew Booth@option{ipv4} and @option{ipv6} specify that either IPv4 or IPv6 must be used.
29147273a2dbSMatthew BoothIf neither is specified the device may use either protocol.
29157273a2dbSMatthew Booth
29167273a2dbSMatthew Booth@item -chardev msmouse,id=@var{id}
29177273a2dbSMatthew Booth
29187273a2dbSMatthew BoothForward QEMU's emulated msmouse events to the guest. @option{msmouse} does not
29197273a2dbSMatthew Boothtake any options.
29207273a2dbSMatthew Booth
29217273a2dbSMatthew Booth@item -chardev vc,id=@var{id}[[,width=@var{width}][,height=@var{height}]][[,cols=@var{cols}][,rows=@var{rows}]]
29227273a2dbSMatthew Booth
29237273a2dbSMatthew BoothConnect to a QEMU text console. @option{vc} may optionally be given a specific
29247273a2dbSMatthew Boothsize.
29257273a2dbSMatthew Booth
29267273a2dbSMatthew Booth@option{width} and @option{height} specify the width and height respectively of
29277273a2dbSMatthew Booththe console, in pixels.
29287273a2dbSMatthew Booth
29297273a2dbSMatthew Booth@option{cols} and @option{rows} specify that the console be sized to fit a text
29307273a2dbSMatthew Boothconsole with the given dimensions.
29317273a2dbSMatthew Booth
29324f57378fSMarkus Armbruster@item -chardev ringbuf,id=@var{id}[,size=@var{size}]
293351767e7cSLei Li
29343949e594SMarkus ArmbrusterCreate a ring buffer with fixed size @option{size}.
2935e69f7d25SStefan Hajnoczi@var{size} must be a power of two and defaults to @code{64K}.
293651767e7cSLei Li
29377273a2dbSMatthew Booth@item -chardev file,id=@var{id},path=@var{path}
29387273a2dbSMatthew Booth
29397273a2dbSMatthew BoothLog all traffic received from the guest to a file.
29407273a2dbSMatthew Booth
29417273a2dbSMatthew Booth@option{path} specifies the path of the file to be opened. This file will be
29427273a2dbSMatthew Boothcreated if it does not already exist, and overwritten if it does. @option{path}
29437273a2dbSMatthew Boothis required.
29447273a2dbSMatthew Booth
29457273a2dbSMatthew Booth@item -chardev pipe,id=@var{id},path=@var{path}
29467273a2dbSMatthew Booth
29477273a2dbSMatthew BoothCreate a two-way connection to the guest. The behaviour differs slightly between
29487273a2dbSMatthew BoothWindows hosts and other hosts:
29497273a2dbSMatthew Booth
29507273a2dbSMatthew BoothOn Windows, a single duplex pipe will be created at
29517273a2dbSMatthew Booth@file{\\.pipe\@option{path}}.
29527273a2dbSMatthew Booth
29537273a2dbSMatthew BoothOn other hosts, 2 pipes will be created called @file{@option{path}.in} and
29547273a2dbSMatthew Booth@file{@option{path}.out}. Data written to @file{@option{path}.in} will be
29557273a2dbSMatthew Boothreceived by the guest. Data written by the guest can be read from
29567273a2dbSMatthew Booth@file{@option{path}.out}. QEMU will not create these fifos, and requires them to
29577273a2dbSMatthew Boothbe present.
29587273a2dbSMatthew Booth
29597273a2dbSMatthew Booth@option{path} forms part of the pipe path as described above. @option{path} is
29607273a2dbSMatthew Boothrequired.
29617273a2dbSMatthew Booth
29627273a2dbSMatthew Booth@item -chardev console,id=@var{id}
29637273a2dbSMatthew Booth
29647273a2dbSMatthew BoothSend traffic from the guest to QEMU's standard output. @option{console} does not
29657273a2dbSMatthew Boothtake any options.
29667273a2dbSMatthew Booth
29677273a2dbSMatthew Booth@option{console} is only available on Windows hosts.
29687273a2dbSMatthew Booth
29697273a2dbSMatthew Booth@item -chardev serial,id=@var{id},path=@option{path}
29707273a2dbSMatthew Booth
29717273a2dbSMatthew BoothSend traffic from the guest to a serial device on the host.
29727273a2dbSMatthew Booth
2973d59044efSGerd HoffmannOn Unix hosts serial will actually accept any tty device,
2974d59044efSGerd Hoffmannnot only serial lines.
29757273a2dbSMatthew Booth
29767273a2dbSMatthew Booth@option{path} specifies the name of the serial device to open.
29777273a2dbSMatthew Booth
29787273a2dbSMatthew Booth@item -chardev pty,id=@var{id}
29797273a2dbSMatthew Booth
29807273a2dbSMatthew BoothCreate a new pseudo-terminal on the host and connect to it. @option{pty} does
29817273a2dbSMatthew Boothnot take any options.
29827273a2dbSMatthew Booth
29837273a2dbSMatthew Booth@option{pty} is not available on Windows hosts.
29847273a2dbSMatthew Booth
2985b7fdb3abSAurelien Jarno@item -chardev stdio,id=@var{id}[,signal=on|off]
2986b65ee4faSStefan WeilConnect to standard input and standard output of the QEMU process.
2987b7fdb3abSAurelien Jarno
2988b7fdb3abSAurelien Jarno@option{signal} controls if signals are enabled on the terminal, that includes
2989b7fdb3abSAurelien Jarnoexiting QEMU with the key sequence @key{Control-c}. This option is enabled by
2990b7fdb3abSAurelien Jarnodefault, use @option{signal=off} to disable it.
2991b7fdb3abSAurelien Jarno
29927273a2dbSMatthew Booth@item -chardev braille,id=@var{id}
29937273a2dbSMatthew Booth
29947273a2dbSMatthew BoothConnect to a local BrlAPI server. @option{braille} does not take any options.
29957273a2dbSMatthew Booth
29967273a2dbSMatthew Booth@item -chardev tty,id=@var{id},path=@var{path}
29977273a2dbSMatthew Booth
29987273a2dbSMatthew Booth@option{tty} is only available on Linux, Sun, FreeBSD, NetBSD, OpenBSD and
2999d037d6bbSMarkus ArmbrusterDragonFlyBSD hosts.  It is an alias for @option{serial}.
30007273a2dbSMatthew Booth
30017273a2dbSMatthew Booth@option{path} specifies the path to the tty. @option{path} is required.
30027273a2dbSMatthew Booth
300388a946d3SGerd Hoffmann@item -chardev parallel,id=@var{id},path=@var{path}
3004f9cfd655SMarkus Armbruster@itemx -chardev parport,id=@var{id},path=@var{path}
30057273a2dbSMatthew Booth
300688a946d3SGerd Hoffmann@option{parallel} is only available on Linux, FreeBSD and DragonFlyBSD hosts.
30077273a2dbSMatthew Booth
30087273a2dbSMatthew BoothConnect to a local parallel port.
30097273a2dbSMatthew Booth
30107273a2dbSMatthew Booth@option{path} specifies the path to the parallel port device. @option{path} is
30117273a2dbSMatthew Boothrequired.
30127273a2dbSMatthew Booth
3013cbcc6336SAlon Levy@item -chardev spicevmc,id=@var{id},debug=@var{debug},name=@var{name}
3014cbcc6336SAlon Levy
30153a846906SStefan Hajnoczi@option{spicevmc} is only available when spice support is built in.
30163a846906SStefan Hajnoczi
3017cbcc6336SAlon Levy@option{debug} debug level for spicevmc
3018cbcc6336SAlon Levy
3019cbcc6336SAlon Levy@option{name} name of spice channel to connect to
3020cbcc6336SAlon Levy
3021cbcc6336SAlon LevyConnect to a spice virtual machine channel, such as vdiport.
3022cbcc6336SAlon Levy
30235a49d3e9SMarc-André Lureau@item -chardev spiceport,id=@var{id},debug=@var{debug},name=@var{name}
30245a49d3e9SMarc-André Lureau
30255a49d3e9SMarc-André Lureau@option{spiceport} is only available when spice support is built in.
30265a49d3e9SMarc-André Lureau
30275a49d3e9SMarc-André Lureau@option{debug} debug level for spicevmc
30285a49d3e9SMarc-André Lureau
30295a49d3e9SMarc-André Lureau@option{name} name of spice port to connect to
30305a49d3e9SMarc-André Lureau
30315a49d3e9SMarc-André LureauConnect to a spice port, allowing a Spice client to handle the traffic
30325a49d3e9SMarc-André Lureauidentified by a name (preferably a fqdn).
30337273a2dbSMatthew BoothETEXI
30347273a2dbSMatthew Booth
3035c70a01e4SMarkus ArmbrusterSTEXI
3036c70a01e4SMarkus Armbruster@end table
3037c70a01e4SMarkus ArmbrusterETEXI
30387273a2dbSMatthew BoothDEFHEADING()
30397273a2dbSMatthew Booth
3040de6b4f90SMarkus ArmbrusterDEFHEADING(Bluetooth(R) options:)
3041c70a01e4SMarkus ArmbrusterSTEXI
3042c70a01e4SMarkus Armbruster@table @option
3043c70a01e4SMarkus ArmbrusterETEXI
30447273a2dbSMatthew Booth
30455824d651Sblueswir1DEF("bt", HAS_ARG, QEMU_OPTION_bt, \
30465824d651Sblueswir1    "-bt hci,null    dumb bluetooth HCI - doesn't respond to commands\n" \
30475824d651Sblueswir1    "-bt hci,host[:id]\n" \
30485824d651Sblueswir1    "                use host's HCI with the given name\n" \
30495824d651Sblueswir1    "-bt hci[,vlan=n]\n" \
30505824d651Sblueswir1    "                emulate a standard HCI in virtual scatternet 'n'\n" \
30515824d651Sblueswir1    "-bt vhci[,vlan=n]\n" \
30525824d651Sblueswir1    "                add host computer to virtual scatternet 'n' using VHCI\n" \
30535824d651Sblueswir1    "-bt device:dev[,vlan=n]\n" \
3054ad96090aSBlue Swirl    "                emulate a bluetooth device 'dev' in scatternet 'n'\n",
3055ad96090aSBlue Swirl    QEMU_ARCH_ALL)
30565824d651Sblueswir1STEXI
30575824d651Sblueswir1@item -bt hci[...]
30586616b2adSStefan Weil@findex -bt
30595824d651Sblueswir1Defines the function of the corresponding Bluetooth HCI.  -bt options
30605824d651Sblueswir1are matched with the HCIs present in the chosen machine type.  For
30615824d651Sblueswir1example when emulating a machine with only one HCI built into it, only
30625824d651Sblueswir1the first @code{-bt hci[...]} option is valid and defines the HCI's
30635824d651Sblueswir1logic.  The Transport Layer is decided by the machine type.  Currently
30645824d651Sblueswir1the machines @code{n800} and @code{n810} have one HCI and all other
30655824d651Sblueswir1machines have none.
30665824d651Sblueswir1
3067c0188e69SThomas HuthNote: This option and the whole bluetooth subsystem is considered as deprecated.
3068c0188e69SThomas HuthIf you still use it, please send a mail to @email{qemu-devel@@nongnu.org} where
3069c0188e69SThomas Huthyou describe your usecase.
3070c0188e69SThomas Huth
30715824d651Sblueswir1@anchor{bt-hcis}
30725824d651Sblueswir1The following three types are recognized:
30735824d651Sblueswir1
3074b3f046c2SKevin Wolf@table @option
30755824d651Sblueswir1@item -bt hci,null
30765824d651Sblueswir1(default) The corresponding Bluetooth HCI assumes no internal logic
30775824d651Sblueswir1and will not respond to any HCI commands or emit events.
30785824d651Sblueswir1
30795824d651Sblueswir1@item -bt hci,host[:@var{id}]
30805824d651Sblueswir1(@code{bluez} only) The corresponding HCI passes commands / events
30815824d651Sblueswir1to / from the physical HCI identified by the name @var{id} (default:
30825824d651Sblueswir1@code{hci0}) on the computer running QEMU.  Only available on @code{bluez}
30835824d651Sblueswir1capable systems like Linux.
30845824d651Sblueswir1
30855824d651Sblueswir1@item -bt hci[,vlan=@var{n}]
30865824d651Sblueswir1Add a virtual, standard HCI that will participate in the Bluetooth
30875824d651Sblueswir1scatternet @var{n} (default @code{0}).  Similarly to @option{-net}
30885824d651Sblueswir1VLANs, devices inside a bluetooth network @var{n} can only communicate
30895824d651Sblueswir1with other devices in the same network (scatternet).
30905824d651Sblueswir1@end table
30915824d651Sblueswir1
30925824d651Sblueswir1@item -bt vhci[,vlan=@var{n}]
30935824d651Sblueswir1(Linux-host only) Create a HCI in scatternet @var{n} (default 0) attached
30945824d651Sblueswir1to the host bluetooth stack instead of to the emulated target.  This
30955824d651Sblueswir1allows the host and target machines to participate in a common scatternet
30965824d651Sblueswir1and communicate.  Requires the Linux @code{vhci} driver installed.  Can
30975824d651Sblueswir1be used as following:
30985824d651Sblueswir1
30995824d651Sblueswir1@example
31003804da9dSStefan Weilqemu-system-i386 [...OPTIONS...] -bt hci,vlan=5 -bt vhci,vlan=5
31015824d651Sblueswir1@end example
31025824d651Sblueswir1
31035824d651Sblueswir1@item -bt device:@var{dev}[,vlan=@var{n}]
31045824d651Sblueswir1Emulate a bluetooth device @var{dev} and place it in network @var{n}
31055824d651Sblueswir1(default @code{0}).  QEMU can only emulate one type of bluetooth devices
31065824d651Sblueswir1currently:
31075824d651Sblueswir1
3108b3f046c2SKevin Wolf@table @option
31095824d651Sblueswir1@item keyboard
31105824d651Sblueswir1Virtual wireless keyboard implementing the HIDP bluetooth profile.
31115824d651Sblueswir1@end table
31125824d651Sblueswir1ETEXI
31135824d651Sblueswir1
3114c70a01e4SMarkus ArmbrusterSTEXI
3115c70a01e4SMarkus Armbruster@end table
3116c70a01e4SMarkus ArmbrusterETEXI
31175824d651Sblueswir1DEFHEADING()
31185824d651Sblueswir1
3119d1a0cf73SStefan Berger#ifdef CONFIG_TPM
3120de6b4f90SMarkus ArmbrusterDEFHEADING(TPM device options:)
3121d1a0cf73SStefan Berger
3122d1a0cf73SStefan BergerDEF("tpmdev", HAS_ARG, QEMU_OPTION_tpmdev, \
312392dcc234SStefan Berger    "-tpmdev passthrough,id=id[,path=path][,cancel-path=path]\n"
312492dcc234SStefan Berger    "                use path to provide path to a character device; default is /dev/tpm0\n"
312592dcc234SStefan Berger    "                use cancel-path to provide path to TPM's cancel sysfs entry; if\n"
3126f4ede81eSAmarnath Valluri    "                not provided it will be searched for in /sys/class/misc/tpm?/device\n"
3127f4ede81eSAmarnath Valluri    "-tpmdev emulator,id=id,chardev=dev\n"
3128f4ede81eSAmarnath Valluri    "                configure the TPM device using chardev backend\n",
3129d1a0cf73SStefan Berger    QEMU_ARCH_ALL)
3130d1a0cf73SStefan BergerSTEXI
3131d1a0cf73SStefan Berger
3132d1a0cf73SStefan BergerThe general form of a TPM device option is:
3133d1a0cf73SStefan Berger@table @option
3134d1a0cf73SStefan Berger
3135d1a0cf73SStefan Berger@item -tpmdev @var{backend},id=@var{id}[,@var{options}]
3136d1a0cf73SStefan Berger@findex -tpmdev
3137d1a0cf73SStefan Berger
3138d1a0cf73SStefan BergerThe specific backend type will determine the applicable options.
313928c4fa32SCorey BryantThe @code{-tpmdev} option creates the TPM backend and requires a
314028c4fa32SCorey Bryant@code{-device} option that specifies the TPM frontend interface model.
3141d1a0cf73SStefan Berger
31422252aaf0SMarkus ArmbrusterUse @code{-tpmdev help} to print all available TPM backend types.
3143d1a0cf73SStefan Berger
31442252aaf0SMarkus Armbruster@end table
31452252aaf0SMarkus Armbruster
31462252aaf0SMarkus ArmbrusterThe available backends are:
31472252aaf0SMarkus Armbruster
31482252aaf0SMarkus Armbruster@table @option
3149d1a0cf73SStefan Berger
315092dcc234SStefan Berger@item -tpmdev passthrough,id=@var{id},path=@var{path},cancel-path=@var{cancel-path}
31514549a8b7SStefan Berger
31524549a8b7SStefan Berger(Linux-host only) Enable access to the host's TPM using the passthrough
31534549a8b7SStefan Bergerdriver.
31544549a8b7SStefan Berger
31554549a8b7SStefan Berger@option{path} specifies the path to the host's TPM device, i.e., on
31564549a8b7SStefan Bergera Linux host this would be @code{/dev/tpm0}.
31574549a8b7SStefan Berger@option{path} is optional and by default @code{/dev/tpm0} is used.
31584549a8b7SStefan Berger
315992dcc234SStefan Berger@option{cancel-path} specifies the path to the host TPM device's sysfs
316092dcc234SStefan Bergerentry allowing for cancellation of an ongoing TPM command.
316192dcc234SStefan Berger@option{cancel-path} is optional and by default QEMU will search for the
316292dcc234SStefan Bergersysfs entry to use.
316392dcc234SStefan Berger
31644549a8b7SStefan BergerSome notes about using the host's TPM with the passthrough driver:
31654549a8b7SStefan Berger
31664549a8b7SStefan BergerThe TPM device accessed by the passthrough driver must not be
31674549a8b7SStefan Bergerused by any other application on the host.
31684549a8b7SStefan Berger
31694549a8b7SStefan BergerSince the host's firmware (BIOS/UEFI) has already initialized the TPM,
31704549a8b7SStefan Bergerthe VM's firmware (BIOS/UEFI) will not be able to initialize the
31714549a8b7SStefan BergerTPM again and may therefore not show a TPM-specific menu that would
31724549a8b7SStefan Bergerotherwise allow the user to configure the TPM, e.g., allow the user to
31734549a8b7SStefan Bergerenable/disable or activate/deactivate the TPM.
31744549a8b7SStefan BergerFurther, if TPM ownership is released from within a VM then the host's TPM
31754549a8b7SStefan Bergerwill get disabled and deactivated. To enable and activate the
31764549a8b7SStefan BergerTPM again afterwards, the host has to be rebooted and the user is
31774549a8b7SStefan Bergerrequired to enter the firmware's menu to enable and activate the TPM.
31784549a8b7SStefan BergerIf the TPM is left disabled and/or deactivated most TPM commands will fail.
31794549a8b7SStefan Berger
31804549a8b7SStefan BergerTo create a passthrough TPM use the following two options:
31814549a8b7SStefan Berger@example
31824549a8b7SStefan Berger-tpmdev passthrough,id=tpm0 -device tpm-tis,tpmdev=tpm0
31834549a8b7SStefan Berger@end example
31844549a8b7SStefan BergerNote that the @code{-tpmdev} id is @code{tpm0} and is referenced by
31854549a8b7SStefan Berger@code{tpmdev=tpm0} in the device option.
31864549a8b7SStefan Berger
3187f4ede81eSAmarnath Valluri@item -tpmdev emulator,id=@var{id},chardev=@var{dev}
3188f4ede81eSAmarnath Valluri
3189f4ede81eSAmarnath Valluri(Linux-host only) Enable access to a TPM emulator using Unix domain socket based
3190f4ede81eSAmarnath Vallurichardev backend.
3191f4ede81eSAmarnath Valluri
3192f4ede81eSAmarnath Valluri@option{chardev} specifies the unique ID of a character device backend that provides connection to the software TPM server.
3193f4ede81eSAmarnath Valluri
3194f4ede81eSAmarnath ValluriTo create a TPM emulator backend device with chardev socket backend:
3195f4ede81eSAmarnath Valluri@example
3196f4ede81eSAmarnath Valluri
3197f4ede81eSAmarnath Valluri-chardev socket,id=chrtpm,path=/tmp/swtpm-sock -tpmdev emulator,id=tpm0,chardev=chrtpm -device tpm-tis,tpmdev=tpm0
3198f4ede81eSAmarnath Valluri
3199f4ede81eSAmarnath Valluri@end example
3200f4ede81eSAmarnath Valluri
3201d1a0cf73SStefan BergerETEXI
3202d1a0cf73SStefan Berger
32032252aaf0SMarkus ArmbrusterSTEXI
32042252aaf0SMarkus Armbruster@end table
32052252aaf0SMarkus ArmbrusterETEXI
3206d1a0cf73SStefan BergerDEFHEADING()
3207d1a0cf73SStefan Berger
3208d1a0cf73SStefan Berger#endif
3209d1a0cf73SStefan Berger
3210de6b4f90SMarkus ArmbrusterDEFHEADING(Linux/Multiboot boot specific:)
32115824d651Sblueswir1STEXI
32127677f05dSAlexander Graf
32137677f05dSAlexander GrafWhen using these options, you can use a given Linux or Multiboot
32147677f05dSAlexander Grafkernel without installing it in the disk image. It can be useful
32155824d651Sblueswir1for easier testing of various kernels.
32165824d651Sblueswir1
32175824d651Sblueswir1@table @option
32185824d651Sblueswir1ETEXI
32195824d651Sblueswir1
32205824d651Sblueswir1DEF("kernel", HAS_ARG, QEMU_OPTION_kernel, \
3221ad96090aSBlue Swirl    "-kernel bzImage use 'bzImage' as kernel image\n", QEMU_ARCH_ALL)
32225824d651Sblueswir1STEXI
32235824d651Sblueswir1@item -kernel @var{bzImage}
32246616b2adSStefan Weil@findex -kernel
32257677f05dSAlexander GrafUse @var{bzImage} as kernel image. The kernel can be either a Linux kernel
32267677f05dSAlexander Grafor in multiboot format.
32275824d651Sblueswir1ETEXI
32285824d651Sblueswir1
32295824d651Sblueswir1DEF("append", HAS_ARG, QEMU_OPTION_append, \
3230ad96090aSBlue Swirl    "-append cmdline use 'cmdline' as kernel command line\n", QEMU_ARCH_ALL)
32315824d651Sblueswir1STEXI
32325824d651Sblueswir1@item -append @var{cmdline}
32336616b2adSStefan Weil@findex -append
32345824d651Sblueswir1Use @var{cmdline} as kernel command line
32355824d651Sblueswir1ETEXI
32365824d651Sblueswir1
32375824d651Sblueswir1DEF("initrd", HAS_ARG, QEMU_OPTION_initrd, \
3238ad96090aSBlue Swirl           "-initrd file    use 'file' as initial ram disk\n", QEMU_ARCH_ALL)
32395824d651Sblueswir1STEXI
32405824d651Sblueswir1@item -initrd @var{file}
32416616b2adSStefan Weil@findex -initrd
32425824d651Sblueswir1Use @var{file} as initial ram disk.
32437677f05dSAlexander Graf
32447677f05dSAlexander Graf@item -initrd "@var{file1} arg=foo,@var{file2}"
32457677f05dSAlexander Graf
32467677f05dSAlexander GrafThis syntax is only available with multiboot.
32477677f05dSAlexander Graf
32487677f05dSAlexander GrafUse @var{file1} and @var{file2} as modules and pass arg=foo as parameter to the
32497677f05dSAlexander Graffirst module.
32505824d651Sblueswir1ETEXI
32515824d651Sblueswir1
3252412beee6SGrant LikelyDEF("dtb", HAS_ARG, QEMU_OPTION_dtb, \
3253379b5c7cSPeter A. G. Crosthwaite    "-dtb    file    use 'file' as device tree image\n", QEMU_ARCH_ALL)
3254412beee6SGrant LikelySTEXI
3255412beee6SGrant Likely@item -dtb @var{file}
3256412beee6SGrant Likely@findex -dtb
3257412beee6SGrant LikelyUse @var{file} as a device tree binary (dtb) image and pass it to the kernel
3258412beee6SGrant Likelyon boot.
3259412beee6SGrant LikelyETEXI
3260412beee6SGrant Likely
32615824d651Sblueswir1STEXI
32625824d651Sblueswir1@end table
32635824d651Sblueswir1ETEXI
32645824d651Sblueswir1DEFHEADING()
32655824d651Sblueswir1
3266de6b4f90SMarkus ArmbrusterDEFHEADING(Debug/Expert options:)
32675824d651Sblueswir1STEXI
32685824d651Sblueswir1@table @option
32695824d651Sblueswir1ETEXI
32705824d651Sblueswir1
327181b2b810SGabriel L. SomloDEF("fw_cfg", HAS_ARG, QEMU_OPTION_fwcfg,
327281b2b810SGabriel L. Somlo    "-fw_cfg [name=]<name>,file=<file>\n"
327363d3145aSMarkus Armbruster    "                add named fw_cfg entry with contents from file\n"
32746407d76eSGabriel L. Somlo    "-fw_cfg [name=]<name>,string=<str>\n"
327563d3145aSMarkus Armbruster    "                add named fw_cfg entry with contents from string\n",
327681b2b810SGabriel L. Somlo    QEMU_ARCH_ALL)
327781b2b810SGabriel L. SomloSTEXI
327863d3145aSMarkus Armbruster
327981b2b810SGabriel L. Somlo@item -fw_cfg [name=]@var{name},file=@var{file}
328081b2b810SGabriel L. Somlo@findex -fw_cfg
328163d3145aSMarkus ArmbrusterAdd named fw_cfg entry with contents from file @var{file}.
32826407d76eSGabriel L. Somlo
32836407d76eSGabriel L. Somlo@item -fw_cfg [name=]@var{name},string=@var{str}
328463d3145aSMarkus ArmbrusterAdd named fw_cfg entry with contents from string @var{str}.
328563d3145aSMarkus Armbruster
328663d3145aSMarkus ArmbrusterThe terminating NUL character of the contents of @var{str} will not be
328763d3145aSMarkus Armbrusterincluded as part of the fw_cfg item data. To insert contents with
328863d3145aSMarkus Armbrusterembedded NUL characters, you have to use the @var{file} parameter.
328963d3145aSMarkus Armbruster
329063d3145aSMarkus ArmbrusterThe fw_cfg entries are passed by QEMU through to the guest.
329163d3145aSMarkus Armbruster
329263d3145aSMarkus ArmbrusterExample:
329363d3145aSMarkus Armbruster@example
329463d3145aSMarkus Armbruster    -fw_cfg name=opt/com.mycompany/blob,file=./my_blob.bin
329563d3145aSMarkus Armbruster@end example
329663d3145aSMarkus Armbrustercreates an fw_cfg entry named opt/com.mycompany/blob with contents
329763d3145aSMarkus Armbrusterfrom ./my_blob.bin.
329863d3145aSMarkus Armbruster
329981b2b810SGabriel L. SomloETEXI
330081b2b810SGabriel L. Somlo
33015824d651Sblueswir1DEF("serial", HAS_ARG, QEMU_OPTION_serial, \
3302ad96090aSBlue Swirl    "-serial dev     redirect the serial port to char device 'dev'\n",
3303ad96090aSBlue Swirl    QEMU_ARCH_ALL)
33045824d651Sblueswir1STEXI
33055824d651Sblueswir1@item -serial @var{dev}
33066616b2adSStefan Weil@findex -serial
33075824d651Sblueswir1Redirect the virtual serial port to host character device
33085824d651Sblueswir1@var{dev}. The default device is @code{vc} in graphical mode and
33095824d651Sblueswir1@code{stdio} in non graphical mode.
33105824d651Sblueswir1
33115824d651Sblueswir1This option can be used several times to simulate up to 4 serial
33125824d651Sblueswir1ports.
33135824d651Sblueswir1
33145824d651Sblueswir1Use @code{-serial none} to disable all serial ports.
33155824d651Sblueswir1
33165824d651Sblueswir1Available character devices are:
3317b3f046c2SKevin Wolf@table @option
33184e257e5eSKevin Wolf@item vc[:@var{W}x@var{H}]
33195824d651Sblueswir1Virtual console. Optionally, a width and height can be given in pixel with
33205824d651Sblueswir1@example
33215824d651Sblueswir1vc:800x600
33225824d651Sblueswir1@end example
33235824d651Sblueswir1It is also possible to specify width or height in characters:
33245824d651Sblueswir1@example
33255824d651Sblueswir1vc:80Cx24C
33265824d651Sblueswir1@end example
33275824d651Sblueswir1@item pty
33285824d651Sblueswir1[Linux only] Pseudo TTY (a new PTY is automatically allocated)
33295824d651Sblueswir1@item none
33305824d651Sblueswir1No device is allocated.
33315824d651Sblueswir1@item null
33325824d651Sblueswir1void device
333388e020e5SIngo van Lil@item chardev:@var{id}
333488e020e5SIngo van LilUse a named character device defined with the @code{-chardev} option.
33355824d651Sblueswir1@item /dev/XXX
33365824d651Sblueswir1[Linux only] Use host tty, e.g. @file{/dev/ttyS0}. The host serial port
33375824d651Sblueswir1parameters are set according to the emulated ones.
33385824d651Sblueswir1@item /dev/parport@var{N}
33395824d651Sblueswir1[Linux only, parallel port only] Use host parallel port
33405824d651Sblueswir1@var{N}. Currently SPP and EPP parallel port features can be used.
33415824d651Sblueswir1@item file:@var{filename}
33425824d651Sblueswir1Write output to @var{filename}. No character can be read.
33435824d651Sblueswir1@item stdio
33445824d651Sblueswir1[Unix only] standard input/output
33455824d651Sblueswir1@item pipe:@var{filename}
33465824d651Sblueswir1name pipe @var{filename}
33475824d651Sblueswir1@item COM@var{n}
33485824d651Sblueswir1[Windows only] Use host serial port @var{n}
33495824d651Sblueswir1@item udp:[@var{remote_host}]:@var{remote_port}[@@[@var{src_ip}]:@var{src_port}]
33505824d651Sblueswir1This implements UDP Net Console.
33515824d651Sblueswir1When @var{remote_host} or @var{src_ip} are not specified
33525824d651Sblueswir1they default to @code{0.0.0.0}.
33535824d651Sblueswir1When not using a specified @var{src_port} a random port is automatically chosen.
33545824d651Sblueswir1
33555824d651Sblueswir1If you just want a simple readonly console you can use @code{netcat} or
3356b65ee4faSStefan Weil@code{nc}, by starting QEMU with: @code{-serial udp::4555} and nc as:
3357b65ee4faSStefan Weil@code{nc -u -l -p 4555}. Any time QEMU writes something to that port it
33585824d651Sblueswir1will appear in the netconsole session.
33595824d651Sblueswir1
33605824d651Sblueswir1If you plan to send characters back via netconsole or you want to stop
3361b65ee4faSStefan Weiland start QEMU a lot of times, you should have QEMU use the same
33625824d651Sblueswir1source port each time by using something like @code{-serial
3363b65ee4faSStefan Weiludp::4555@@:4556} to QEMU. Another approach is to use a patched
33645824d651Sblueswir1version of netcat which can listen to a TCP port and send and receive
33655824d651Sblueswir1characters via udp.  If you have a patched version of netcat which
33665824d651Sblueswir1activates telnet remote echo and single char transfer, then you can
3367bd1caa3fSMarc-André Lureauuse the following options to set up a netcat redirector to allow
3368b65ee4faSStefan Weiltelnet on port 5555 to access the QEMU port.
33695824d651Sblueswir1@table @code
3370071c9394SStefan Weil@item QEMU Options:
33715824d651Sblueswir1-serial udp::4555@@:4556
33725824d651Sblueswir1@item netcat options:
33735824d651Sblueswir1-u -P 4555 -L 0.0.0.0:4556 -t -p 5555 -I -T
33745824d651Sblueswir1@item telnet options:
33755824d651Sblueswir1localhost 5555
33765824d651Sblueswir1@end table
33775824d651Sblueswir1
33785dd1f02bSCorey Minyard@item tcp:[@var{host}]:@var{port}[,@var{server}][,nowait][,nodelay][,reconnect=@var{seconds}]
33795824d651Sblueswir1The TCP Net Console has two modes of operation.  It can send the serial
33805824d651Sblueswir1I/O to a location or wait for a connection from a location.  By default
33815824d651Sblueswir1the TCP Net Console is sent to @var{host} at the @var{port}.  If you use
33825824d651Sblueswir1the @var{server} option QEMU will wait for a client socket application
33835824d651Sblueswir1to connect to the port before continuing, unless the @code{nowait}
33845824d651Sblueswir1option was specified.  The @code{nodelay} option disables the Nagle buffering
33855dd1f02bSCorey Minyardalgorithm.  The @code{reconnect} option only applies if @var{noserver} is
33865dd1f02bSCorey Minyardset, if the connection goes down it will attempt to reconnect at the
33875dd1f02bSCorey Minyardgiven interval.  If @var{host} is omitted, 0.0.0.0 is assumed. Only
33885824d651Sblueswir1one TCP connection at a time is accepted. You can use @code{telnet} to
33895824d651Sblueswir1connect to the corresponding character device.
33905824d651Sblueswir1@table @code
33915824d651Sblueswir1@item Example to send tcp console to 192.168.0.2 port 4444
33925824d651Sblueswir1-serial tcp:192.168.0.2:4444
33935824d651Sblueswir1@item Example to listen and wait on port 4444 for connection
33945824d651Sblueswir1-serial tcp::4444,server
33955824d651Sblueswir1@item Example to not wait and listen on ip 192.168.0.100 port 4444
33965824d651Sblueswir1-serial tcp:192.168.0.100:4444,server,nowait
33975824d651Sblueswir1@end table
33985824d651Sblueswir1
33995824d651Sblueswir1@item telnet:@var{host}:@var{port}[,server][,nowait][,nodelay]
34005824d651Sblueswir1The telnet protocol is used instead of raw tcp sockets.  The options
34015824d651Sblueswir1work the same as if you had specified @code{-serial tcp}.  The
34025824d651Sblueswir1difference is that the port acts like a telnet server or client using
34035824d651Sblueswir1telnet option negotiation.  This will also allow you to send the
34045824d651Sblueswir1MAGIC_SYSRQ sequence if you use a telnet that supports sending the break
34055824d651Sblueswir1sequence.  Typically in unix telnet you do it with Control-] and then
34065824d651Sblueswir1type "send break" followed by pressing the enter key.
34075824d651Sblueswir1
3408981b06e7SJulia Suvorova@item websocket:@var{host}:@var{port},server[,nowait][,nodelay]
3409981b06e7SJulia SuvorovaThe WebSocket protocol is used instead of raw tcp socket. The port acts as
3410981b06e7SJulia Suvorovaa WebSocket server. Client mode is not supported.
3411981b06e7SJulia Suvorova
34125dd1f02bSCorey Minyard@item unix:@var{path}[,server][,nowait][,reconnect=@var{seconds}]
34135824d651Sblueswir1A unix domain socket is used instead of a tcp socket.  The option works the
34145824d651Sblueswir1same as if you had specified @code{-serial tcp} except the unix domain socket
34155824d651Sblueswir1@var{path} is used for connections.
34165824d651Sblueswir1
34175824d651Sblueswir1@item mon:@var{dev_string}
34185824d651Sblueswir1This is a special option to allow the monitor to be multiplexed onto
34195824d651Sblueswir1another serial port.  The monitor is accessed with key sequence of
342002c4bdf1SPaolo Bonzini@key{Control-a} and then pressing @key{c}.
34215824d651Sblueswir1@var{dev_string} should be any one of the serial devices specified
34225824d651Sblueswir1above.  An example to multiplex the monitor onto a telnet server
34235824d651Sblueswir1listening on port 4444 would be:
34245824d651Sblueswir1@table @code
34255824d651Sblueswir1@item -serial mon:telnet::4444,server,nowait
34265824d651Sblueswir1@end table
3427be022d61SMichael TokarevWhen the monitor is multiplexed to stdio in this way, Ctrl+C will not terminate
342802c4bdf1SPaolo BonziniQEMU any more but will be passed to the guest instead.
34295824d651Sblueswir1
34305824d651Sblueswir1@item braille
34315824d651Sblueswir1Braille device.  This will use BrlAPI to display the braille output on a real
34325824d651Sblueswir1or fake device.
34335824d651Sblueswir1
3434be8b28a9SKevin Wolf@item msmouse
3435be8b28a9SKevin WolfThree button serial mouse. Configure the guest to use Microsoft protocol.
34365824d651Sblueswir1@end table
34375824d651Sblueswir1ETEXI
34385824d651Sblueswir1
34395824d651Sblueswir1DEF("parallel", HAS_ARG, QEMU_OPTION_parallel, \
3440ad96090aSBlue Swirl    "-parallel dev   redirect the parallel port to char device 'dev'\n",
3441ad96090aSBlue Swirl    QEMU_ARCH_ALL)
34425824d651Sblueswir1STEXI
34435824d651Sblueswir1@item -parallel @var{dev}
34446616b2adSStefan Weil@findex -parallel
34455824d651Sblueswir1Redirect the virtual parallel port to host device @var{dev} (same
34465824d651Sblueswir1devices as the serial port). On Linux hosts, @file{/dev/parportN} can
34475824d651Sblueswir1be used to use hardware devices connected on the corresponding host
34485824d651Sblueswir1parallel port.
34495824d651Sblueswir1
34505824d651Sblueswir1This option can be used several times to simulate up to 3 parallel
34515824d651Sblueswir1ports.
34525824d651Sblueswir1
34535824d651Sblueswir1Use @code{-parallel none} to disable all parallel ports.
34545824d651Sblueswir1ETEXI
34555824d651Sblueswir1
34565824d651Sblueswir1DEF("monitor", HAS_ARG, QEMU_OPTION_monitor, \
3457ad96090aSBlue Swirl    "-monitor dev    redirect the monitor to char device 'dev'\n",
3458ad96090aSBlue Swirl    QEMU_ARCH_ALL)
34595824d651Sblueswir1STEXI
34604e307fc8SGerd Hoffmann@item -monitor @var{dev}
34616616b2adSStefan Weil@findex -monitor
34625824d651Sblueswir1Redirect the monitor to host device @var{dev} (same devices as the
34635824d651Sblueswir1serial port).
34645824d651Sblueswir1The default device is @code{vc} in graphical mode and @code{stdio} in
34655824d651Sblueswir1non graphical mode.
346670e098afSLuiz CapitulinoUse @code{-monitor none} to disable the default monitor.
34675824d651Sblueswir1ETEXI
34686ca5582dSGerd HoffmannDEF("qmp", HAS_ARG, QEMU_OPTION_qmp, \
3469ad96090aSBlue Swirl    "-qmp dev        like -monitor but opens in 'control' mode\n",
3470ad96090aSBlue Swirl    QEMU_ARCH_ALL)
347195d5f08bSStefan WeilSTEXI
347295d5f08bSStefan Weil@item -qmp @var{dev}
34736616b2adSStefan Weil@findex -qmp
347495d5f08bSStefan WeilLike -monitor but opens in 'control' mode.
347595d5f08bSStefan WeilETEXI
34764821cd4cSMax ReitzDEF("qmp-pretty", HAS_ARG, QEMU_OPTION_qmp_pretty, \
34774821cd4cSMax Reitz    "-qmp-pretty dev like -qmp but uses pretty JSON formatting\n",
34784821cd4cSMax Reitz    QEMU_ARCH_ALL)
34794821cd4cSMax ReitzSTEXI
34804821cd4cSMax Reitz@item -qmp-pretty @var{dev}
34814821cd4cSMax Reitz@findex -qmp-pretty
34824821cd4cSMax ReitzLike -qmp but uses pretty JSON formatting.
34834821cd4cSMax ReitzETEXI
34845824d651Sblueswir1
348522a0e04bSGerd HoffmannDEF("mon", HAS_ARG, QEMU_OPTION_mon, \
3486ef670726SVicente Jimenez Aguilar    "-mon [chardev=]name[,mode=readline|control][,pretty[=on|off]]\n", QEMU_ARCH_ALL)
348722a0e04bSGerd HoffmannSTEXI
3488ef670726SVicente Jimenez Aguilar@item -mon [chardev=]name[,mode=readline|control][,pretty[=on|off]]
34896616b2adSStefan Weil@findex -mon
3490ef670726SVicente Jimenez AguilarSetup monitor on chardev @var{name}. @code{pretty} turns on JSON pretty printing
3491ef670726SVicente Jimenez Aguilareasing human reading and debugging.
349222a0e04bSGerd HoffmannETEXI
349322a0e04bSGerd Hoffmann
3494c9f398e5SH. Peter AnvinDEF("debugcon", HAS_ARG, QEMU_OPTION_debugcon, \
3495ad96090aSBlue Swirl    "-debugcon dev   redirect the debug console to char device 'dev'\n",
3496ad96090aSBlue Swirl    QEMU_ARCH_ALL)
3497c9f398e5SH. Peter AnvinSTEXI
3498c9f398e5SH. Peter Anvin@item -debugcon @var{dev}
34996616b2adSStefan Weil@findex -debugcon
3500c9f398e5SH. Peter AnvinRedirect the debug console to host device @var{dev} (same devices as the
3501c9f398e5SH. Peter Anvinserial port).  The debug console is an I/O port which is typically port
3502c9f398e5SH. Peter Anvin0xe9; writing to that I/O port sends output to this device.
3503c9f398e5SH. Peter AnvinThe default device is @code{vc} in graphical mode and @code{stdio} in
3504c9f398e5SH. Peter Anvinnon graphical mode.
3505c9f398e5SH. Peter AnvinETEXI
3506c9f398e5SH. Peter Anvin
35075824d651Sblueswir1DEF("pidfile", HAS_ARG, QEMU_OPTION_pidfile, \
3508ad96090aSBlue Swirl    "-pidfile file   write PID to 'file'\n", QEMU_ARCH_ALL)
35095824d651Sblueswir1STEXI
35105824d651Sblueswir1@item -pidfile @var{file}
35116616b2adSStefan Weil@findex -pidfile
35125824d651Sblueswir1Store the QEMU process PID in @var{file}. It is useful if you launch QEMU
35135824d651Sblueswir1from a script.
35145824d651Sblueswir1ETEXI
35155824d651Sblueswir1
35161b530a6dSaurel32DEF("singlestep", 0, QEMU_OPTION_singlestep, \
3517ad96090aSBlue Swirl    "-singlestep     always run in singlestep mode\n", QEMU_ARCH_ALL)
35181b530a6dSaurel32STEXI
35191b530a6dSaurel32@item -singlestep
35206616b2adSStefan Weil@findex -singlestep
35211b530a6dSaurel32Run the emulation in single step mode.
35221b530a6dSaurel32ETEXI
35231b530a6dSaurel32
3524047f7038SIgor MammedovDEF("preconfig", 0, QEMU_OPTION_preconfig, \
3525361ac948SMarkus Armbruster    "--preconfig     pause QEMU before machine is initialized (experimental)\n",
3526047f7038SIgor Mammedov    QEMU_ARCH_ALL)
3527047f7038SIgor MammedovSTEXI
3528047f7038SIgor Mammedov@item --preconfig
3529047f7038SIgor Mammedov@findex --preconfig
3530047f7038SIgor MammedovPause QEMU for interactive configuration before the machine is created,
3531047f7038SIgor Mammedovwhich allows querying and configuring properties that will affect
3532361ac948SMarkus Armbrustermachine initialization.  Use QMP command 'x-exit-preconfig' to exit
3533361ac948SMarkus Armbrusterthe preconfig state and move to the next state (i.e. run guest if -S
3534361ac948SMarkus Armbrusterisn't used or pause the second time if -S is used).  This option is
3535361ac948SMarkus Armbrusterexperimental.
3536047f7038SIgor MammedovETEXI
3537047f7038SIgor Mammedov
35385824d651Sblueswir1DEF("S", 0, QEMU_OPTION_S, \
3539ad96090aSBlue Swirl    "-S              freeze CPU at startup (use 'c' to start execution)\n",
3540ad96090aSBlue Swirl    QEMU_ARCH_ALL)
35415824d651Sblueswir1STEXI
35425824d651Sblueswir1@item -S
35436616b2adSStefan Weil@findex -S
35445824d651Sblueswir1Do not start CPU at startup (you must type 'c' in the monitor).
35455824d651Sblueswir1ETEXI
35465824d651Sblueswir1
3547888a6bc6SSatoru MoriyaDEF("realtime", HAS_ARG, QEMU_OPTION_realtime,
3548888a6bc6SSatoru Moriya    "-realtime [mlock=on|off]\n"
3549888a6bc6SSatoru Moriya    "                run qemu with realtime features\n"
3550888a6bc6SSatoru Moriya    "                mlock=on|off controls mlock support (default: on)\n",
3551888a6bc6SSatoru Moriya    QEMU_ARCH_ALL)
3552888a6bc6SSatoru MoriyaSTEXI
3553888a6bc6SSatoru Moriya@item -realtime mlock=on|off
3554888a6bc6SSatoru Moriya@findex -realtime
3555888a6bc6SSatoru MoriyaRun qemu with realtime features.
3556888a6bc6SSatoru Moriyamlocking qemu and guest memory can be enabled via @option{mlock=on}
3557888a6bc6SSatoru Moriya(enabled by default).
3558888a6bc6SSatoru MoriyaETEXI
3559888a6bc6SSatoru Moriya
35606f131f13SMichael S. TsirkinDEF("overcommit", HAS_ARG, QEMU_OPTION_overcommit,
3561dfaa7d50SBALATON Zoltan    "-overcommit [mem-lock=on|off][cpu-pm=on|off]\n"
35626f131f13SMichael S. Tsirkin    "                run qemu with overcommit hints\n"
35636f131f13SMichael S. Tsirkin    "                mem-lock=on|off controls memory lock support (default: off)\n"
35646f131f13SMichael S. Tsirkin    "                cpu-pm=on|off controls cpu power management (default: off)\n",
35656f131f13SMichael S. Tsirkin    QEMU_ARCH_ALL)
35666f131f13SMichael S. TsirkinSTEXI
35676f131f13SMichael S. Tsirkin@item -overcommit mem-lock=on|off
35686f131f13SMichael S. Tsirkin@item -overcommit cpu-pm=on|off
35696f131f13SMichael S. Tsirkin@findex -overcommit
35706f131f13SMichael S. TsirkinRun qemu with hints about host resource overcommit. The default is
35716f131f13SMichael S. Tsirkinto assume that host overcommits all resources.
35726f131f13SMichael S. Tsirkin
35736f131f13SMichael S. TsirkinLocking qemu and guest memory can be enabled via @option{mem-lock=on} (disabled
35746f131f13SMichael S. Tsirkinby default).  This works when host memory is not overcommitted and reduces the
35756f131f13SMichael S. Tsirkinworst-case latency for guest.  This is equivalent to @option{realtime}.
35766f131f13SMichael S. Tsirkin
35776f131f13SMichael S. TsirkinGuest ability to manage power state of host cpus (increasing latency for other
35786f131f13SMichael S. Tsirkinprocesses on the same host cpu, but decreasing latency for guest) can be
35796f131f13SMichael S. Tsirkinenabled via @option{cpu-pm=on} (disabled by default).  This works best when
35806f131f13SMichael S. Tsirkinhost CPU is not overcommitted. When used, host estimates of CPU cycle and power
35816f131f13SMichael S. Tsirkinutilization will be incorrect, not taking into account guest idle time.
35826f131f13SMichael S. TsirkinETEXI
35836f131f13SMichael S. Tsirkin
358459030a8cSaliguoriDEF("gdb", HAS_ARG, QEMU_OPTION_gdb, \
3585ad96090aSBlue Swirl    "-gdb dev        wait for gdb connection on 'dev'\n", QEMU_ARCH_ALL)
35865824d651Sblueswir1STEXI
358759030a8cSaliguori@item -gdb @var{dev}
35886616b2adSStefan Weil@findex -gdb
358959030a8cSaliguoriWait for gdb connection on device @var{dev} (@pxref{gdb_usage}). Typical
359059030a8cSaliguoriconnections will likely be TCP-based, but also UDP, pseudo TTY, or even
3591b65ee4faSStefan Weilstdio are reasonable use case. The latter is allowing to start QEMU from
359259030a8cSaliguoriwithin gdb and establish the connection via a pipe:
359359030a8cSaliguori@example
35943804da9dSStefan Weil(gdb) target remote | exec qemu-system-i386 -gdb stdio ...
359559030a8cSaliguori@end example
35965824d651Sblueswir1ETEXI
35975824d651Sblueswir1
359859030a8cSaliguoriDEF("s", 0, QEMU_OPTION_s, \
3599ad96090aSBlue Swirl    "-s              shorthand for -gdb tcp::" DEFAULT_GDBSTUB_PORT "\n",
3600ad96090aSBlue Swirl    QEMU_ARCH_ALL)
36015824d651Sblueswir1STEXI
360259030a8cSaliguori@item -s
36036616b2adSStefan Weil@findex -s
360459030a8cSaliguoriShorthand for -gdb tcp::1234, i.e. open a gdbserver on TCP port 1234
360559030a8cSaliguori(@pxref{gdb_usage}).
36065824d651Sblueswir1ETEXI
36075824d651Sblueswir1
36085824d651Sblueswir1DEF("d", HAS_ARG, QEMU_OPTION_d, \
3609989b697dSPeter Maydell    "-d item1,...    enable logging of specified items (use '-d help' for a list of log items)\n",
3610ad96090aSBlue Swirl    QEMU_ARCH_ALL)
36115824d651Sblueswir1STEXI
3612989b697dSPeter Maydell@item -d @var{item1}[,...]
36136616b2adSStefan Weil@findex -d
3614989b697dSPeter MaydellEnable logging of specified items. Use '-d help' for a list of log items.
36155824d651Sblueswir1ETEXI
36165824d651Sblueswir1
3617c235d738SMatthew FernandezDEF("D", HAS_ARG, QEMU_OPTION_D, \
3618989b697dSPeter Maydell    "-D logfile      output log to logfile (default stderr)\n",
3619c235d738SMatthew Fernandez    QEMU_ARCH_ALL)
3620c235d738SMatthew FernandezSTEXI
36218bd383b4SStefan Weil@item -D @var{logfile}
3622c235d738SMatthew Fernandez@findex -D
3623989b697dSPeter MaydellOutput log in @var{logfile} instead of to stderr
3624c235d738SMatthew FernandezETEXI
3625c235d738SMatthew Fernandez
36263514552eSAlex BennéeDEF("dfilter", HAS_ARG, QEMU_OPTION_DFILTER, \
36273514552eSAlex Bennée    "-dfilter range,..  filter debug output to range of addresses (useful for -d cpu,exec,etc..)\n",
36283514552eSAlex Bennée    QEMU_ARCH_ALL)
36293514552eSAlex BennéeSTEXI
36303514552eSAlex Bennée@item -dfilter @var{range1}[,...]
36313514552eSAlex Bennée@findex -dfilter
36323514552eSAlex BennéeFilter debug output to that relevant to a range of target addresses. The filter
36333514552eSAlex Bennéespec can be either @var{start}+@var{size}, @var{start}-@var{size} or
36343514552eSAlex Bennée@var{start}..@var{end} where @var{start} @var{end} and @var{size} are the
36353514552eSAlex Bennéeaddresses and sizes required. For example:
36363514552eSAlex Bennée@example
36373514552eSAlex Bennée    -dfilter 0x8000..0x8fff,0xffffffc000080000+0x200,0xffffffc000060000-0x1000
36383514552eSAlex Bennée@end example
36393514552eSAlex BennéeWill dump output for any code in the 0x1000 sized block starting at 0x8000 and
36403514552eSAlex Bennéethe 0x200 sized block starting at 0xffffffc000080000 and another 0x1000 sized
36413514552eSAlex Bennéeblock starting at 0xffffffc00005f000.
36423514552eSAlex BennéeETEXI
36433514552eSAlex Bennée
36449c09a251SRichard HendersonDEF("seed", HAS_ARG, QEMU_OPTION_seed, \
36459c09a251SRichard Henderson    "-seed number       seed the pseudo-random number generator\n",
36469c09a251SRichard Henderson    QEMU_ARCH_ALL)
36479c09a251SRichard HendersonSTEXI
36489c09a251SRichard Henderson@item -seed @var{number}
36499c09a251SRichard Henderson@findex -seed
36509c09a251SRichard HendersonForce the guest to use a deterministic pseudo-random number generator, seeded
36519c09a251SRichard Hendersonwith @var{number}.  This does not affect crypto routines within the host.
36529c09a251SRichard HendersonETEXI
36539c09a251SRichard Henderson
36545824d651Sblueswir1DEF("L", HAS_ARG, QEMU_OPTION_L, \
3655ad96090aSBlue Swirl    "-L path         set the directory for the BIOS, VGA BIOS and keymaps\n",
3656ad96090aSBlue Swirl    QEMU_ARCH_ALL)
36575824d651Sblueswir1STEXI
36585824d651Sblueswir1@item -L  @var{path}
36596616b2adSStefan Weil@findex -L
36605824d651Sblueswir1Set the directory for the BIOS, VGA BIOS and keymaps.
366137146e7eSRichard W.M. Jones
366237146e7eSRichard W.M. JonesTo list all the data directories, use @code{-L help}.
36635824d651Sblueswir1ETEXI
36645824d651Sblueswir1
36655824d651Sblueswir1DEF("bios", HAS_ARG, QEMU_OPTION_bios, \
3666ad96090aSBlue Swirl    "-bios file      set the filename for the BIOS\n", QEMU_ARCH_ALL)
36675824d651Sblueswir1STEXI
36685824d651Sblueswir1@item -bios @var{file}
36696616b2adSStefan Weil@findex -bios
36705824d651Sblueswir1Set the filename for the BIOS.
36715824d651Sblueswir1ETEXI
36725824d651Sblueswir1
36735824d651Sblueswir1DEF("enable-kvm", 0, QEMU_OPTION_enable_kvm, \
3674ad96090aSBlue Swirl    "-enable-kvm     enable KVM full virtualization support\n", QEMU_ARCH_ALL)
36755824d651Sblueswir1STEXI
36765824d651Sblueswir1@item -enable-kvm
36776616b2adSStefan Weil@findex -enable-kvm
36785824d651Sblueswir1Enable KVM full virtualization support. This option is only available
36795824d651Sblueswir1if KVM support is enabled when compiling.
36805824d651Sblueswir1ETEXI
36815824d651Sblueswir1
3682e37630caSaliguoriDEF("xen-domid", HAS_ARG, QEMU_OPTION_xen_domid,
3683ad96090aSBlue Swirl    "-xen-domid id   specify xen guest domain id\n", QEMU_ARCH_ALL)
3684e37630caSaliguoriDEF("xen-attach", 0, QEMU_OPTION_xen_attach,
3685e37630caSaliguori    "-xen-attach     attach to existing xen domain\n"
36861077bcacSAnthony PERARD    "                libxl will use this when starting QEMU\n",
3687ad96090aSBlue Swirl    QEMU_ARCH_ALL)
36881c599472SPaul DurrantDEF("xen-domid-restrict", 0, QEMU_OPTION_xen_domid_restrict,
36891c599472SPaul Durrant    "-xen-domid-restrict     restrict set of available xen operations\n"
36901c599472SPaul Durrant    "                        to specified domain id. (Does not affect\n"
36911c599472SPaul Durrant    "                        xenpv machine type).\n",
36921c599472SPaul Durrant    QEMU_ARCH_ALL)
369395d5f08bSStefan WeilSTEXI
369495d5f08bSStefan Weil@item -xen-domid @var{id}
36956616b2adSStefan Weil@findex -xen-domid
369695d5f08bSStefan WeilSpecify xen guest domain @var{id} (XEN only).
369795d5f08bSStefan Weil@item -xen-attach
36986616b2adSStefan Weil@findex -xen-attach
369995d5f08bSStefan WeilAttach to existing xen domain.
37001077bcacSAnthony PERARDlibxl will use this when starting QEMU (XEN only).
37011c599472SPaul Durrant@findex -xen-domid-restrict
37021c599472SPaul DurrantRestrict set of available xen operations to specified domain id (XEN only).
370395d5f08bSStefan WeilETEXI
3704e37630caSaliguori
37055824d651Sblueswir1DEF("no-reboot", 0, QEMU_OPTION_no_reboot, \
3706ad96090aSBlue Swirl    "-no-reboot      exit instead of rebooting\n", QEMU_ARCH_ALL)
37075824d651Sblueswir1STEXI
37085824d651Sblueswir1@item -no-reboot
37096616b2adSStefan Weil@findex -no-reboot
37105824d651Sblueswir1Exit instead of rebooting.
37115824d651Sblueswir1ETEXI
37125824d651Sblueswir1
37135824d651Sblueswir1DEF("no-shutdown", 0, QEMU_OPTION_no_shutdown, \
3714ad96090aSBlue Swirl    "-no-shutdown    stop before shutdown\n", QEMU_ARCH_ALL)
37155824d651Sblueswir1STEXI
37165824d651Sblueswir1@item -no-shutdown
37176616b2adSStefan Weil@findex -no-shutdown
37185824d651Sblueswir1Don't exit QEMU on guest shutdown, but instead only stop the emulation.
37195824d651Sblueswir1This allows for instance switching to monitor to commit changes to the
37205824d651Sblueswir1disk image.
37215824d651Sblueswir1ETEXI
37225824d651Sblueswir1
37235824d651Sblueswir1DEF("loadvm", HAS_ARG, QEMU_OPTION_loadvm, \
37245824d651Sblueswir1    "-loadvm [tag|id]\n" \
3725ad96090aSBlue Swirl    "                start right away with a saved state (loadvm in monitor)\n",
3726ad96090aSBlue Swirl    QEMU_ARCH_ALL)
37275824d651Sblueswir1STEXI
37285824d651Sblueswir1@item -loadvm @var{file}
37296616b2adSStefan Weil@findex -loadvm
37305824d651Sblueswir1Start right away with a saved state (@code{loadvm} in monitor)
37315824d651Sblueswir1ETEXI
37325824d651Sblueswir1
37335824d651Sblueswir1#ifndef _WIN32
37345824d651Sblueswir1DEF("daemonize", 0, QEMU_OPTION_daemonize, \
3735ad96090aSBlue Swirl    "-daemonize      daemonize QEMU after initializing\n", QEMU_ARCH_ALL)
37365824d651Sblueswir1#endif
37375824d651Sblueswir1STEXI
37385824d651Sblueswir1@item -daemonize
37396616b2adSStefan Weil@findex -daemonize
37405824d651Sblueswir1Daemonize the QEMU process after initialization.  QEMU will not detach from
37415824d651Sblueswir1standard IO until it is ready to receive connections on any of its devices.
37425824d651Sblueswir1This option is a useful way for external programs to launch QEMU without having
37435824d651Sblueswir1to cope with initialization race conditions.
37445824d651Sblueswir1ETEXI
37455824d651Sblueswir1
37465824d651Sblueswir1DEF("option-rom", HAS_ARG, QEMU_OPTION_option_rom, \
3747ad96090aSBlue Swirl    "-option-rom rom load a file, rom, into the option ROM space\n",
3748ad96090aSBlue Swirl    QEMU_ARCH_ALL)
37495824d651Sblueswir1STEXI
37505824d651Sblueswir1@item -option-rom @var{file}
37516616b2adSStefan Weil@findex -option-rom
37525824d651Sblueswir1Load the contents of @var{file} as an option ROM.
37535824d651Sblueswir1This option is useful to load things like EtherBoot.
37545824d651Sblueswir1ETEXI
37555824d651Sblueswir1
37561ed2fc1fSJan KiszkaDEF("rtc", HAS_ARG, QEMU_OPTION_rtc, \
3757238d1240SArtem Pisarenko    "-rtc [base=utc|localtime|<datetime>][,clock=host|rt|vm][,driftfix=none|slew]\n" \
3758ad96090aSBlue Swirl    "                set the RTC base and clock, enable drift fix for clock ticks (x86 only)\n",
3759ad96090aSBlue Swirl    QEMU_ARCH_ALL)
37601ed2fc1fSJan Kiszka
37615824d651Sblueswir1STEXI
37625824d651Sblueswir1
3763238d1240SArtem Pisarenko@item -rtc [base=utc|localtime|@var{datetime}][,clock=host|rt|vm][,driftfix=none|slew]
37646616b2adSStefan Weil@findex -rtc
37651ed2fc1fSJan KiszkaSpecify @option{base} as @code{utc} or @code{localtime} to let the RTC start at the current
37661ed2fc1fSJan KiszkaUTC or local time, respectively. @code{localtime} is required for correct date in
3767238d1240SArtem PisarenkoMS-DOS or Windows. To start at a specific point in time, provide @var{datetime} in the
37681ed2fc1fSJan Kiszkaformat @code{2006-06-17T16:01:21} or @code{2006-06-17}. The default base is UTC.
37691ed2fc1fSJan Kiszka
37709d85d557SMichael TokarevBy default the RTC is driven by the host system time. This allows using of the
37716875204cSJan KiszkaRTC as accurate reference clock inside the guest, specifically if the host
37726875204cSJan Kiszkatime is smoothly following an accurate external reference clock, e.g. via NTP.
377378808141SPaolo BonziniIf you want to isolate the guest time from the host, you can set @option{clock}
3774238d1240SArtem Pisarenkoto @code{rt} instead, which provides a host monotonic clock if host support it.
3775238d1240SArtem PisarenkoTo even prevent the RTC from progressing during suspension, you can set @option{clock}
3776238d1240SArtem Pisarenkoto @code{vm} (virtual clock). @samp{clock=vm} is recommended especially in
3777238d1240SArtem Pisarenkoicount mode in order to preserve determinism; however, note that in icount mode
3778238d1240SArtem Pisarenkothe speed of the virtual clock is variable and can in general differ from the
3779238d1240SArtem Pisarenkohost clock.
37806875204cSJan Kiszka
37811ed2fc1fSJan KiszkaEnable @option{driftfix} (i386 targets only) if you experience time drift problems,
37821ed2fc1fSJan Kiszkaspecifically with Windows' ACPI HAL. This option will try to figure out how
37831ed2fc1fSJan Kiszkamany timer interrupts were not processed by the Windows guest and will
37841ed2fc1fSJan Kiszkare-inject them.
37855824d651Sblueswir1ETEXI
37865824d651Sblueswir1
37875824d651Sblueswir1DEF("icount", HAS_ARG, QEMU_OPTION_icount, \
37889c2037d0SPavel Dovgalyuk    "-icount [shift=N|auto][,align=on|off][,sleep=on|off,rr=record|replay,rrfile=<filename>,rrsnapshot=<snapshot>]\n" \
3789bc14ca24Saliguori    "                enable virtual instruction counter with 2^N clock ticks per\n" \
3790f1f4b57eSVictor CLEMENT    "                instruction, enable aligning the host and virtual clocks\n" \
3791f1f4b57eSVictor CLEMENT    "                or disable real time cpu sleeping\n", QEMU_ARCH_ALL)
37925824d651Sblueswir1STEXI
37939c2037d0SPavel Dovgalyuk@item -icount [shift=@var{N}|auto][,rr=record|replay,rrfile=@var{filename},rrsnapshot=@var{snapshot}]
37946616b2adSStefan Weil@findex -icount
37955824d651Sblueswir1Enable virtual instruction counter.  The virtual cpu will execute one
37964e257e5eSKevin Wolfinstruction every 2^@var{N} ns of virtual time.  If @code{auto} is specified
37975824d651Sblueswir1then the virtual cpu speed will be automatically adjusted to keep virtual
37985824d651Sblueswir1time within a few seconds of real time.
37995824d651Sblueswir1
3800f1f4b57eSVictor CLEMENTWhen the virtual cpu is sleeping, the virtual time will advance at default
3801778d9f9bSPranith Kumarspeed unless @option{sleep=on|off} is specified.
3802778d9f9bSPranith KumarWith @option{sleep=on|off}, the virtual time will jump to the next timer deadline
3803f1f4b57eSVictor CLEMENTinstantly whenever the virtual cpu goes to sleep mode and will not advance
3804f1f4b57eSVictor CLEMENTif no timer is enabled. This behavior give deterministic execution times from
3805f1f4b57eSVictor CLEMENTthe guest point of view.
3806f1f4b57eSVictor CLEMENT
38075824d651Sblueswir1Note that while this option can give deterministic behavior, it does not
38085824d651Sblueswir1provide cycle accurate emulation.  Modern CPUs contain superscalar out of
38095824d651Sblueswir1order cores with complex cache hierarchies.  The number of instructions
38105824d651Sblueswir1executed often has little or no correlation with actual performance.
3811a8bfac37SSebastian Tanase
3812b6af0975SDaniel P. Berrange@option{align=on} will activate the delay algorithm which will try
3813a8bfac37SSebastian Tanaseto synchronise the host clock and the virtual clock. The goal is to
3814a8bfac37SSebastian Tanasehave a guest running at the real frequency imposed by the shift option.
3815a8bfac37SSebastian TanaseWhenever the guest clock is behind the host clock and if
381682597615SMichael Tokarev@option{align=on} is specified then we print a message to the user
3817a8bfac37SSebastian Tanaseto inform about the delay.
3818a8bfac37SSebastian TanaseCurrently this option does not work when @option{shift} is @code{auto}.
3819a8bfac37SSebastian TanaseNote: The sync algorithm will work for those shift values for which
3820a8bfac37SSebastian Tanasethe guest clock runs ahead of the host clock. Typically this happens
3821a8bfac37SSebastian Tanasewhen the shift value is high (how high depends on the host machine).
38224c27b859SPavel Dovgalyuk
38234c27b859SPavel DovgalyukWhen @option{rr} option is specified deterministic record/replay is enabled.
38244c27b859SPavel DovgalyukReplay log is written into @var{filename} file in record mode and
38254c27b859SPavel Dovgalyukread from this file in replay mode.
38269c2037d0SPavel Dovgalyuk
38279c2037d0SPavel DovgalyukOption rrsnapshot is used to create new vm snapshot named @var{snapshot}
38289c2037d0SPavel Dovgalyukat the start of execution recording. In replay mode this option is used
38299c2037d0SPavel Dovgalyukto load the initial VM state.
38305824d651Sblueswir1ETEXI
38315824d651Sblueswir1
38329dd986ccSRichard W.M. JonesDEF("watchdog", HAS_ARG, QEMU_OPTION_watchdog, \
3833d7933ef3SXu Wang    "-watchdog model\n" \
3834ad96090aSBlue Swirl    "                enable virtual hardware watchdog [default=none]\n",
3835ad96090aSBlue Swirl    QEMU_ARCH_ALL)
38369dd986ccSRichard W.M. JonesSTEXI
38379dd986ccSRichard W.M. Jones@item -watchdog @var{model}
38386616b2adSStefan Weil@findex -watchdog
38399dd986ccSRichard W.M. JonesCreate a virtual hardware watchdog device.  Once enabled (by a guest
38409dd986ccSRichard W.M. Jonesaction), the watchdog must be periodically polled by an agent inside
3841d7933ef3SXu Wangthe guest or else the guest will be restarted. Choose a model for
3842d7933ef3SXu Wangwhich your guest has drivers.
38439dd986ccSRichard W.M. Jones
3844d7933ef3SXu WangThe @var{model} is the model of hardware watchdog to emulate. Use
3845d7933ef3SXu Wang@code{-watchdog help} to list available hardware models. Only one
38469dd986ccSRichard W.M. Joneswatchdog can be enabled for a guest.
3847d7933ef3SXu Wang
3848d7933ef3SXu WangThe following models may be available:
3849d7933ef3SXu Wang@table @option
3850d7933ef3SXu Wang@item ib700
3851d7933ef3SXu WangiBASE 700 is a very simple ISA watchdog with a single timer.
3852d7933ef3SXu Wang@item i6300esb
3853d7933ef3SXu WangIntel 6300ESB I/O controller hub is a much more featureful PCI-based
3854d7933ef3SXu Wangdual-timer watchdog.
3855188f24c2SXu Wang@item diag288
3856188f24c2SXu WangA virtual watchdog for s390x backed by the diagnose 288 hypercall
3857188f24c2SXu Wang(currently KVM only).
3858d7933ef3SXu Wang@end table
38599dd986ccSRichard W.M. JonesETEXI
38609dd986ccSRichard W.M. Jones
38619dd986ccSRichard W.M. JonesDEF("watchdog-action", HAS_ARG, QEMU_OPTION_watchdog_action, \
38627ad9270eSMarkus Armbruster    "-watchdog-action reset|shutdown|poweroff|inject-nmi|pause|debug|none\n" \
3863ad96090aSBlue Swirl    "                action when watchdog fires [default=reset]\n",
3864ad96090aSBlue Swirl    QEMU_ARCH_ALL)
38659dd986ccSRichard W.M. JonesSTEXI
38669dd986ccSRichard W.M. Jones@item -watchdog-action @var{action}
3867b8f490ebSMarkus Armbruster@findex -watchdog-action
38689dd986ccSRichard W.M. Jones
38699dd986ccSRichard W.M. JonesThe @var{action} controls what QEMU will do when the watchdog timer
38709dd986ccSRichard W.M. Jonesexpires.
38719dd986ccSRichard W.M. JonesThe default is
38729dd986ccSRichard W.M. Jones@code{reset} (forcefully reset the guest).
38739dd986ccSRichard W.M. JonesOther possible actions are:
38749dd986ccSRichard W.M. Jones@code{shutdown} (attempt to gracefully shutdown the guest),
38759dd986ccSRichard W.M. Jones@code{poweroff} (forcefully poweroff the guest),
38767ad9270eSMarkus Armbruster@code{inject-nmi} (inject a NMI into the guest),
38779dd986ccSRichard W.M. Jones@code{pause} (pause the guest),
38789dd986ccSRichard W.M. Jones@code{debug} (print a debug message and continue), or
38799dd986ccSRichard W.M. Jones@code{none} (do nothing).
38809dd986ccSRichard W.M. Jones
38819dd986ccSRichard W.M. JonesNote that the @code{shutdown} action requires that the guest responds
38829dd986ccSRichard W.M. Jonesto ACPI signals, which it may not be able to do in the sort of
38839dd986ccSRichard W.M. Jonessituations where the watchdog would have expired, and thus
38849dd986ccSRichard W.M. Jones@code{-watchdog-action shutdown} is not recommended for production use.
38859dd986ccSRichard W.M. Jones
38869dd986ccSRichard W.M. JonesExamples:
38879dd986ccSRichard W.M. Jones
38889dd986ccSRichard W.M. Jones@table @code
38899dd986ccSRichard W.M. Jones@item -watchdog i6300esb -watchdog-action pause
3890f9cfd655SMarkus Armbruster@itemx -watchdog ib700
38919dd986ccSRichard W.M. Jones@end table
38929dd986ccSRichard W.M. JonesETEXI
38939dd986ccSRichard W.M. Jones
38945824d651Sblueswir1DEF("echr", HAS_ARG, QEMU_OPTION_echr, \
3895ad96090aSBlue Swirl    "-echr chr       set terminal escape character instead of ctrl-a\n",
3896ad96090aSBlue Swirl    QEMU_ARCH_ALL)
38975824d651Sblueswir1STEXI
38985824d651Sblueswir1
38994e257e5eSKevin Wolf@item -echr @var{numeric_ascii_value}
39006616b2adSStefan Weil@findex -echr
39015824d651Sblueswir1Change the escape character used for switching to the monitor when using
39025824d651Sblueswir1monitor and serial sharing.  The default is @code{0x01} when using the
39035824d651Sblueswir1@code{-nographic} option.  @code{0x01} is equal to pressing
39045824d651Sblueswir1@code{Control-a}.  You can select a different character from the ascii
39055824d651Sblueswir1control keys where 1 through 26 map to Control-a through Control-z.  For
39065824d651Sblueswir1instance you could use the either of the following to change the escape
39075824d651Sblueswir1character to Control-t.
39085824d651Sblueswir1@table @code
39095824d651Sblueswir1@item -echr 0x14
3910f9cfd655SMarkus Armbruster@itemx -echr 20
39115824d651Sblueswir1@end table
39125824d651Sblueswir1ETEXI
39135824d651Sblueswir1
39145824d651Sblueswir1DEF("show-cursor", 0, QEMU_OPTION_show_cursor, \
3915ad96090aSBlue Swirl    "-show-cursor    show cursor\n", QEMU_ARCH_ALL)
39165824d651Sblueswir1STEXI
391795d5f08bSStefan Weil@item -show-cursor
39186616b2adSStefan Weil@findex -show-cursor
391995d5f08bSStefan WeilShow cursor.
39205824d651Sblueswir1ETEXI
39215824d651Sblueswir1
39225824d651Sblueswir1DEF("tb-size", HAS_ARG, QEMU_OPTION_tb_size, \
3923ad96090aSBlue Swirl    "-tb-size n      set TB size\n", QEMU_ARCH_ALL)
39245824d651Sblueswir1STEXI
392595d5f08bSStefan Weil@item -tb-size @var{n}
39266616b2adSStefan Weil@findex -tb-size
392795d5f08bSStefan WeilSet TB size.
39285824d651Sblueswir1ETEXI
39295824d651Sblueswir1
39305824d651Sblueswir1DEF("incoming", HAS_ARG, QEMU_OPTION_incoming, \
39317c601803SMichael Tokarev    "-incoming tcp:[host]:port[,to=maxport][,ipv4][,ipv6]\n" \
39327c601803SMichael Tokarev    "-incoming rdma:host:port[,ipv4][,ipv6]\n" \
39337c601803SMichael Tokarev    "-incoming unix:socketpath\n" \
39347c601803SMichael Tokarev    "                prepare for incoming migration, listen on\n" \
39357c601803SMichael Tokarev    "                specified protocol and socket address\n" \
39367c601803SMichael Tokarev    "-incoming fd:fd\n" \
39377c601803SMichael Tokarev    "-incoming exec:cmdline\n" \
39387c601803SMichael Tokarev    "                accept incoming migration on given file descriptor\n" \
39391597051bSDr. David Alan Gilbert    "                or from given external command\n" \
39401597051bSDr. David Alan Gilbert    "-incoming defer\n" \
39411597051bSDr. David Alan Gilbert    "                wait for the URI to be specified via migrate_incoming\n",
3942ad96090aSBlue Swirl    QEMU_ARCH_ALL)
39435824d651Sblueswir1STEXI
39447c601803SMichael Tokarev@item -incoming tcp:[@var{host}]:@var{port}[,to=@var{maxport}][,ipv4][,ipv6]
3945f9cfd655SMarkus Armbruster@itemx -incoming rdma:@var{host}:@var{port}[,ipv4][,ipv6]
39466616b2adSStefan Weil@findex -incoming
39477c601803SMichael TokarevPrepare for incoming migration, listen on a given tcp port.
39487c601803SMichael Tokarev
39497c601803SMichael Tokarev@item -incoming unix:@var{socketpath}
39507c601803SMichael TokarevPrepare for incoming migration, listen on a given unix socket.
39517c601803SMichael Tokarev
39527c601803SMichael Tokarev@item -incoming fd:@var{fd}
39537c601803SMichael TokarevAccept incoming migration from a given filedescriptor.
39547c601803SMichael Tokarev
39557c601803SMichael Tokarev@item -incoming exec:@var{cmdline}
39567c601803SMichael TokarevAccept incoming migration as an output from specified external command.
39571597051bSDr. David Alan Gilbert
39581597051bSDr. David Alan Gilbert@item -incoming defer
39591597051bSDr. David Alan GilbertWait for the URI to be specified via migrate_incoming.  The monitor can
39601597051bSDr. David Alan Gilbertbe used to change settings (such as migration parameters) prior to issuing
39611597051bSDr. David Alan Gilbertthe migrate_incoming to allow the migration to begin.
39625824d651Sblueswir1ETEXI
39635824d651Sblueswir1
3964d15c05fcSAshijeet AcharyaDEF("only-migratable", 0, QEMU_OPTION_only_migratable, \
3965d15c05fcSAshijeet Acharya    "-only-migratable     allow only migratable devices\n", QEMU_ARCH_ALL)
3966d15c05fcSAshijeet AcharyaSTEXI
3967d15c05fcSAshijeet Acharya@item -only-migratable
3968d15c05fcSAshijeet Acharya@findex -only-migratable
3969d15c05fcSAshijeet AcharyaOnly allow migratable devices. Devices will not be allowed to enter an
3970d15c05fcSAshijeet Acharyaunmigratable state.
3971d15c05fcSAshijeet AcharyaETEXI
3972d15c05fcSAshijeet Acharya
3973d8c208ddSGerd HoffmannDEF("nodefaults", 0, QEMU_OPTION_nodefaults, \
3974ad96090aSBlue Swirl    "-nodefaults     don't create default devices\n", QEMU_ARCH_ALL)
3975d8c208ddSGerd HoffmannSTEXI
39763dbf2c7fSStefan Weil@item -nodefaults
39776616b2adSStefan Weil@findex -nodefaults
397866c19bf1SMichal NovotnyDon't create default devices. Normally, QEMU sets the default devices like serial
397966c19bf1SMichal Novotnyport, parallel port, virtual console, monitor device, VGA adapter, floppy and
398066c19bf1SMichal NovotnyCD-ROM drive and others. The @code{-nodefaults} option will disable all those
398166c19bf1SMichal Novotnydefault devices.
3982d8c208ddSGerd HoffmannETEXI
3983d8c208ddSGerd Hoffmann
39845824d651Sblueswir1#ifndef _WIN32
39855824d651Sblueswir1DEF("chroot", HAS_ARG, QEMU_OPTION_chroot, \
3986ad96090aSBlue Swirl    "-chroot dir     chroot to dir just before starting the VM\n",
3987ad96090aSBlue Swirl    QEMU_ARCH_ALL)
39885824d651Sblueswir1#endif
39895824d651Sblueswir1STEXI
39904e257e5eSKevin Wolf@item -chroot @var{dir}
39916616b2adSStefan Weil@findex -chroot
39925824d651Sblueswir1Immediately before starting guest execution, chroot to the specified
39935824d651Sblueswir1directory.  Especially useful in combination with -runas.
39945824d651Sblueswir1ETEXI
39955824d651Sblueswir1
39965824d651Sblueswir1#ifndef _WIN32
39975824d651Sblueswir1DEF("runas", HAS_ARG, QEMU_OPTION_runas, \
39982c42f1e8SIan Jackson    "-runas user     change to user id user just before starting the VM\n" \
39992c42f1e8SIan Jackson    "                user can be numeric uid:gid instead\n",
4000ad96090aSBlue Swirl    QEMU_ARCH_ALL)
40015824d651Sblueswir1#endif
40025824d651Sblueswir1STEXI
40034e257e5eSKevin Wolf@item -runas @var{user}
40046616b2adSStefan Weil@findex -runas
40055824d651Sblueswir1Immediately before starting guest execution, drop root privileges, switching
40065824d651Sblueswir1to the specified user.
40075824d651Sblueswir1ETEXI
40085824d651Sblueswir1
40095824d651Sblueswir1DEF("prom-env", HAS_ARG, QEMU_OPTION_prom_env,
40105824d651Sblueswir1    "-prom-env variable=value\n"
4011ad96090aSBlue Swirl    "                set OpenBIOS nvram variables\n",
4012ad96090aSBlue Swirl    QEMU_ARCH_PPC | QEMU_ARCH_SPARC)
401395d5f08bSStefan WeilSTEXI
401495d5f08bSStefan Weil@item -prom-env @var{variable}=@var{value}
40156616b2adSStefan Weil@findex -prom-env
401695d5f08bSStefan WeilSet OpenBIOS nvram @var{variable} to given @var{value} (PPC, SPARC only).
401795d5f08bSStefan WeilETEXI
40185824d651Sblueswir1DEF("semihosting", 0, QEMU_OPTION_semihosting,
4019f7bbcfb5SMichael Walle    "-semihosting    semihosting mode\n",
40203b3c1694SLeon Alrae    QEMU_ARCH_ARM | QEMU_ARCH_M68K | QEMU_ARCH_XTENSA | QEMU_ARCH_LM32 |
4021413a99a9SSandra Loosemore    QEMU_ARCH_MIPS | QEMU_ARCH_NIOS2)
402295d5f08bSStefan WeilSTEXI
402395d5f08bSStefan Weil@item -semihosting
40246616b2adSStefan Weil@findex -semihosting
4025413a99a9SSandra LoosemoreEnable semihosting mode (ARM, M68K, Xtensa, MIPS, Nios II only).
4026a38bb079SLiviu IonescuETEXI
4027a38bb079SLiviu IonescuDEF("semihosting-config", HAS_ARG, QEMU_OPTION_semihosting_config,
40284e7f9032SAlex Bennée    "-semihosting-config [enable=on|off][,target=native|gdb|auto][,chardev=id][,arg=str[,...]]\n" \
4029a59d31a1SLeon Alrae    "                semihosting configuration\n",
40303b3c1694SLeon AlraeQEMU_ARCH_ARM | QEMU_ARCH_M68K | QEMU_ARCH_XTENSA | QEMU_ARCH_LM32 |
4031413a99a9SSandra LoosemoreQEMU_ARCH_MIPS | QEMU_ARCH_NIOS2)
4032a38bb079SLiviu IonescuSTEXI
40334e7f9032SAlex Bennée@item -semihosting-config [enable=on|off][,target=native|gdb|auto][,chardev=id][,arg=str[,...]]
4034a38bb079SLiviu Ionescu@findex -semihosting-config
4035413a99a9SSandra LoosemoreEnable and configure semihosting (ARM, M68K, Xtensa, MIPS, Nios II only).
4036a59d31a1SLeon Alrae@table @option
4037a59d31a1SLeon Alrae@item target=@code{native|gdb|auto}
4038a59d31a1SLeon AlraeDefines where the semihosting calls will be addressed, to QEMU (@code{native})
4039a59d31a1SLeon Alraeor to GDB (@code{gdb}). The default is @code{auto}, which means @code{gdb}
4040a59d31a1SLeon Alraeduring debug sessions and @code{native} otherwise.
40414e7f9032SAlex Bennée@item chardev=@var{str1}
40424e7f9032SAlex BennéeSend the output to a chardev backend output for native or auto output when not in gdb
4043a59d31a1SLeon Alrae@item arg=@var{str1},arg=@var{str2},...
4044a59d31a1SLeon AlraeAllows the user to pass input arguments, and can be used multiple times to build
4045a59d31a1SLeon Alraeup a list. The old-style @code{-kernel}/@code{-append} method of passing a
4046a59d31a1SLeon Alraecommand line is still supported for backward compatibility. If both the
4047a59d31a1SLeon Alrae@code{--semihosting-config arg} and the @code{-kernel}/@code{-append} are
4048a59d31a1SLeon Alraespecified, the former is passed to semihosting as it always takes precedence.
4049a59d31a1SLeon Alrae@end table
405095d5f08bSStefan WeilETEXI
40515824d651Sblueswir1DEF("old-param", 0, QEMU_OPTION_old_param,
4052ad96090aSBlue Swirl    "-old-param      old param mode\n", QEMU_ARCH_ARM)
405395d5f08bSStefan WeilSTEXI
405495d5f08bSStefan Weil@item -old-param
40556616b2adSStefan Weil@findex -old-param (ARM)
405695d5f08bSStefan WeilOld param mode (ARM only).
405795d5f08bSStefan WeilETEXI
405895d5f08bSStefan Weil
40597d76ad4fSEduardo OtuboDEF("sandbox", HAS_ARG, QEMU_OPTION_sandbox, \
406073a1e647SEduardo Otubo    "-sandbox on[,obsolete=allow|deny][,elevateprivileges=allow|deny|children]\n" \
406124f8cdc5SEduardo Otubo    "          [,spawn=allow|deny][,resourcecontrol=allow|deny]\n" \
40622b716fa6SEduardo Otubo    "                Enable seccomp mode 2 system call filter (default 'off').\n" \
40632b716fa6SEduardo Otubo    "                use 'obsolete' to allow obsolete system calls that are provided\n" \
40642b716fa6SEduardo Otubo    "                    by the kernel, but typically no longer used by modern\n" \
406573a1e647SEduardo Otubo    "                    C library implementations.\n" \
406673a1e647SEduardo Otubo    "                use 'elevateprivileges' to allow or deny QEMU process to elevate\n" \
406773a1e647SEduardo Otubo    "                    its privileges by blacklisting all set*uid|gid system calls.\n" \
406873a1e647SEduardo Otubo    "                    The value 'children' will deny set*uid|gid system calls for\n" \
4069995a226fSEduardo Otubo    "                    main QEMU process but will allow forks and execves to run unprivileged\n" \
4070995a226fSEduardo Otubo    "                use 'spawn' to avoid QEMU to spawn new threads or processes by\n" \
407124f8cdc5SEduardo Otubo    "                     blacklisting *fork and execve\n" \
407224f8cdc5SEduardo Otubo    "                use 'resourcecontrol' to disable process affinity and schedular priority\n",
40737d76ad4fSEduardo Otubo    QEMU_ARCH_ALL)
40747d76ad4fSEduardo OtuboSTEXI
407524f8cdc5SEduardo Otubo@item -sandbox @var{arg}[,obsolete=@var{string}][,elevateprivileges=@var{string}][,spawn=@var{string}][,resourcecontrol=@var{string}]
40767d76ad4fSEduardo Otubo@findex -sandbox
40777d76ad4fSEduardo OtuboEnable Seccomp mode 2 system call filter. 'on' will enable syscall filtering and 'off' will
40787d76ad4fSEduardo Otubodisable it.  The default is 'off'.
40792b716fa6SEduardo Otubo@table @option
40802b716fa6SEduardo Otubo@item obsolete=@var{string}
40812b716fa6SEduardo OtuboEnable Obsolete system calls
408273a1e647SEduardo Otubo@item elevateprivileges=@var{string}
408373a1e647SEduardo OtuboDisable set*uid|gid system calls
4084995a226fSEduardo Otubo@item spawn=@var{string}
4085995a226fSEduardo OtuboDisable *fork and execve
408624f8cdc5SEduardo Otubo@item resourcecontrol=@var{string}
408724f8cdc5SEduardo OtuboDisable process affinity and schedular priority
40882b716fa6SEduardo Otubo@end table
40897d76ad4fSEduardo OtuboETEXI
40907d76ad4fSEduardo Otubo
4091715a664aSGerd HoffmannDEF("readconfig", HAS_ARG, QEMU_OPTION_readconfig,
4092ad96090aSBlue Swirl    "-readconfig <file>\n", QEMU_ARCH_ALL)
40933dbf2c7fSStefan WeilSTEXI
40943dbf2c7fSStefan Weil@item -readconfig @var{file}
40956616b2adSStefan Weil@findex -readconfig
4096ed24cfacSMichal NovotnyRead device configuration from @var{file}. This approach is useful when you want to spawn
4097ed24cfacSMichal NovotnyQEMU process with many command line options but you don't want to exceed the command line
4098ed24cfacSMichal Novotnycharacter limit.
40993dbf2c7fSStefan WeilETEXI
4100715a664aSGerd HoffmannDEF("writeconfig", HAS_ARG, QEMU_OPTION_writeconfig,
4101715a664aSGerd Hoffmann    "-writeconfig <file>\n"
4102ad96090aSBlue Swirl    "                read/write config file\n", QEMU_ARCH_ALL)
41033dbf2c7fSStefan WeilSTEXI
41043dbf2c7fSStefan Weil@item -writeconfig @var{file}
41056616b2adSStefan Weil@findex -writeconfig
4106ed24cfacSMichal NovotnyWrite device configuration to @var{file}. The @var{file} can be either filename to save
4107ed24cfacSMichal Novotnycommand line and device configuration into file or dash @code{-}) character to print the
4108ed24cfacSMichal Novotnyoutput to stdout. This can be later used as input file for @code{-readconfig} option.
41093dbf2c7fSStefan WeilETEXI
41102feac451SThomas Huth
4111f29a5614SEduardo HabkostDEF("no-user-config", 0, QEMU_OPTION_nouserconfig,
4112f29a5614SEduardo Habkost    "-no-user-config\n"
41133478eae9SEduardo Habkost    "                do not load default user-provided config files at startup\n",
4114f29a5614SEduardo Habkost    QEMU_ARCH_ALL)
4115f29a5614SEduardo HabkostSTEXI
4116f29a5614SEduardo Habkost@item -no-user-config
4117f29a5614SEduardo Habkost@findex -no-user-config
4118f29a5614SEduardo HabkostThe @code{-no-user-config} option makes QEMU not load any of the user-provided
41193478eae9SEduardo Habkostconfig files on @var{sysconfdir}.
4120292444cbSAnthony LiguoriETEXI
41212feac451SThomas Huth
4122ab6540d5SPrerna SaxenaDEF("trace", HAS_ARG, QEMU_OPTION_trace,
412310578a25SPaolo Bonzini    "-trace [[enable=]<pattern>][,events=<file>][,file=<file>]\n"
412423d15e86SLluís    "                specify tracing options\n",
4125ab6540d5SPrerna Saxena    QEMU_ARCH_ALL)
4126ab6540d5SPrerna SaxenaSTEXI
412723d15e86SLluísHXCOMM This line is not accurate, as some sub-options are backend-specific but
412823d15e86SLluísHXCOMM HX does not support conditional compilation of text.
4129e370ad99SDenis V. Lunev@item -trace [[enable=]@var{pattern}][,events=@var{file}][,file=@var{file}]
4130ab6540d5SPrerna Saxena@findex -trace
4131eeb2b8f7SDenis V. Lunev@include qemu-option-trace.texi
4132ab6540d5SPrerna SaxenaETEXI
41333dbf2c7fSStefan Weil
413431e70d6cSMarkus ArmbrusterHXCOMM Internal use
413531e70d6cSMarkus ArmbrusterDEF("qtest", HAS_ARG, QEMU_OPTION_qtest, "", QEMU_ARCH_ALL)
413631e70d6cSMarkus ArmbrusterDEF("qtest-log", HAS_ARG, QEMU_OPTION_qtest_log, "", QEMU_ARCH_ALL)
4137c7f0f3b1SAnthony Liguori
41380f66998fSPaul Moore#ifdef __linux__
41390f66998fSPaul MooreDEF("enable-fips", 0, QEMU_OPTION_enablefips,
41400f66998fSPaul Moore    "-enable-fips    enable FIPS 140-2 compliance\n",
41410f66998fSPaul Moore    QEMU_ARCH_ALL)
41420f66998fSPaul Moore#endif
41430f66998fSPaul MooreSTEXI
41440f66998fSPaul Moore@item -enable-fips
41450f66998fSPaul Moore@findex -enable-fips
41460f66998fSPaul MooreEnable FIPS 140-2 compliance mode.
41470f66998fSPaul MooreETEXI
41480f66998fSPaul Moore
4149a0dac021SJan KiszkaHXCOMM Deprecated by -machine accel=tcg property
4150c6e88b3bSBruce RogersDEF("no-kvm", 0, QEMU_OPTION_no_kvm, "", QEMU_ARCH_I386)
4151a0dac021SJan Kiszka
41525e2ac519SSeiji AguchiDEF("msg", HAS_ARG, QEMU_OPTION_msg,
41535e2ac519SSeiji Aguchi    "-msg timestamp[=on|off]\n"
41545e2ac519SSeiji Aguchi    "                change the format of messages\n"
41555e2ac519SSeiji Aguchi    "                on|off controls leading timestamps (default:on)\n",
41565e2ac519SSeiji Aguchi    QEMU_ARCH_ALL)
41575e2ac519SSeiji AguchiSTEXI
41585e2ac519SSeiji Aguchi@item -msg timestamp[=on|off]
41595e2ac519SSeiji Aguchi@findex -msg
41605e2ac519SSeiji Aguchiprepend a timestamp to each log message.(default:on)
41615e2ac519SSeiji AguchiETEXI
41625e2ac519SSeiji Aguchi
4163abfd9ce3SAmit ShahDEF("dump-vmstate", HAS_ARG, QEMU_OPTION_dump_vmstate,
4164abfd9ce3SAmit Shah    "-dump-vmstate <file>\n"
4165abfd9ce3SAmit Shah    "                Output vmstate information in JSON format to file.\n"
4166abfd9ce3SAmit Shah    "                Use the scripts/vmstate-static-checker.py file to\n"
4167abfd9ce3SAmit Shah    "                check for possible regressions in migration code\n"
41682382053fSLaurent Vivier    "                by comparing two such vmstate dumps.\n",
4169abfd9ce3SAmit Shah    QEMU_ARCH_ALL)
4170abfd9ce3SAmit ShahSTEXI
4171abfd9ce3SAmit Shah@item -dump-vmstate @var{file}
4172abfd9ce3SAmit Shah@findex -dump-vmstate
4173abfd9ce3SAmit ShahDump json-encoded vmstate information for current machine type to file
4174abfd9ce3SAmit Shahin @var{file}
4175abfd9ce3SAmit ShahETEXI
4176abfd9ce3SAmit Shah
417712df189dSEmilio G. CotaDEF("enable-sync-profile", 0, QEMU_OPTION_enable_sync_profile,
417812df189dSEmilio G. Cota    "-enable-sync-profile\n"
417912df189dSEmilio G. Cota    "                enable synchronization profiling\n",
418012df189dSEmilio G. Cota    QEMU_ARCH_ALL)
418112df189dSEmilio G. CotaSTEXI
418212df189dSEmilio G. Cota@item -enable-sync-profile
418312df189dSEmilio G. Cota@findex -enable-sync-profile
418412df189dSEmilio G. CotaEnable synchronization profiling.
418512df189dSEmilio G. CotaETEXI
418612df189dSEmilio G. Cota
418743f187a5SPaolo BonziniSTEXI
418843f187a5SPaolo Bonzini@end table
418943f187a5SPaolo BonziniETEXI
419043f187a5SPaolo BonziniDEFHEADING()
4191de6b4f90SMarkus Armbruster
4192de6b4f90SMarkus ArmbrusterDEFHEADING(Generic object creation:)
419343f187a5SPaolo BonziniSTEXI
419443f187a5SPaolo Bonzini@table @option
419543f187a5SPaolo BonziniETEXI
4196b9174d4fSDaniel P. Berrange
4197b9174d4fSDaniel P. BerrangeDEF("object", HAS_ARG, QEMU_OPTION_object,
4198b9174d4fSDaniel P. Berrange    "-object TYPENAME[,PROP1=VALUE1,...]\n"
4199b9174d4fSDaniel P. Berrange    "                create a new object of type TYPENAME setting properties\n"
4200b9174d4fSDaniel P. Berrange    "                in the order they are specified.  Note that the 'id'\n"
4201b9174d4fSDaniel P. Berrange    "                property must be set.  These objects are placed in the\n"
4202b9174d4fSDaniel P. Berrange    "                '/objects' path.\n",
4203b9174d4fSDaniel P. Berrange    QEMU_ARCH_ALL)
4204b9174d4fSDaniel P. BerrangeSTEXI
4205b9174d4fSDaniel P. Berrange@item -object @var{typename}[,@var{prop1}=@var{value1},...]
4206b9174d4fSDaniel P. Berrange@findex -object
4207b9174d4fSDaniel P. BerrangeCreate a new object of type @var{typename} setting properties
4208b9174d4fSDaniel P. Berrangein the order they are specified.  Note that the 'id'
4209b9174d4fSDaniel P. Berrangeproperty must be set.  These objects are placed in the
4210b9174d4fSDaniel P. Berrange'/objects' path.
4211b9174d4fSDaniel P. Berrange
4212b9174d4fSDaniel P. Berrange@table @option
4213b9174d4fSDaniel P. Berrange
421498376843SHaozhong Zhang@item -object memory-backend-file,id=@var{id},size=@var{size},mem-path=@var{dir},share=@var{on|off},discard-data=@var{on|off},merge=@var{on|off},dump=@var{on|off},prealloc=@var{on|off},host-nodes=@var{host-nodes},policy=@var{default|preferred|bind|interleave},align=@var{align}
4215b9174d4fSDaniel P. Berrange
4216b9174d4fSDaniel P. BerrangeCreates a memory file backend object, which can be used to back
4217c7cddce1SStefan Hajnoczithe guest RAM with huge pages.
4218c7cddce1SStefan Hajnoczi
4219c7cddce1SStefan HajnocziThe @option{id} parameter is a unique ID that will be used to reference this
4220c7cddce1SStefan Hajnoczimemory region when configuring the @option{-numa} argument.
4221c7cddce1SStefan Hajnoczi
4222c7cddce1SStefan HajnocziThe @option{size} option provides the size of the memory region, and accepts
4223c7cddce1SStefan Hajnoczicommon suffixes, eg @option{500M}.
4224c7cddce1SStefan Hajnoczi
4225c7cddce1SStefan HajnocziThe @option{mem-path} provides the path to either a shared memory or huge page
4226c7cddce1SStefan Hajnoczifilesystem mount.
4227c7cddce1SStefan Hajnoczi
4228b9174d4fSDaniel P. BerrangeThe @option{share} boolean option determines whether the memory
4229b9174d4fSDaniel P. Berrangeregion is marked as private to QEMU, or shared. The latter allows
4230b9174d4fSDaniel P. Berrangea co-operating external process to access the QEMU memory region.
4231c7cddce1SStefan Hajnoczi
423206329cceSMarcel ApfelbaumThe @option{share} is also required for pvrdma devices due to
423306329cceSMarcel Apfelbaumlimitations in the RDMA API provided by Linux.
423406329cceSMarcel Apfelbaum
423506329cceSMarcel ApfelbaumSetting share=on might affect the ability to configure NUMA
423606329cceSMarcel Apfelbaumbindings for the memory backend under some circumstances, see
423706329cceSMarcel ApfelbaumDocumentation/vm/numa_memory_policy.txt on the Linux kernel
423806329cceSMarcel Apfelbaumsource tree for additional details.
423906329cceSMarcel Apfelbaum
424011ae6ed8SEduardo HabkostSetting the @option{discard-data} boolean option to @var{on}
424111ae6ed8SEduardo Habkostindicates that file contents can be destroyed when QEMU exits,
424211ae6ed8SEduardo Habkostto avoid unnecessarily flushing data to the backing file.  Note
424311ae6ed8SEduardo Habkostthat @option{discard-data} is only an optimization, and QEMU
424411ae6ed8SEduardo Habkostmight not discard file contents if it aborts unexpectedly or is
424511ae6ed8SEduardo Habkostterminated using SIGKILL.
4246b9174d4fSDaniel P. Berrange
4247c7cddce1SStefan HajnocziThe @option{merge} boolean option enables memory merge, also known as
4248c7cddce1SStefan HajnocziMADV_MERGEABLE, so that Kernel Samepage Merging will consider the pages for
4249c7cddce1SStefan Hajnoczimemory deduplication.
4250c7cddce1SStefan Hajnoczi
4251c7cddce1SStefan HajnocziSetting the @option{dump} boolean option to @var{off} excludes the memory from
4252c7cddce1SStefan Hajnoczicore dumps. This feature is also known as MADV_DONTDUMP.
4253c7cddce1SStefan Hajnoczi
4254c7cddce1SStefan HajnocziThe @option{prealloc} boolean option enables memory preallocation.
4255c7cddce1SStefan Hajnoczi
4256c7cddce1SStefan HajnocziThe @option{host-nodes} option binds the memory range to a list of NUMA host
4257c7cddce1SStefan Hajnoczinodes.
4258c7cddce1SStefan Hajnoczi
4259c7cddce1SStefan HajnocziThe @option{policy} option sets the NUMA policy to one of the following values:
4260c7cddce1SStefan Hajnoczi
4261c7cddce1SStefan Hajnoczi@table @option
4262c7cddce1SStefan Hajnoczi@item @var{default}
4263c7cddce1SStefan Hajnoczidefault host policy
4264c7cddce1SStefan Hajnoczi
4265c7cddce1SStefan Hajnoczi@item @var{preferred}
4266c7cddce1SStefan Hajnocziprefer the given host node list for allocation
4267c7cddce1SStefan Hajnoczi
4268c7cddce1SStefan Hajnoczi@item @var{bind}
4269c7cddce1SStefan Hajnoczirestrict memory allocation to the given host node list
4270c7cddce1SStefan Hajnoczi
4271c7cddce1SStefan Hajnoczi@item @var{interleave}
4272c7cddce1SStefan Hajnocziinterleave memory allocations across the given host node list
4273c7cddce1SStefan Hajnoczi@end table
4274c7cddce1SStefan Hajnoczi
427598376843SHaozhong ZhangThe @option{align} option specifies the base address alignment when
427698376843SHaozhong ZhangQEMU mmap(2) @option{mem-path}, and accepts common suffixes, eg
427798376843SHaozhong Zhang@option{2M}. Some backend store specified by @option{mem-path}
427898376843SHaozhong Zhangrequires an alignment different than the default one used by QEMU, eg
427998376843SHaozhong Zhangthe device DAX /dev/dax0.0 requires 2M alignment rather than 4K. In
428098376843SHaozhong Zhangsuch cases, users can specify the required alignment via this option.
428198376843SHaozhong Zhang
4282a4de8552SJunyan HeThe @option{pmem} option specifies whether the backing file specified
4283a4de8552SJunyan Heby @option{mem-path} is in host persistent memory that can be accessed
4284a4de8552SJunyan Heusing the SNIA NVM programming model (e.g. Intel NVDIMM).
4285a4de8552SJunyan HeIf @option{pmem} is set to 'on', QEMU will take necessary operations to
4286a4de8552SJunyan Heguarantee the persistence of its own writes to @option{mem-path}
4287a4de8552SJunyan He(e.g. in vNVDIMM label emulation and live migration).
4288119906afSZhang YiAlso, we will map the backend-file with MAP_SYNC flag, which ensures the
4289119906afSZhang Yifile metadata is in sync for @option{mem-path} in case of host crash
4290119906afSZhang Yior a power failure. MAP_SYNC requires support from both the host kernel
4291119906afSZhang Yi(since Linux kernel 4.15) and the filesystem of @option{mem-path} mounted
4292119906afSZhang Yiwith DAX option.
4293a4de8552SJunyan He
429406329cceSMarcel Apfelbaum@item -object memory-backend-ram,id=@var{id},merge=@var{on|off},dump=@var{on|off},share=@var{on|off},prealloc=@var{on|off},size=@var{size},host-nodes=@var{host-nodes},policy=@var{default|preferred|bind|interleave}
4295cd19491aSStefan Hajnoczi
4296cd19491aSStefan HajnocziCreates a memory backend object, which can be used to back the guest RAM.
4297cd19491aSStefan HajnocziMemory backend objects offer more control than the @option{-m} option that is
4298cd19491aSStefan Hajnoczitraditionally used to define guest RAM. Please refer to
4299cd19491aSStefan Hajnoczi@option{memory-backend-file} for a description of the options.
4300cd19491aSStefan Hajnoczi
430136ea3979SMarc-André Lureau@item -object memory-backend-memfd,id=@var{id},merge=@var{on|off},dump=@var{on|off},share=@var{on|off},prealloc=@var{on|off},size=@var{size},host-nodes=@var{host-nodes},policy=@var{default|preferred|bind|interleave},seal=@var{on|off},hugetlb=@var{on|off},hugetlbsize=@var{size}
4302dbb9e0f4SMarc-André Lureau
4303dbb9e0f4SMarc-André LureauCreates an anonymous memory file backend object, which allows QEMU to
4304dbb9e0f4SMarc-André Lureaushare the memory with an external process (e.g. when using
4305dbb9e0f4SMarc-André Lureauvhost-user). The memory is allocated with memfd and optional
4306dbb9e0f4SMarc-André Lureausealing. (Linux only)
4307dbb9e0f4SMarc-André Lureau
4308dbb9e0f4SMarc-André LureauThe @option{seal} option creates a sealed-file, that will block
4309dbb9e0f4SMarc-André Lureaufurther resizing the memory ('on' by default).
4310dbb9e0f4SMarc-André Lureau
4311dbb9e0f4SMarc-André LureauThe @option{hugetlb} option specify the file to be created resides in
4312dbb9e0f4SMarc-André Lureauthe hugetlbfs filesystem (since Linux 4.14).  Used in conjunction with
4313dbb9e0f4SMarc-André Lureauthe @option{hugetlb} option, the @option{hugetlbsize} option specify
4314dbb9e0f4SMarc-André Lureauthe hugetlb page size on systems that support multiple hugetlb page
4315dbb9e0f4SMarc-André Lureausizes (it must be a power of 2 value supported by the system).
4316dbb9e0f4SMarc-André Lureau
4317dbb9e0f4SMarc-André LureauIn some versions of Linux, the @option{hugetlb} option is incompatible
4318dbb9e0f4SMarc-André Lureauwith the @option{seal} option (requires at least Linux 4.16).
4319dbb9e0f4SMarc-André Lureau
4320dbb9e0f4SMarc-André LureauPlease refer to @option{memory-backend-file} for a description of the
4321dbb9e0f4SMarc-André Lureauother options.
4322dbb9e0f4SMarc-André Lureau
432336ea3979SMarc-André LureauThe @option{share} boolean option is @var{on} by default with memfd.
432436ea3979SMarc-André Lureau
4325b9174d4fSDaniel P. Berrange@item -object rng-random,id=@var{id},filename=@var{/dev/random}
4326b9174d4fSDaniel P. Berrange
4327b9174d4fSDaniel P. BerrangeCreates a random number generator backend which obtains entropy from
4328b9174d4fSDaniel P. Berrangea device on the host. The @option{id} parameter is a unique ID that
4329b9174d4fSDaniel P. Berrangewill be used to reference this entropy backend from the @option{virtio-rng}
4330b9174d4fSDaniel P. Berrangedevice. The @option{filename} parameter specifies which file to obtain
4331*a2230bd7SKashyap Chamarthyentropy from and if omitted defaults to @option{/dev/urandom}.
4332b9174d4fSDaniel P. Berrange
4333b9174d4fSDaniel P. Berrange@item -object rng-egd,id=@var{id},chardev=@var{chardevid}
4334b9174d4fSDaniel P. Berrange
4335b9174d4fSDaniel P. BerrangeCreates a random number generator backend which obtains entropy from
4336b9174d4fSDaniel P. Berrangean external daemon running on the host. The @option{id} parameter is
4337b9174d4fSDaniel P. Berrangea unique ID that will be used to reference this entropy backend from
4338b9174d4fSDaniel P. Berrangethe @option{virtio-rng} device. The @option{chardev} parameter is
4339b9174d4fSDaniel P. Berrangethe unique ID of a character device backend that provides the connection
4340b9174d4fSDaniel P. Berrangeto the RNG daemon.
4341b9174d4fSDaniel P. Berrange
4342e00adf6cSDaniel P. Berrange@item -object tls-creds-anon,id=@var{id},endpoint=@var{endpoint},dir=@var{/path/to/cred/dir},verify-peer=@var{on|off}
4343e00adf6cSDaniel P. Berrange
4344e00adf6cSDaniel P. BerrangeCreates a TLS anonymous credentials object, which can be used to provide
4345e00adf6cSDaniel P. BerrangeTLS support on network backends. The @option{id} parameter is a unique
4346e00adf6cSDaniel P. BerrangeID which network backends will use to access the credentials. The
4347e00adf6cSDaniel P. Berrange@option{endpoint} is either @option{server} or @option{client} depending
4348e00adf6cSDaniel P. Berrangeon whether the QEMU network backend that uses the credentials will be
4349e00adf6cSDaniel P. Berrangeacting as a client or as a server. If @option{verify-peer} is enabled
4350e00adf6cSDaniel P. Berrange(the default) then once the handshake is completed, the peer credentials
4351e00adf6cSDaniel P. Berrangewill be verified, though this is a no-op for anonymous credentials.
4352e00adf6cSDaniel P. Berrange
4353e00adf6cSDaniel P. BerrangeThe @var{dir} parameter tells QEMU where to find the credential
4354e00adf6cSDaniel P. Berrangefiles. For server endpoints, this directory may contain a file
4355e00adf6cSDaniel P. Berrange@var{dh-params.pem} providing diffie-hellman parameters to use
4356e00adf6cSDaniel P. Berrangefor the TLS server. If the file is missing, QEMU will generate
4357e00adf6cSDaniel P. Berrangea set of DH parameters at startup. This is a computationally
4358e00adf6cSDaniel P. Berrangeexpensive operation that consumes random pool entropy, so it is
4359e00adf6cSDaniel P. Berrangerecommended that a persistent set of parameters be generated
4360e00adf6cSDaniel P. Berrangeupfront and saved.
4361e00adf6cSDaniel P. Berrange
4362e1a6dc91SRichard W.M. Jones@item -object tls-creds-psk,id=@var{id},endpoint=@var{endpoint},dir=@var{/path/to/keys/dir}[,username=@var{username}]
4363e1a6dc91SRichard W.M. Jones
4364e1a6dc91SRichard W.M. JonesCreates a TLS Pre-Shared Keys (PSK) credentials object, which can be used to provide
4365e1a6dc91SRichard W.M. JonesTLS support on network backends. The @option{id} parameter is a unique
4366e1a6dc91SRichard W.M. JonesID which network backends will use to access the credentials. The
4367e1a6dc91SRichard W.M. Jones@option{endpoint} is either @option{server} or @option{client} depending
4368e1a6dc91SRichard W.M. Joneson whether the QEMU network backend that uses the credentials will be
4369e1a6dc91SRichard W.M. Jonesacting as a client or as a server. For clients only, @option{username}
4370e1a6dc91SRichard W.M. Jonesis the username which will be sent to the server.  If omitted
4371e1a6dc91SRichard W.M. Jonesit defaults to ``qemu''.
4372e1a6dc91SRichard W.M. Jones
4373e1a6dc91SRichard W.M. JonesThe @var{dir} parameter tells QEMU where to find the keys file.
4374e1a6dc91SRichard W.M. JonesIt is called ``@var{dir}/keys.psk'' and contains ``username:key''
4375e1a6dc91SRichard W.M. Jonespairs.  This file can most easily be created using the GnuTLS
4376e1a6dc91SRichard W.M. Jones@code{psktool} program.
4377e1a6dc91SRichard W.M. Jones
4378e1a6dc91SRichard W.M. JonesFor server endpoints, @var{dir} may also contain a file
4379e1a6dc91SRichard W.M. Jones@var{dh-params.pem} providing diffie-hellman parameters to use
4380e1a6dc91SRichard W.M. Jonesfor the TLS server. If the file is missing, QEMU will generate
4381e1a6dc91SRichard W.M. Jonesa set of DH parameters at startup. This is a computationally
4382e1a6dc91SRichard W.M. Jonesexpensive operation that consumes random pool entropy, so it is
4383e1a6dc91SRichard W.M. Jonesrecommended that a persistent set of parameters be generated
4384e1a6dc91SRichard W.M. Jonesup front and saved.
4385e1a6dc91SRichard W.M. Jones
438600e5e9dfSChristophe Fergeau@item -object tls-creds-x509,id=@var{id},endpoint=@var{endpoint},dir=@var{/path/to/cred/dir},priority=@var{priority},verify-peer=@var{on|off},passwordid=@var{id}
438785bcbc78SDaniel P. Berrange
438885bcbc78SDaniel P. BerrangeCreates a TLS anonymous credentials object, which can be used to provide
438985bcbc78SDaniel P. BerrangeTLS support on network backends. The @option{id} parameter is a unique
439085bcbc78SDaniel P. BerrangeID which network backends will use to access the credentials. The
439185bcbc78SDaniel P. Berrange@option{endpoint} is either @option{server} or @option{client} depending
439285bcbc78SDaniel P. Berrangeon whether the QEMU network backend that uses the credentials will be
439385bcbc78SDaniel P. Berrangeacting as a client or as a server. If @option{verify-peer} is enabled
439485bcbc78SDaniel P. Berrange(the default) then once the handshake is completed, the peer credentials
439585bcbc78SDaniel P. Berrangewill be verified. With x509 certificates, this implies that the clients
439685bcbc78SDaniel P. Berrangemust be provided with valid client certificates too.
439785bcbc78SDaniel P. Berrange
439885bcbc78SDaniel P. BerrangeThe @var{dir} parameter tells QEMU where to find the credential
439985bcbc78SDaniel P. Berrangefiles. For server endpoints, this directory may contain a file
440085bcbc78SDaniel P. Berrange@var{dh-params.pem} providing diffie-hellman parameters to use
440185bcbc78SDaniel P. Berrangefor the TLS server. If the file is missing, QEMU will generate
440285bcbc78SDaniel P. Berrangea set of DH parameters at startup. This is a computationally
440385bcbc78SDaniel P. Berrangeexpensive operation that consumes random pool entropy, so it is
440485bcbc78SDaniel P. Berrangerecommended that a persistent set of parameters be generated
440585bcbc78SDaniel P. Berrangeupfront and saved.
440685bcbc78SDaniel P. Berrange
440785bcbc78SDaniel P. BerrangeFor x509 certificate credentials the directory will contain further files
440885bcbc78SDaniel P. Berrangeproviding the x509 certificates. The certificates must be stored
440985bcbc78SDaniel P. Berrangein PEM format, in filenames @var{ca-cert.pem}, @var{ca-crl.pem} (optional),
441085bcbc78SDaniel P. Berrange@var{server-cert.pem} (only servers), @var{server-key.pem} (only servers),
441185bcbc78SDaniel P. Berrange@var{client-cert.pem} (only clients), and @var{client-key.pem} (only clients).
441285bcbc78SDaniel P. Berrange
44131d7b5b4aSDaniel P. BerrangeFor the @var{server-key.pem} and @var{client-key.pem} files which
44141d7b5b4aSDaniel P. Berrangecontain sensitive private keys, it is possible to use an encrypted
44151d7b5b4aSDaniel P. Berrangeversion by providing the @var{passwordid} parameter. This provides
44161d7b5b4aSDaniel P. Berrangethe ID of a previously created @code{secret} object containing the
44171d7b5b4aSDaniel P. Berrangepassword for decryption.
44181d7b5b4aSDaniel P. Berrange
441900e5e9dfSChristophe FergeauThe @var{priority} parameter allows to override the global default
442000e5e9dfSChristophe Fergeaupriority used by gnutls. This can be useful if the system administrator
442100e5e9dfSChristophe Fergeauneeds to use a weaker set of crypto priorities for QEMU without
442200e5e9dfSChristophe Fergeaupotentially forcing the weakness onto all applications. Or conversely
442300e5e9dfSChristophe Fergeauif one wants wants a stronger default for QEMU than for all other
442400e5e9dfSChristophe Fergeauapplications, they can do this through this parameter. Its format is
442500e5e9dfSChristophe Fergeaua gnutls priority string as described at
442600e5e9dfSChristophe Fergeau@url{https://gnutls.org/manual/html_node/Priority-Strings.html}.
442700e5e9dfSChristophe Fergeau
4428338d3f41Szhanghailiang@item -object filter-buffer,id=@var{id},netdev=@var{netdevid},interval=@var{t}[,queue=@var{all|rx|tx}][,status=@var{on|off}]
44297dbb11c8SYang Hongyang
44307dbb11c8SYang HongyangInterval @var{t} can't be 0, this filter batches the packet delivery: all
44317dbb11c8SYang Hongyangpackets arriving in a given interval on netdev @var{netdevid} are delayed
44327dbb11c8SYang Hongyanguntil the end of the interval. Interval is in microseconds.
4433338d3f41Szhanghailiang@option{status} is optional that indicate whether the netfilter is
4434338d3f41Szhanghailiangon (enabled) or off (disabled), the default status for netfilter will be 'on'.
44357dbb11c8SYang Hongyang
44367dbb11c8SYang Hongyangqueue @var{all|rx|tx} is an option that can be applied to any netfilter.
44377dbb11c8SYang Hongyang
44387dbb11c8SYang Hongyang@option{all}: the filter is attached both to the receive and the transmit
44397dbb11c8SYang Hongyang              queue of the netdev (default).
44407dbb11c8SYang Hongyang
44417dbb11c8SYang Hongyang@option{rx}: the filter is attached to the receive queue of the netdev,
44427dbb11c8SYang Hongyang             where it will receive packets sent to the netdev.
44437dbb11c8SYang Hongyang
44447dbb11c8SYang Hongyang@option{tx}: the filter is attached to the transmit queue of the netdev,
44457dbb11c8SYang Hongyang             where it will receive packets sent by the netdev.
44467dbb11c8SYang Hongyang
4447e2521f0eSZhang Chen@item -object filter-mirror,id=@var{id},netdev=@var{netdevid},outdev=@var{chardevid},queue=@var{all|rx|tx}[,vnet_hdr_support]
4448f6d3afb5SZhang Chen
4449e2521f0eSZhang Chenfilter-mirror on netdev @var{netdevid},mirror net packet to chardev@var{chardevid}, if it has the vnet_hdr_support flag, filter-mirror will mirror packet with vnet_hdr_len.
4450f6d3afb5SZhang Chen
445100d5c240SZhang Chen@item -object filter-redirector,id=@var{id},netdev=@var{netdevid},indev=@var{chardevid},outdev=@var{chardevid},queue=@var{all|rx|tx}[,vnet_hdr_support]
4452d46f75b2SZhang Chen
4453d46f75b2SZhang Chenfilter-redirector on netdev @var{netdevid},redirect filter's net packet to chardev
445400d5c240SZhang Chen@var{chardevid},and redirect indev's packet to filter.if it has the vnet_hdr_support flag,
445500d5c240SZhang Chenfilter-redirector will redirect packet with vnet_hdr_len.
4456d46f75b2SZhang ChenCreate a filter-redirector we need to differ outdev id from indev id, id can not
4457d46f75b2SZhang Chenbe the same. we can just use indev or outdev, but at least one of indev or outdev
4458d46f75b2SZhang Chenneed to be specified.
4459d46f75b2SZhang Chen
44604b39bdceSZhang Chen@item -object filter-rewriter,id=@var{id},netdev=@var{netdevid},queue=@var{all|rx|tx},[vnet_hdr_support]
4461e6eee8abSZhang Chen
4462e6eee8abSZhang ChenFilter-rewriter is a part of COLO project.It will rewrite tcp packet to
4463e6eee8abSZhang Chensecondary from primary to keep secondary tcp connection,and rewrite
4464e6eee8abSZhang Chentcp packet to primary from secondary make tcp packet can be handled by
44654b39bdceSZhang Chenclient.if it has the vnet_hdr_support flag, we can parse packet with vnet header.
4466e6eee8abSZhang Chen
4467e6eee8abSZhang Chenusage:
4468e6eee8abSZhang Chencolo secondary:
4469e6eee8abSZhang Chen-object filter-redirector,id=f1,netdev=hn0,queue=tx,indev=red0
4470e6eee8abSZhang Chen-object filter-redirector,id=f2,netdev=hn0,queue=rx,outdev=red1
4471e6eee8abSZhang Chen-object filter-rewriter,id=rew0,netdev=hn0,queue=all
4472e6eee8abSZhang Chen
4473c551cd52SChanglong Xie@item -object filter-dump,id=@var{id},netdev=@var{dev}[,file=@var{filename}][,maxlen=@var{len}]
4474d3e0c032SThomas Huth
4475d3e0c032SThomas HuthDump the network traffic on netdev @var{dev} to the file specified by
4476d3e0c032SThomas Huth@var{filename}. At most @var{len} bytes (64k by default) per packet are stored.
4477d3e0c032SThomas HuthThe file format is libpcap, so it can be analyzed with tools such as tcpdump
4478d3e0c032SThomas Huthor Wireshark.
4479d3e0c032SThomas Huth
44805aede7f4SZhang Chen@item -object colo-compare,id=@var{id},primary_in=@var{chardevid},secondary_in=@var{chardevid},outdev=@var{chardevid},iothread=@var{id}[,vnet_hdr_support]
44817dce4e6fSZhang Chen
44827dce4e6fSZhang ChenColo-compare gets packet from primary_in@var{chardevid} and secondary_in@var{chardevid}, than compare primary packet with
44837dce4e6fSZhang Chensecondary packet. If the packets are same, we will output primary
44847dce4e6fSZhang Chenpacket to outdev@var{chardevid}, else we will notify colo-frame
44857dce4e6fSZhang Chendo checkpoint and send primary packet to outdev@var{chardevid}.
44865aede7f4SZhang ChenIn order to improve efficiency, we need to put the task of comparison
44875aede7f4SZhang Chenin another thread. If it has the vnet_hdr_support flag, colo compare
44885aede7f4SZhang Chenwill send/recv packet with vnet_hdr_len.
44897dce4e6fSZhang Chen
44907dce4e6fSZhang Chenwe must use it with the help of filter-mirror and filter-redirector.
44917dce4e6fSZhang Chen
44927dce4e6fSZhang Chen@example
44937dce4e6fSZhang Chen
44947dce4e6fSZhang Chenprimary:
44957dce4e6fSZhang Chen-netdev tap,id=hn0,vhost=off,script=/etc/qemu-ifup,downscript=/etc/qemu-ifdown
44967dce4e6fSZhang Chen-device e1000,id=e0,netdev=hn0,mac=52:a4:00:12:78:66
44977dce4e6fSZhang Chen-chardev socket,id=mirror0,host=3.3.3.3,port=9003,server,nowait
44987dce4e6fSZhang Chen-chardev socket,id=compare1,host=3.3.3.3,port=9004,server,nowait
44997dce4e6fSZhang Chen-chardev socket,id=compare0,host=3.3.3.3,port=9001,server,nowait
45007dce4e6fSZhang Chen-chardev socket,id=compare0-0,host=3.3.3.3,port=9001
45017dce4e6fSZhang Chen-chardev socket,id=compare_out,host=3.3.3.3,port=9005,server,nowait
45027dce4e6fSZhang Chen-chardev socket,id=compare_out0,host=3.3.3.3,port=9005
45035aede7f4SZhang Chen-object iothread,id=iothread1
45047dce4e6fSZhang Chen-object filter-mirror,id=m0,netdev=hn0,queue=tx,outdev=mirror0
45057dce4e6fSZhang Chen-object filter-redirector,netdev=hn0,id=redire0,queue=rx,indev=compare_out
45067dce4e6fSZhang Chen-object filter-redirector,netdev=hn0,id=redire1,queue=rx,outdev=compare0
45075aede7f4SZhang Chen-object colo-compare,id=comp0,primary_in=compare0-0,secondary_in=compare1,outdev=compare_out0,iothread=iothread1
45087dce4e6fSZhang Chen
45097dce4e6fSZhang Chensecondary:
45107dce4e6fSZhang Chen-netdev tap,id=hn0,vhost=off,script=/etc/qemu-ifup,down script=/etc/qemu-ifdown
45117dce4e6fSZhang Chen-device e1000,netdev=hn0,mac=52:a4:00:12:78:66
45127dce4e6fSZhang Chen-chardev socket,id=red0,host=3.3.3.3,port=9003
45137dce4e6fSZhang Chen-chardev socket,id=red1,host=3.3.3.3,port=9004
45147dce4e6fSZhang Chen-object filter-redirector,id=f1,netdev=hn0,queue=tx,indev=red0
45157dce4e6fSZhang Chen-object filter-redirector,id=f2,netdev=hn0,queue=rx,outdev=red1
45167dce4e6fSZhang Chen
45177dce4e6fSZhang Chen@end example
45187dce4e6fSZhang Chen
45197dce4e6fSZhang ChenIf you want to know the detail of above command line, you can read
45207dce4e6fSZhang Chenthe colo-compare git log.
45217dce4e6fSZhang Chen
45221653a5f3SGonglei@item -object cryptodev-backend-builtin,id=@var{id}[,queues=@var{queues}]
45231653a5f3SGonglei
45241653a5f3SGongleiCreates a cryptodev backend which executes crypto opreation from
45251653a5f3SGongleithe QEMU cipher APIS. The @var{id} parameter is
45261653a5f3SGongleia unique ID that will be used to reference this cryptodev backend from
45271653a5f3SGongleithe @option{virtio-crypto} device. The @var{queues} parameter is optional,
45281653a5f3SGongleiwhich specify the queue number of cryptodev backend, the default of
45291653a5f3SGonglei@var{queues} is 1.
45301653a5f3SGonglei
45311653a5f3SGonglei@example
45321653a5f3SGonglei
45331653a5f3SGonglei # qemu-system-x86_64 \
45341653a5f3SGonglei   [...] \
45351653a5f3SGonglei       -object cryptodev-backend-builtin,id=cryptodev0 \
45361653a5f3SGonglei       -device virtio-crypto-pci,id=crypto0,cryptodev=cryptodev0 \
45371653a5f3SGonglei   [...]
45381653a5f3SGonglei@end example
45391653a5f3SGonglei
4540042cea27SGonglei@item -object cryptodev-vhost-user,id=@var{id},chardev=@var{chardevid}[,queues=@var{queues}]
4541042cea27SGonglei
4542042cea27SGongleiCreates a vhost-user cryptodev backend, backed by a chardev @var{chardevid}.
4543042cea27SGongleiThe @var{id} parameter is a unique ID that will be used to reference this
4544042cea27SGongleicryptodev backend from the @option{virtio-crypto} device.
4545042cea27SGongleiThe chardev should be a unix domain socket backed one. The vhost-user uses
4546042cea27SGongleia specifically defined protocol to pass vhost ioctl replacement messages
4547042cea27SGongleito an application on the other end of the socket.
4548042cea27SGongleiThe @var{queues} parameter is optional, which specify the queue number
4549042cea27SGongleiof cryptodev backend for multiqueue vhost-user, the default of @var{queues} is 1.
4550042cea27SGonglei
4551042cea27SGonglei@example
4552042cea27SGonglei
4553042cea27SGonglei # qemu-system-x86_64 \
4554042cea27SGonglei   [...] \
4555042cea27SGonglei       -chardev socket,id=chardev0,path=/path/to/socket \
4556042cea27SGonglei       -object cryptodev-vhost-user,id=cryptodev0,chardev=chardev0 \
4557042cea27SGonglei       -device virtio-crypto-pci,id=crypto0,cryptodev=cryptodev0 \
4558042cea27SGonglei   [...]
4559042cea27SGonglei@end example
4560042cea27SGonglei
4561ac1d8878SDaniel P. Berrange@item -object secret,id=@var{id},data=@var{string},format=@var{raw|base64}[,keyid=@var{secretid},iv=@var{string}]
4562ac1d8878SDaniel P. Berrange@item -object secret,id=@var{id},file=@var{filename},format=@var{raw|base64}[,keyid=@var{secretid},iv=@var{string}]
4563ac1d8878SDaniel P. Berrange
4564ac1d8878SDaniel P. BerrangeDefines a secret to store a password, encryption key, or some other sensitive
4565ac1d8878SDaniel P. Berrangedata. The sensitive data can either be passed directly via the @var{data}
4566ac1d8878SDaniel P. Berrangeparameter, or indirectly via the @var{file} parameter. Using the @var{data}
4567ac1d8878SDaniel P. Berrangeparameter is insecure unless the sensitive data is encrypted.
4568ac1d8878SDaniel P. Berrange
4569ac1d8878SDaniel P. BerrangeThe sensitive data can be provided in raw format (the default), or base64.
4570ac1d8878SDaniel P. BerrangeWhen encoded as JSON, the raw format only supports valid UTF-8 characters,
4571ac1d8878SDaniel P. Berrangeso base64 is recommended for sending binary data. QEMU will convert from
4572ac1d8878SDaniel P. Berrangewhich ever format is provided to the format it needs internally. eg, an
4573ac1d8878SDaniel P. BerrangeRBD password can be provided in raw format, even though it will be base64
4574ac1d8878SDaniel P. Berrangeencoded when passed onto the RBD sever.
4575ac1d8878SDaniel P. Berrange
4576ac1d8878SDaniel P. BerrangeFor added protection, it is possible to encrypt the data associated with
4577ac1d8878SDaniel P. Berrangea secret using the AES-256-CBC cipher. Use of encryption is indicated
4578ac1d8878SDaniel P. Berrangeby providing the @var{keyid} and @var{iv} parameters. The @var{keyid}
4579ac1d8878SDaniel P. Berrangeparameter provides the ID of a previously defined secret that contains
4580ac1d8878SDaniel P. Berrangethe AES-256 decryption key. This key should be 32-bytes long and be
4581ac1d8878SDaniel P. Berrangebase64 encoded. The @var{iv} parameter provides the random initialization
4582ac1d8878SDaniel P. Berrangevector used for encryption of this particular secret and should be a
458369c0b278SDaniel P. Berrangebase64 encrypted string of the 16-byte IV.
4584ac1d8878SDaniel P. Berrange
4585ac1d8878SDaniel P. BerrangeThe simplest (insecure) usage is to provide the secret inline
4586ac1d8878SDaniel P. Berrange
4587ac1d8878SDaniel P. Berrange@example
4588ac1d8878SDaniel P. Berrange
4589ac1d8878SDaniel P. Berrange # $QEMU -object secret,id=sec0,data=letmein,format=raw
4590ac1d8878SDaniel P. Berrange
4591ac1d8878SDaniel P. Berrange@end example
4592ac1d8878SDaniel P. Berrange
4593ac1d8878SDaniel P. BerrangeThe simplest secure usage is to provide the secret via a file
4594ac1d8878SDaniel P. Berrange
4595b43671f8SEric Blake # printf "letmein" > mypasswd.txt
4596ac1d8878SDaniel P. Berrange # $QEMU -object secret,id=sec0,file=mypasswd.txt,format=raw
4597ac1d8878SDaniel P. Berrange
4598ac1d8878SDaniel P. BerrangeFor greater security, AES-256-CBC should be used. To illustrate usage,
4599ac1d8878SDaniel P. Berrangeconsider the openssl command line tool which can encrypt the data. Note
4600ac1d8878SDaniel P. Berrangethat when encrypting, the plaintext must be padded to the cipher block
4601ac1d8878SDaniel P. Berrangesize (32 bytes) using the standard PKCS#5/6 compatible padding algorithm.
4602ac1d8878SDaniel P. Berrange
4603ac1d8878SDaniel P. BerrangeFirst a master key needs to be created in base64 encoding:
4604ac1d8878SDaniel P. Berrange
4605ac1d8878SDaniel P. Berrange@example
4606ac1d8878SDaniel P. Berrange # openssl rand -base64 32 > key.b64
4607ac1d8878SDaniel P. Berrange # KEY=$(base64 -d key.b64 | hexdump  -v -e '/1 "%02X"')
4608ac1d8878SDaniel P. Berrange@end example
4609ac1d8878SDaniel P. Berrange
4610ac1d8878SDaniel P. BerrangeEach secret to be encrypted needs to have a random initialization vector
4611ac1d8878SDaniel P. Berrangegenerated. These do not need to be kept secret
4612ac1d8878SDaniel P. Berrange
4613ac1d8878SDaniel P. Berrange@example
4614ac1d8878SDaniel P. Berrange # openssl rand -base64 16 > iv.b64
4615ac1d8878SDaniel P. Berrange # IV=$(base64 -d iv.b64 | hexdump  -v -e '/1 "%02X"')
4616ac1d8878SDaniel P. Berrange@end example
4617ac1d8878SDaniel P. Berrange
4618ac1d8878SDaniel P. BerrangeThe secret to be defined can now be encrypted, in this case we're
4619ac1d8878SDaniel P. Berrangetelling openssl to base64 encode the result, but it could be left
4620ac1d8878SDaniel P. Berrangeas raw bytes if desired.
4621ac1d8878SDaniel P. Berrange
4622ac1d8878SDaniel P. Berrange@example
4623b43671f8SEric Blake # SECRET=$(printf "letmein" |
4624ac1d8878SDaniel P. Berrange            openssl enc -aes-256-cbc -a -K $KEY -iv $IV)
4625ac1d8878SDaniel P. Berrange@end example
4626ac1d8878SDaniel P. Berrange
4627ac1d8878SDaniel P. BerrangeWhen launching QEMU, create a master secret pointing to @code{key.b64}
4628ac1d8878SDaniel P. Berrangeand specify that to be used to decrypt the user password. Pass the
4629ac1d8878SDaniel P. Berrangecontents of @code{iv.b64} to the second secret
4630ac1d8878SDaniel P. Berrange
4631ac1d8878SDaniel P. Berrange@example
4632ac1d8878SDaniel P. Berrange # $QEMU \
4633ac1d8878SDaniel P. Berrange     -object secret,id=secmaster0,format=base64,file=key.b64 \
4634ac1d8878SDaniel P. Berrange     -object secret,id=sec0,keyid=secmaster0,format=base64,\
4635ac1d8878SDaniel P. Berrange         data=$SECRET,iv=$(<iv.b64)
4636ac1d8878SDaniel P. Berrange@end example
4637ac1d8878SDaniel P. Berrange
4638a9b4942fSBrijesh Singh@item -object sev-guest,id=@var{id},cbitpos=@var{cbitpos},reduced-phys-bits=@var{val},[sev-device=@var{string},policy=@var{policy},handle=@var{handle},dh-cert-file=@var{file},session-file=@var{file}]
4639a9b4942fSBrijesh Singh
4640a9b4942fSBrijesh SinghCreate a Secure Encrypted Virtualization (SEV) guest object, which can be used
4641a9b4942fSBrijesh Singhto provide the guest memory encryption support on AMD processors.
4642a9b4942fSBrijesh Singh
4643a9b4942fSBrijesh SinghWhen memory encryption is enabled, one of the physical address bit (aka the
4644a9b4942fSBrijesh SinghC-bit) is utilized to mark if a memory page is protected. The @option{cbitpos}
4645a9b4942fSBrijesh Singhis used to provide the C-bit position. The C-bit position is Host family dependent
4646a9b4942fSBrijesh Singhhence user must provide this value. On EPYC, the value should be 47.
4647a9b4942fSBrijesh Singh
4648a9b4942fSBrijesh SinghWhen memory encryption is enabled, we loose certain bits in physical address space.
4649a9b4942fSBrijesh SinghThe @option{reduced-phys-bits} is used to provide the number of bits we loose in
4650a9b4942fSBrijesh Singhphysical address space. Similar to C-bit, the value is Host family dependent.
4651a9b4942fSBrijesh SinghOn EPYC, the value should be 5.
4652a9b4942fSBrijesh Singh
4653a9b4942fSBrijesh SinghThe @option{sev-device} provides the device file to use for communicating with
4654a9b4942fSBrijesh Singhthe SEV firmware running inside AMD Secure Processor. The default device is
4655a9b4942fSBrijesh Singh'/dev/sev'. If hardware supports memory encryption then /dev/sev devices are
4656a9b4942fSBrijesh Singhcreated by CCP driver.
4657a9b4942fSBrijesh Singh
4658a9b4942fSBrijesh SinghThe @option{policy} provides the guest policy to be enforced by the SEV firmware
4659a9b4942fSBrijesh Singhand restrict what configuration and operational commands can be performed on this
4660a9b4942fSBrijesh Singhguest by the hypervisor. The policy should be provided by the guest owner and is
4661a9b4942fSBrijesh Singhbound to the guest and cannot be changed throughout the lifetime of the guest.
4662a9b4942fSBrijesh SinghThe default is 0.
4663a9b4942fSBrijesh Singh
4664a9b4942fSBrijesh SinghIf guest @option{policy} allows sharing the key with another SEV guest then
4665a9b4942fSBrijesh Singh@option{handle} can be use to provide handle of the guest from which to share
4666a9b4942fSBrijesh Singhthe key.
4667a9b4942fSBrijesh Singh
4668a9b4942fSBrijesh SinghThe @option{dh-cert-file} and @option{session-file} provides the guest owner's
4669a9b4942fSBrijesh SinghPublic Diffie-Hillman key defined in SEV spec. The PDH and session parameters
4670a9b4942fSBrijesh Singhare used for establishing a cryptographic session with the guest owner to
4671a9b4942fSBrijesh Singhnegotiate keys used for attestation. The file must be encoded in base64.
4672a9b4942fSBrijesh Singh
4673a9b4942fSBrijesh Singhe.g to launch a SEV guest
4674a9b4942fSBrijesh Singh@example
4675a9b4942fSBrijesh Singh # $QEMU \
4676a9b4942fSBrijesh Singh     ......
4677a9b4942fSBrijesh Singh     -object sev-guest,id=sev0,cbitpos=47,reduced-phys-bits=5 \
4678a9b4942fSBrijesh Singh     -machine ...,memory-encryption=sev0
4679a9b4942fSBrijesh Singh     .....
4680a9b4942fSBrijesh Singh
4681a9b4942fSBrijesh Singh@end example
4682fb5c4ebcSDaniel P. Berrangé
4683fb5c4ebcSDaniel P. Berrangé
4684fb5c4ebcSDaniel P. Berrangé@item -object authz-simple,id=@var{id},identity=@var{string}
4685fb5c4ebcSDaniel P. Berrangé
4686fb5c4ebcSDaniel P. BerrangéCreate an authorization object that will control access to network services.
4687fb5c4ebcSDaniel P. Berrangé
4688fb5c4ebcSDaniel P. BerrangéThe @option{identity} parameter is identifies the user and its format
4689fb5c4ebcSDaniel P. Berrangédepends on the network service that authorization object is associated
4690fb5c4ebcSDaniel P. Berrangéwith. For authorizing based on TLS x509 certificates, the identity must
4691fb5c4ebcSDaniel P. Berrangébe the x509 distinguished name. Note that care must be taken to escape
4692fb5c4ebcSDaniel P. Berrangéany commas in the distinguished name.
4693fb5c4ebcSDaniel P. Berrangé
4694fb5c4ebcSDaniel P. BerrangéAn example authorization object to validate a x509 distinguished name
4695fb5c4ebcSDaniel P. Berrangéwould look like:
4696fb5c4ebcSDaniel P. Berrangé@example
4697fb5c4ebcSDaniel P. Berrangé # $QEMU \
4698fb5c4ebcSDaniel P. Berrangé     ...
4699fb5c4ebcSDaniel P. Berrangé     -object 'authz-simple,id=auth0,identity=CN=laptop.example.com,,O=Example Org,,L=London,,ST=London,,C=GB' \
4700fb5c4ebcSDaniel P. Berrangé     ...
4701fb5c4ebcSDaniel P. Berrangé@end example
4702fb5c4ebcSDaniel P. Berrangé
4703fb5c4ebcSDaniel P. BerrangéNote the use of quotes due to the x509 distinguished name containing
4704fb5c4ebcSDaniel P. Berrangéwhitespace, and escaping of ','.
4705fb5c4ebcSDaniel P. Berrangé
470655d86984SDaniel P. Berrangé@item -object authz-listfile,id=@var{id},filename=@var{path},refresh=@var{yes|no}
470755d86984SDaniel P. Berrangé
470855d86984SDaniel P. BerrangéCreate an authorization object that will control access to network services.
470955d86984SDaniel P. Berrangé
471055d86984SDaniel P. BerrangéThe @option{filename} parameter is the fully qualified path to a file
471155d86984SDaniel P. Berrangécontaining the access control list rules in JSON format.
471255d86984SDaniel P. Berrangé
471355d86984SDaniel P. BerrangéAn example set of rules that match against SASL usernames might look
471455d86984SDaniel P. Berrangélike:
471555d86984SDaniel P. Berrangé
471655d86984SDaniel P. Berrangé@example
471755d86984SDaniel P. Berrangé  @{
471855d86984SDaniel P. Berrangé    "rules": [
471955d86984SDaniel P. Berrangé       @{ "match": "fred", "policy": "allow", "format": "exact" @},
472055d86984SDaniel P. Berrangé       @{ "match": "bob", "policy": "allow", "format": "exact" @},
472155d86984SDaniel P. Berrangé       @{ "match": "danb", "policy": "deny", "format": "glob" @},
472255d86984SDaniel P. Berrangé       @{ "match": "dan*", "policy": "allow", "format": "exact" @},
472355d86984SDaniel P. Berrangé    ],
472455d86984SDaniel P. Berrangé    "policy": "deny"
472555d86984SDaniel P. Berrangé  @}
472655d86984SDaniel P. Berrangé@end example
472755d86984SDaniel P. Berrangé
472855d86984SDaniel P. BerrangéWhen checking access the object will iterate over all the rules and
472955d86984SDaniel P. Berrangéthe first rule to match will have its @option{policy} value returned
473055d86984SDaniel P. Berrangéas the result. If no rules match, then the default @option{policy}
473155d86984SDaniel P. Berrangévalue is returned.
473255d86984SDaniel P. Berrangé
473355d86984SDaniel P. BerrangéThe rules can either be an exact string match, or they can use the
473455d86984SDaniel P. Berrangésimple UNIX glob pattern matching to allow wildcards to be used.
473555d86984SDaniel P. Berrangé
473655d86984SDaniel P. BerrangéIf @option{refresh} is set to true the file will be monitored
473755d86984SDaniel P. Berrangéand automatically reloaded whenever its content changes.
473855d86984SDaniel P. Berrangé
473955d86984SDaniel P. BerrangéAs with the @code{authz-simple} object, the format of the identity
474055d86984SDaniel P. Berrangéstrings being matched depends on the network service, but is usually
474155d86984SDaniel P. Berrangéa TLS x509 distinguished name, or a SASL username.
474255d86984SDaniel P. Berrangé
474355d86984SDaniel P. BerrangéAn example authorization object to validate a SASL username
474455d86984SDaniel P. Berrangéwould look like:
474555d86984SDaniel P. Berrangé@example
474655d86984SDaniel P. Berrangé # $QEMU \
474755d86984SDaniel P. Berrangé     ...
474855d86984SDaniel P. Berrangé     -object authz-simple,id=auth0,filename=/etc/qemu/vnc-sasl.acl,refresh=yes
474955d86984SDaniel P. Berrangé     ...
475055d86984SDaniel P. Berrangé@end example
475155d86984SDaniel P. Berrangé
47528953caf3SDaniel P. Berrange@item -object authz-pam,id=@var{id},service=@var{string}
47538953caf3SDaniel P. Berrange
47548953caf3SDaniel P. BerrangeCreate an authorization object that will control access to network services.
47558953caf3SDaniel P. Berrange
47568953caf3SDaniel P. BerrangeThe @option{service} parameter provides the name of a PAM service to use
47578953caf3SDaniel P. Berrangefor authorization. It requires that a file @code{/etc/pam.d/@var{service}}
47588953caf3SDaniel P. Berrangeexist to provide the configuration for the @code{account} subsystem.
47598953caf3SDaniel P. Berrange
47608953caf3SDaniel P. BerrangeAn example authorization object to validate a TLS x509 distinguished
47618953caf3SDaniel P. Berrangename would look like:
47628953caf3SDaniel P. Berrange
47638953caf3SDaniel P. Berrange@example
47648953caf3SDaniel P. Berrange # $QEMU \
47658953caf3SDaniel P. Berrange     ...
47668953caf3SDaniel P. Berrange     -object authz-pam,id=auth0,service=qemu-vnc
47678953caf3SDaniel P. Berrange     ...
47688953caf3SDaniel P. Berrange@end example
47698953caf3SDaniel P. Berrange
47708953caf3SDaniel P. BerrangeThere would then be a corresponding config file for PAM at
47718953caf3SDaniel P. Berrange@code{/etc/pam.d/qemu-vnc} that contains:
47728953caf3SDaniel P. Berrange
47738953caf3SDaniel P. Berrange@example
47748953caf3SDaniel P. Berrangeaccount requisite  pam_listfile.so item=user sense=allow \
47758953caf3SDaniel P. Berrange           file=/etc/qemu/vnc.allow
47768953caf3SDaniel P. Berrange@end example
47778953caf3SDaniel P. Berrange
47788953caf3SDaniel P. BerrangeFinally the @code{/etc/qemu/vnc.allow} file would contain
47798953caf3SDaniel P. Berrangethe list of x509 distingished names that are permitted
47808953caf3SDaniel P. Berrangeaccess
47818953caf3SDaniel P. Berrange
47828953caf3SDaniel P. Berrange@example
47838953caf3SDaniel P. BerrangeCN=laptop.example.com,O=Example Home,L=London,ST=London,C=GB
47848953caf3SDaniel P. Berrange@end example
47858953caf3SDaniel P. Berrange
47868953caf3SDaniel P. Berrange
4787b9174d4fSDaniel P. Berrange@end table
4788b9174d4fSDaniel P. Berrange
4789b9174d4fSDaniel P. BerrangeETEXI
4790b9174d4fSDaniel P. Berrange
4791b9174d4fSDaniel P. Berrange
47923dbf2c7fSStefan WeilHXCOMM This is the last statement. Insert new options before this line!
47933dbf2c7fSStefan WeilSTEXI
47943dbf2c7fSStefan Weil@end table
47953dbf2c7fSStefan WeilETEXI
4796