xref: /freebsd/usr.sbin/bhyve/bhyve.8 (revision 193d9e768ba63fcfb187cfd17f461f7d41345048)
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 February 27, 2017
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 abehuwxACHPSWY
36.Op Fl c Ar numcpus
37.Op Fl g Ar gdbport
38.Op Fl l Ar lpcdev Ns Op , Ns Ar conf
39.Op Fl m Ar memsize Ns Op Ar K|k|M|m|G|g|T|t
40.Op Fl p Ar vcpu:hostcpu
41.Op Fl s Ar slot,emulation Ns Op , Ns Ar conf
42.Op Fl U Ar uuid
43.Ar vmname
44.Sh DESCRIPTION
45.Nm
46is a hypervisor that runs guest operating systems inside a
47virtual machine.
48.Pp
49Parameters such as the number of virtual CPUs, amount of guest memory, and
50I/O connectivity can be specified with command-line parameters.
51.Pp
52The guest operating system must be loaded with
53.Xr bhyveload 8
54or a similar boot loader before running
55.Nm .
56.Pp
57.Nm
58runs until the guest operating system reboots or an unhandled hypervisor
59exit is detected.
60.Sh OPTIONS
61.Bl -tag -width 10n
62.It Fl a
63The guest's local APIC is configured in xAPIC mode.
64The xAPIC mode is the default setting so this option is redundant.
65It will be deprecated in a future version.
66.It Fl A
67Generate ACPI tables.
68Required for
69.Fx Ns /amd64
70guests.
71.It Fl b
72Enable a low-level console device supported by
73.Fx
74kernels compiled with
75.Cd "device bvmconsole" .
76This option will be deprecated in a future version.
77.It Fl c Ar numcpus
78Number of guest virtual CPUs.
79The default is 1 and the maximum is 16.
80.It Fl C
81Include guest memory in core file.
82.It Fl e
83Force
84.Nm
85to exit when a guest issues an access to an I/O port that is not emulated.
86This is intended for debug purposes.
87.It Fl g Ar gdbport
88For
89.Fx
90kernels compiled with
91.Cd "device bvmdebug" ,
92allow a remote kernel kgdb to be relayed to the guest kernel gdb stub
93via a local IPv4 address and this port.
94This option will be deprecated in a future version.
95.It Fl h
96Print help message and exit.
97.It Fl H
98Yield the virtual CPU thread when a HLT instruction is detected.
99If this option is not specified, virtual CPUs will use 100% of a host CPU.
100.It Fl l Ar lpcdev Ns Op , Ns Ar conf
101Allow devices behind the LPC PCI-ISA bridge to be configured.
102The only supported devices are the TTY-class devices
103.Ar com1
104and
105.Ar com2
106and the boot ROM device
107.Ar bootrom .
108.It Fl m Ar memsize Ns Op Ar K|k|M|m|G|g|T|t
109Guest physical memory size in bytes.
110This must be the same size that was given to
111.Xr bhyveload 8 .
112.Pp
113The size argument may be suffixed with one of K, M, G or T (either upper
114or lower case) to indicate a multiple of kilobytes, megabytes, gigabytes,
115or terabytes.
116If no suffix is given, the value is assumed to be in megabytes.
117.Pp
118.Ar memsize
119defaults to 256M.
120.It Fl p Ar vcpu:hostcpu
121Pin guest's virtual CPU
122.Em vcpu
123to
124.Em hostcpu .
125.It Fl P
126Force the guest virtual CPU to exit when a PAUSE instruction is detected.
127.It Fl s Ar slot,emulation Ns Op , Ns Ar conf
128Configure a virtual PCI slot and function.
129.Pp
130.Nm
131provides PCI bus emulation and virtual devices that can be attached to
132slots on the bus.
133There are 32 available slots, with the option of providing up to 8 functions
134per slot.
135.Bl -tag -width 10n
136.It Ar slot
137.Ar pcislot[:function]
138.Ar bus:pcislot:function
139.Pp
140The
141.Ar pcislot
142value is 0 to 31.
143The optional
144.Ar function
145value is 0 to 7.
146The optional
147.Ar bus
148value is 0 to 255.
149If not specified, the
150.Ar function
151value defaults to 0.
152If not specified, the
153.Ar bus
154value defaults to 0.
155.It Ar emulation
156.Bl -tag -width 10n
157.It Li hostbridge | Li amd_hostbridge
158.Pp
159Provide a simple host bridge.
160This is usually configured at slot 0, and is required by most guest
161operating systems.
162The
163.Li amd_hostbridge
164emulation is identical but uses a PCI vendor ID of
165.Li AMD .
166.It Li passthru
167PCI pass-through device.
168.It Li virtio-net
169Virtio network interface.
170.It Li virtio-blk
171Virtio block storage interface.
172.It Li virtio-rnd
173Virtio RNG interface.
174.It Li virtio-console
175Virtio console interface, which exposes multiple ports
176to the guest in the form of simple char devices for simple IO
177between the guest and host userspaces.
178.It Li ahci
179AHCI controller attached to arbitrary devices.
180.It Li ahci-cd
181AHCI controller attached to an ATAPI CD/DVD.
182.It Li ahci-hd
183AHCI controller attached to a SATA hard-drive.
184.It Li e1000
185Intel e82545 network interface.
186.It Li uart
187PCI 16550 serial device.
188.It Li lpc
189LPC PCI-ISA bridge with COM1 and COM2 16550 serial ports and a boot ROM.
190The LPC bridge emulation can only be configured on bus 0.
191.El
192.It Op Ar conf
193This optional parameter describes the backend for device emulations.
194If
195.Ar conf
196is not specified, the device emulation has no backend and can be
197considered unconnected.
198.Pp
199Network devices:
200.Bl -tag -width 10n
201.It Ar tapN Ns Op , Ns Ar mac=xx:xx:xx:xx:xx:xx
202.It Ar vmnetN Ns Op , Ns Ar mac=xx:xx:xx:xx:xx:xx
203.Pp
204If
205.Ar mac
206is not specified, the MAC address is derived from a fixed OUI and the
207remaining bytes from an MD5 hash of the slot and function numbers and
208the device name.
209.Pp
210The MAC address is an ASCII string in
211.Xr ethers 5
212format.
213.El
214.Pp
215Block storage devices:
216.Bl -tag -width 10n
217.It Pa /filename Ns Oo , Ns Ar block-device-options Oc
218.It Pa /dev/xxx Ns Oo , Ns Ar block-device-options Oc
219.El
220.Pp
221The
222.Ar block-device-options
223are:
224.Bl -tag -width 8n
225.It Li nocache
226Open the file with
227.Dv O_DIRECT .
228.It Li direct
229Open the file using
230.Dv O_SYNC .
231.It Li ro
232Force the file to be opened read-only.
233.It Li sectorsize= Ns Ar logical Ns Oo / Ns Ar physical Oc
234Specify the logical and physical sector sizes of the emulated disk.
235The physical sector size is optional and is equal to the logical sector size
236if not explicitly specified.
237.El
238.Pp
239TTY devices:
240.Bl -tag -width 10n
241.It Li stdio
242Connect the serial port to the standard input and output of
243the
244.Nm
245process.
246.It Pa /dev/xxx
247Use the host TTY device for serial port I/O.
248.El
249.Pp
250Boot ROM device:
251.Bl -tag -width 10n
252.It Pa romfile
253Map
254.Ar romfile
255in the guest address space reserved for boot firmware.
256.El
257.Pp
258Pass-through devices:
259.Bl -tag -width 10n
260.It Ns Ar slot Ns / Ns Ar bus Ns / Ns Ar function
261Connect to a PCI device on the host at the selector described by
262.Ar slot ,
263.Ar bus ,
264and
265.Ar function
266numbers.
267.El
268.Pp
269Guest memory must be wired using the
270.Fl S
271option when a pass-through device is configured.
272.Pp
273The host device must have been reserved at boot-time using the
274.Va pptdev
275loader variable as described in
276.Xr vmm 4 .
277.Pp
278Virtio console devices:
279.Bl -tag -width 10n
280.It Li port1= Ns Pa /path/to/port1.sock Ns ,anotherport= Ns Pa ...
281A maximum of 16 ports per device can be created.
282Every port is named and corresponds to a Unix domain socket created by
283.Nm .
284.Nm
285accepts at most one connection per port at a time.
286.Pp
287Limitations:
288.Bl -bullet -offset 2n
289.It
290Due to lack of destructors in
291.Nm ,
292sockets on the filesystem must be cleaned up manually after
293.Nm
294exits.
295.It
296There is no way to use the "console port" feature, nor the console port
297resize as of now.
298.It
299Emergency write is advertised, but no-op as of now.
300.El
301.El
302.El
303.It Fl S
304Wire guest memory.
305.It Fl u
306RTC keeps UTC time.
307.It Fl U Ar uuid
308Set the universally unique identifier
309.Pq UUID
310in the guest's System Management BIOS System Information structure.
311By default a UUID is generated from the host's hostname and
312.Ar vmname .
313.It Fl w
314Ignore accesses to unimplemented Model Specific Registers (MSRs).
315This is intended for debug purposes.
316.It Fl W
317Force virtio PCI device emulations to use MSI interrupts instead of MSI-X
318interrupts.
319.It Fl x
320The guest's local APIC is configured in x2APIC mode.
321.It Fl Y
322Disable MPtable generation.
323.It Ar vmname
324Alphanumeric name of the guest.
325This should be the same as that created by
326.Xr bhyveload 8 .
327.El
328.Sh SIGNAL HANDLING
329.Nm
330deals with the following signals:
331.Pp
332.Bl -tag -width indent -compact
333.It SIGTERM
334Trigger ACPI poweroff for a VM
335.El
336.Sh EXIT STATUS
337Exit status indicates how the VM was terminated:
338.Pp
339.Bl -tag -width indent -compact
340.It 0
341rebooted
342.It 1
343powered off
344.It 2
345halted
346.It 3
347triple fault
348.El
349.Sh EXAMPLES
350The guest operating system must have been loaded with
351.Xr bhyveload 8
352or a similar boot loader before
353.Xr bhyve 4
354can be run.
355.Pp
356To run a virtual machine with 1GB of memory, two virtual CPUs, a virtio
357block device backed by the
358.Pa /my/image
359filesystem image, and a serial port for the console:
360.Bd -literal -offset indent
361bhyve -c 2 -s 0,hostbridge -s 1,lpc -s 2,virtio-blk,/my/image \\
362  -l com1,stdio -A -H -P -m 1G vm1
363.Ed
364.Pp
365Run a 24GB single-CPU virtual machine with three network ports, one of which
366has a MAC address specified:
367.Bd -literal -offset indent
368bhyve -s 0,hostbridge -s 1,lpc -s 2:0,virtio-net,tap0 \\
369  -s 2:1,virtio-net,tap1 \\
370  -s 2:2,virtio-net,tap2,mac=00:be:fa:76:45:00 \\
371  -s 3,virtio-blk,/my/image -l com1,stdio \\
372  -A -H -P -m 24G bigvm
373.Ed
374.Pp
375Run an 8GB quad-CPU virtual machine with 8 AHCI SATA disks, an AHCI ATAPI
376CD-ROM, a single virtio network port, an AMD hostbridge, and the console
377port connected to an
378.Xr nmdm 4
379null-modem device.
380.Bd -literal -offset indent
381bhyve -c 4 \\
382  -s 0,amd_hostbridge -s 1,lpc \\
383  -s 1:0,ahci,hd:/images/disk.1,hd:/images/disk.2,\\
384hd:/images/disk.3,hd:/images/disk.4,\\
385hd:/images/disk.5,hd:/images/disk.6,\\
386hd:/images/disk.7,hd:/images/disk.8,\\
387cd:/images/install.iso \\
388  -s 3,virtio-net,tap0 \\
389  -l com1,/dev/nmdm0A \\
390  -A -H -P -m 8G
391.Ed
392.Sh SEE ALSO
393.Xr bhyve 4 ,
394.Xr nmdm 4 ,
395.Xr vmm 4 ,
396.Xr ethers 5 ,
397.Xr bhyvectl 8 ,
398.Xr bhyveload 8
399.Sh HISTORY
400.Nm
401first appeared in
402.Fx 10.0 .
403.Sh AUTHORS
404.An Neel Natu Aq Mt neel@freebsd.org
405.An Peter Grehan Aq Mt grehan@freebsd.org
406