xref: /freebsd/usr.sbin/bhyve/bhyve.8 (revision 0572ccaa4543b0abef8ef81e384c1d04de9f3da1)
1.\" Copyright (c) 2013 Peter Grehan
2.\" All rights reserved.
3.\"
4.\" Redistribution and use in source and binary forms, with or without
5.\" modification, are permitted provided that the following conditions
6.\" are met:
7.\" 1. Redistributions of source code must retain the above copyright
8.\"    notice, this list of conditions and the following disclaimer.
9.\" 2. Redistributions in binary form must reproduce the above copyright
10.\"    notice, this list of conditions and the following disclaimer in the
11.\"    documentation and/or other materials provided with the distribution.
12.\"
13.\" THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND
14.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
16.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE
17.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
19.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
23.\" SUCH DAMAGE.
24.\"
25.\" $FreeBSD$
26.\"
27.Dd April 2, 2014
28.Dt BHYVE 8
29.Os
30.Sh NAME
31.Nm bhyve
32.Nd "run a guest operating system inside a virtual machine"
33.Sh SYNOPSIS
34.Nm
35.Op Fl aehwxACHPW
36.Op Fl c Ar numcpus
37.Op Fl g Ar gdbport
38.Op Fl p Ar vcpu:hostcpu
39.Op Fl s Ar slot,emulation Ns Op , Ns Ar conf
40.Op Fl l Ar lpcdev Ns Op , Ns Ar conf
41.Ar vmname
42.Sh DESCRIPTION
43.Nm
44is an experimental hypervisor that runs guest operating systems inside a
45virtual machine.
46.Pp
47Parameters such as the number of virtual CPUs, amount of guest memory, and
48I/O connectivity can be specified with command-line parameters.
49.Pp
50The guest operating system must be loaded with
51.Xr bhyveload 4
52or a similar boot loader before running
53.Nm .
54.Pp
55.Nm
56runs until the guest operating system reboots or an unhandled hypervisor
57exit is detected.
58.Sh OPTIONS
59.Bl -tag -width 10n
60.It Fl a
61The guest's local APIC is configured in xAPIC mode.
62
63The xAPIC mode is the default setting so this option is redundant. It will be
64deprecated in a future version.
65.It Fl A
66Generate ACPI tables.
67Required for
68.Fx Ns /amd64
69guests.
70.It Fl c Ar numcpus
71Number of guest virtual CPUs.
72The default is 1 and the maximum is 16.
73.It Fl C
74Include guest memory in core file.
75.It Fl H
76Yield the virtual CPU thread when a HLT instruction is detected.
77If this option is not specified, virtual CPUs will use 100% of a host CPU.
78.It Fl g Ar gdbport
79For
80.Fx Ns /amd64 kernels compiled with
81.Cd "option bvmdebug" ,
82allow a remote kernel kgdb to be relayed to the guest kernel gdb stub
83via a local IPv4 address and this port.
84This option will be deprecated in a future version.
85.It Fl p Ar vcpu:hostcpu
86Pin guest's virtual CPU
87.Em vcpu
88to
89.Em hostcpu .
90.It Fl P
91Force the guest virtual CPU to exit when a PAUSE instruction is detected.
92.It Fl W
93Force virtio PCI device emulations to use MSI interrupts instead of MSI-X
94interrupts.
95.It Fl s Ar slot,emulation Ns Op , Ns Ar conf
96Configure a virtual PCI slot and function.
97.Pp
98.Nm bhyve
99provides PCI bus emulation and virtual devices that can be attached to
100slots on the bus.
101There are 32 available slots, with the option of providing up to 8 functions
102per slot.
103.Bl -tag -width 10n
104.It Ar slot
105.Ar pcislot[:function]
106
107.Ar bus:pcislot:function
108.Pp
109The
110.Ar pcislot
111value is 0 to 31. The optional function value is 0 to 7. The optional
112.Ar bus
113value is 0 to 255.
114If not specified, the function value defaults to 0.
115If not specified, the bus value defaults to 0.
116.It Ar emulation
117.Bl -tag -width 10n
118.It Li hostbridge | Li amd_hostbridge
119.Pp
120Provide a simple host bridge.
121This is usually configured at slot 0, and is required by most guest
122operating systems.
123The
124.Li amd_hostbridge
125emulation is identical but uses a PCI vendor ID of
126.Li AMD .
127.It Li passthru
128PCI pass-through device.
129.It Li virtio-net
130Virtio network interface.
131.It Li virtio-blk
132Virtio block storage interface.
133.It Li virtio-rnd
134Virtio RNG interface.
135.It Li ahci-cd
136AHCI controller attached to an ATAPI CD/DVD.
137.It Li ahci-hd
138AHCI controller attached to a SATA hard-drive.
139.It Li uart
140PCI 16550 serial device.
141.It Li lpc
142LPC PCI-ISA bridge with COM1 and COM2 16550 serial ports. The LPC bridge
143emulation can only be configured on bus 0.
144.El
145.It Op Ar conf
146This optional parameter describes the backend for device emulations.
147If
148.Ar conf
149is not specified, the device emulation has no backend and can be
150considered unconnected.
151.Pp
152Network devices:
153.Bl -tag -width 10n
154.It Ar tapN Ns Op , Ns Ar mac=xx:xx:xx:xx:xx:xx
155.It Ar vmnetN Ns Op , Ns Ar mac=xx:xx:xx:xx:xx:xx
156.Pp
157If
158.Ar mac
159is not specified, the MAC address is derived from a fixed OUI and the
160remaining bytes from an MD5 hash of the slot and function numbers and
161the device name.
162.Pp
163The MAC address is an ASCII string in
164.Xr ethers 5
165format.
166.El
167.Pp
168Block storage devices:
169.Bl -tag -width 10n
170.It Pa /filename Ns Oo , Ns Li nocache Oc Ns Oo , Ns Li direct Oc Ns Oo , Ns Li ro Oc
171.It Pa /dev/xxx Ns Oo , Ns Ar nocache Oc Ns Oo , Ns Ar direct Oc Ns Oo , Ns Ar ro Oc
172.Bl -tag -width 8n
173.It Li nocache
174Open the file with
175.Dv O_DIRECT .
176.It Li direct
177Open the file using
178.Dv O_SYNC .
179.It Li ro
180Force the file to be opened read-only.
181.El
182.Pp
183The
184.Li nocache ,
185.Li direct ,
186and
187.Li ro
188options are not available for virtio block devices.
189.El
190.Pp
191TTY devices:
192.Bl -tag -width 10n
193.It Li stdio
194Connect the serial port to the standard input and output of
195the bhyve process.
196.It Pa /dev/xxx
197Use the host TTY device for serial port I/O.
198.El
199.Pp
200Pass-through devices:
201.Bl -tag -width 10n
202.It Ns Ar slot Ns / Ns Ar bus Ns / Ns Ar function
203Connect to a PCI device on the host at the selector described by
204.Ar slot ,
205.Ar bus ,
206and
207.Ar function
208numbers.
209.El
210.Pp
211The host device must have been reserved at boot-time using the
212.Va pptdev
213loader variable as described in
214.Xr vmm 4 .
215.El
216.It Fl l Ar lpcdev Ns Op , Ns Ar conf
217Allow devices behind the LPC PCI-ISA bridge to be configured.
218The only supported devices are the TTY-class devices,
219.Li com1
220and
221.Li com2 .
222.It Fl m Ar size Ns Op Ar K|k|M|m|G|g|T|t
223Guest physical memory size in bytes.
224This must be the same size that was given to
225.Xr bhyveload 8 .
226.Pp
227The size argument may be suffixed with one of K, M, G or T (either upper
228or lower case) to indicate a multiple of kilobytes, megabytes, gigabytes,
229or terabytes.
230If no suffix is given, the value is assumed to be in megabytes.
231.It Fl e
232Force
233.Nm
234to exit when a guest issues an access to an I/O port that is not emulated.
235This is intended for debug purposes.
236.It Fl w
237Ignore accesses to unimplemented Model Specific Registers (MSRs). This is intended for debug purposes.
238.It Fl x
239The guest's local APIC is configured in x2APIC mode.
240.It Fl Y
241Disable MPtable generation.
242.It Fl h
243Print help message and exit.
244.It Ar vmname
245Alphanumeric name of the guest.
246This should be the same as that created by
247.Xr bhyveload 8 .
248.El
249.Sh EXAMPLES
250The guest operating system must have been loaded with
251.Xr bhyveload 4
252or a similar boot loader before
253.Xr bhyve 4
254can be run.
255.Pp
256To run a virtual machine with 1GB of memory, two virtual CPUs, a virtio
257block device backed by the
258.Pa /my/image
259filesystem image, and a serial port for the console:
260.Bd -literal -offset indent
261bhyve -c 2 -s 0,hostbridge -s 1,lpc -s 2,virtio-blk,/my/image \\
262  -l com1,stdio -A -H -P -m 1G vm1
263.Ed
264.Pp
265Run a 24GB single-CPU virtual machine with three network ports, one of which
266has a MAC address specified:
267.Bd -literal -offset indent
268bhyve -s 0,hostbridge -s 1,lpc -s 2:0,virtio-net,tap0 \\
269  -s 2:1,virtio-net,tap1 \\
270  -s 2:2,virtio-net,tap2,mac=00:be:fa:76:45:00 \\
271  -s 3,virtio-blk,/my/image -l com1,stdio \\
272  -A -H -P -m 24G bigvm
273.Ed
274.Pp
275Run an 8GB quad-CPU virtual machine with 8 AHCI SATA disks, an AHCI ATAPI
276CD-ROM, a single virtio network port, an AMD hostbridge, and the console
277port connected to an
278.Xr nmdm 4
279null-model device.
280.Bd -literal -offset indent
281bhyve -c 4 \e\
282  -s 0,amd_hostbridge -s 1,lpc \\
283  -s 1:0,ahci-hd,/images/disk.1 \\
284  -s 1:1,ahci-hd,/images/disk.2 \\
285  -s 1:2,ahci-hd,/images/disk.3 \\
286  -s 1:3,ahci-hd,/images/disk.4 \\
287  -s 1:4,ahci-hd,/images/disk.5 \\
288  -s 1:5,ahci-hd,/images/disk.6 \\
289  -s 1:6,ahci-hd,/images/disk.7 \\
290  -s 1:7,ahci-hd,/images/disk.8 \\
291  -s 2,ahci-cd,/images.install.iso \\
292  -s 3,virtio-net,tap0 \\
293  -l com1,/dev/nmdm0A \\
294  -A -H -P -m 8G
295.Ed
296.Sh SEE ALSO
297.Xr bhyve 4 ,
298.Xr nmdm 4 ,
299.Xr vmm 4 ,
300.Xr ethers 5 ,
301.Xr bhyvectl 8 ,
302.Xr bhyveload 8
303.Sh HISTORY
304.Nm
305first appeared in
306.Fx 10.0 .
307.Sh AUTHORS
308.An Neel Natu Aq neel@freebsd.org
309.An Peter Grehan Aq grehan@freebsd.org
310