Merge from vendor branch LIBARCHIVE:
[dragonfly.git] / share / man / man7 / vkernel.7
1 .\"
2 .\" Copyright (c) 2003, 2004, 2005, 2006, 2007
3 .\"     The DragonFly Project.  All rights reserved.
4 .\"
5 .\" Redistribution and use in source and binary forms, with or without
6 .\" modification, are permitted provided that the following conditions
7 .\" are met:
8 .\"
9 .\" 1. Redistributions of source code must retain the above copyright
10 .\"    notice, this list of conditions and the following disclaimer.
11 .\" 2. Redistributions in binary form must reproduce the above copyright
12 .\"    notice, this list of conditions and the following disclaimer in
13 .\"    the documentation and/or other materials provided with the
14 .\"    distribution.
15 .\" 3. Neither the name of The DragonFly Project nor the names of its
16 .\"    contributors may be used to endorse or promote products derived
17 .\"    from this software without specific, prior written permission.
18 .\"
19 .\" THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20 .\" ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21 .\" LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
22 .\" FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE
23 .\" COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
24 .\" INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
25 .\" BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
26 .\" LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
27 .\" AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
28 .\" OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
29 .\" OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 .\" SUCH DAMAGE.
31 .\"
32 .\" $DragonFly: src/share/man/man7/vkernel.7,v 1.13 2007/03/16 13:42:11 swildner Exp $
33 .\"
34 .Dd March 16, 2007
35 .Dt VKERNEL 7
36 .Os
37 .Sh NAME
38 .Nm vkernel
39 .Nd virtual kernel architecture
40 .Sh SYNOPSIS
41 .Cd "platform vkernel"
42 .Cd "device vkd"
43 .Cd "device vke"
44 .Pp
45 .Pa /usr/obj/usr/src/sys/VKERNEL/kernel.debug
46 .Op Fl sUv
47 .Op Fl e Ar name Ns = Ns Li value : Ns Ar name Ns = Ns Li value : Ns ...
48 .Op Fl i Ar file
49 .Op Fl I Ar interface Ns Op Ar :address1 Ns Oo Ar :address2 Oc Ns Oo Ar /netmask Oc
50 .Op Fl m Ar size
51 .Op Fl r Ar file
52 .Sh DESCRIPTION
53 The
54 .Nm
55 architecture allows for running
56 .Dx
57 kernels in userland.
58 .Pp
59 The following options are available:
60 .Bl -tag -width ".Fl m Ar size"
61 .It Fl e Ar name Ns = Ns Li value : Ns Ar name Ns = Ns Li value : Ns ...
62 Specify an environment to be used by the kernel.
63 .It Fl i Ar file
64 Specify a memory image
65 .Ar file
66 to be used by the virtual kernel.
67 If no
68 .Fl i
69 option is given, the kernel will generate a name of the form
70 .Pa /var/vkernel/memimg.XXXXXX ,
71 with the trailing
72 .Ql X Ns s
73 being replaced by a sequential number, e.g.\&
74 .Pa memimg.000001 .
75 .It Fl I Ar interface Ns Op Ar :address1 Ns Oo Ar :address2 Oc Ns Oo Ar /netmask Oc
76 Create a virtual network device, with the first
77 .Fl I
78 option defining
79 .Dq Li vke0 ,
80 the second one
81 .Dq Li vke1 ,
82 and so on.
83 .Pp
84 The
85 .Ar interface
86 argument is the name of a
87 .Xr tap 4
88 device node.
89 The
90 .Pa /dev/
91 path prefix does not have to be specified and will be automatically prepended.
92 Specifying
93 .Cm auto
94 will pick the first unused
95 .Xr tap 4
96 device.
97 .Pp
98 The
99 .Ar address1
100 and
101 .Ar address2
102 arguments are the IP addresses of the
103 .Xr tap 4
104 and
105 .Xr vke 4
106 interfaces.
107 Optionally,
108 .Ar address1
109 may be of the form
110 .Li bridge Ns Em X
111 in which case the
112 .Xr tap 4
113 interface is added to the specified
114 .Xr bridge 4
115 interface.
116 .Pp
117 The
118 .Ar netmask
119 argument applies to all interfaces for which an address is specified.
120 .Pp
121 The
122 .Nm
123 architecture allows for a maximum of 16 virtual network devices.
124 .It Fl m Ar size
125 Specify the amount of memory to be used by the kernel in bytes,
126 .Cm K
127 .Pq kilobytes ,
128 .Cm M
129 .Pq megabytes
130 or
131 .Cm G
132 .Pq gigabytes .
133 Lowercase versions of
134 .Cm K , M ,
135 and
136 .Cm G
137 are allowed.
138 .It Fl r Ar file
139 Specify a disk image
140 .Ar file
141 to be used by the kernel, with the first
142 .Fl r
143 option defining
144 .Dq Li vkd0 ,
145 the second one
146 .Dq Li vkd1 ,
147 and so on.
148 Note that
149 .Dq Li vkd0
150 will be used as the root device
151 .Po
152 see
153 .Sx EXAMPLES
154 for further information on how to prepare a root image
155 .Pc .
156 .Pp
157 The
158 .Nm
159 architecture allows for a maximum of 16 virtual disks.
160 .It Fl s
161 Boot into single-user mode.
162 .It Fl U
163 Enable writing to kernel memory and module loading.
164 By default, those are disabled for security reasons.
165 .It Fl v
166 Turn on verbose booting.
167 .El
168 .Sh SIGNALS
169 The virtual kernel enables all terminal signals while in
170 .Xr ddb 4
171 mode but only enables
172 .Ql \&^\e
173 .Pq Dv SIGQUIT
174 while operating as a console which causes the virtual kernel to enter its
175 internal
176 .Xr ddb 4
177 debugger.
178 .Sh EXAMPLES
179 A couple of steps are necessary in order to prepare the system to build and
180 run a virtual kernel.
181 .Ss Setting up the filesystem
182 The
183 .Nm
184 architecture needs a number of files which reside in
185 .Pa /var/vkernel .
186 Since these files tend to get rather big and the
187 .Pa /var
188 partition is usually of limited size, we recommend the directory to be
189 created in the
190 .Pa /home
191 partition with a link to it in
192 .Pa /var :
193 .Bd -literal
194 mkdir /home/var.vkernel
195 ln -s /home/var.vkernel /var/vkernel
196 .Ed
197 .Pp
198 Next, a filesystem image to be used by the virtual kernel has to be
199 created and populated (assuming world has been built previously):
200 .Bd -literal
201 dd if=/dev/zero of=/var/vkernel/rootimg.01 bs=1m count=2048
202 vnconfig -c -s labels vn0 /var/vkernel/rootimg.01
203 disklabel -r -w vn0 auto
204 disklabel -e vn0        # edit the label to create a vn0a partition
205 newfs /dev/vn0a
206 mount /dev/vn0a /mnt
207 cd /usr/src
208 make installworld DESTDIR=/mnt
209 cd etc
210 make distribution DESTDIR=/mnt
211 echo '/dev/vkd0a / ufs rw 1 1' >/mnt/etc/fstab
212 echo 'console "/usr/libexec/getty Pc" cons25 on secure' >/mnt/etc/ttys
213 umount /mnt
214 vnconfig -u vn0
215 .Ed
216 .Ss Compiling the virtual kernel
217 In order to compile a virtual kernel use the
218 .Li VKERNEL
219 kernel configuration file residing in
220 .Pa /usr/src/sys/config
221 (or a configuration file derived thereof):
222 .Bd -literal
223 cd /usr/src
224 make -DNO_MODULES buildkernel KERNCONF=VKERNEL
225 .Ed
226 .Ss Enabling virtual kernel operation
227 A special
228 .Xr sysctl 8 ,
229 .Va vm.vkernel_enable ,
230 must be set to enable
231 .Nm
232 operation:
233 .Bd -literal
234 sysctl vm.vkernel_enable=1
235 .Ed
236 .Ss Configuring the network on the host system
237 In order to access a network interface of the host system from the
238 .Nm ,
239 you must add the interface to a
240 .Xr bridge 4
241 device which will then be passed to the
242 .Fl I
243 option:
244 .Bd -literal
245 kldload if_bridge.ko
246 kldload if_tap.ko
247 ifconfig bridge0 create
248 ifconfig bridge0 addm re0       # assuming re0 is the host's interface
249 ifconfig bridge0 up
250 .Ed
251 .Ss Running the kernel
252 Finally, the virtual kernel can be run:
253 .Bd -literal
254 cd /usr/obj/usr/src/sys/VKERNEL
255 \&./kernel.debug -m 64m -r /var/vkernel/rootimg.01 -I auto:bridge0
256 .Ed
257 .Pp
258 The
259 .Xr reboot 8
260 command can be used to stop a virtual kernel.
261 .Ss Debugging the kernel
262 It is possible to directly gdb the virtual kernel's process.  It is
263 recommended that you do a 'handle SIGSEGV noprint' to ignore page faults
264 taken by the virtual kernel itself (which it processes itself).
265 .Sh SEE ALSO
266 .Xr bridge 4 ,
267 .Xr tap 4 ,
268 .Xr vn 4 ,
269 .Xr build 7 ,
270 .Xr disklabel 8 ,
271 .Xr ifconfig 8 ,
272 .Xr vnconfig 8
273 .Sh HISTORY
274 Virtual kernels were introduced in
275 .Dx 1.7 .
276 .Sh AUTHORS
277 .An -nosplit
278 .An Matt Dillon
279 thought up and implemented the
280 .Nm
281 architecture.
282 This manual page was written by
283 .An Sascha Wildner .