]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - share/man/man9/vnet.9
Update to zstd 1.3.2
[FreeBSD/FreeBSD.git] / share / man / man9 / vnet.9
1 .\"-
2 .\" Copyright (c) 2010 The FreeBSD Foundation
3 .\" All rights reserved.
4 .\"
5 .\" This documentation was written by CK Software GmbH under sponsorship from
6 .\" the FreeBSD Foundation.
7 .\"
8 .\" Redistribution and use in source and binary forms, with or without
9 .\" modification, are permitted provided that the following conditions
10 .\" are met:
11 .\" 1. Redistributions of source code must retain the above copyright
12 .\"    notice, this list of conditions and the following disclaimer.
13 .\" 2. Redistributions in binary form must reproduce the above copyright
14 .\"    notice, this list of conditions and the following disclaimer in the
15 .\"    documentation and/or other materials provided with the distribution.
16 .\"
17 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
21 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 .\" SUCH DAMAGE.
28 .\"
29 .\" $FreeBSD$
30 .\"
31 .Dd November 20, 2014
32 .Dt VNET 9
33 .Os
34 .Sh NAME
35 .Nm VNET
36 .Nd "network subsystem virtualization infrastructure"
37 .Sh SYNOPSIS
38 .Cd "options VIMAGE"
39 .Cd "options VNET_DEBUG"
40 .Pp
41 .In sys/vnet.h
42 .Pp
43 .\"------------------------------------------------------------
44 .Ss "Constants and Global Variables"
45 .\"
46 .Dv VNET_SETNAME
47 .\"     "set_vnet"
48 .Dv VNET_SYMPREFIX
49 .\"     "vnet_entry_"
50 .Vt extern struct vnet *vnet0;
51 .\"------------------------------------------------------------
52 .Ss "Variable Declaration"
53 .Fo VNET
54 .Fa "name"
55 .Fc
56 .\"
57 .Fo VNET_NAME
58 .Fa "name"
59 .Fc
60 .\"
61 .Fo VNET_DECLARE
62 .Fa "type" "name"
63 .Fc
64 .\"
65 .Fo VNET_DEFINE
66 .Fa "type" "name"
67 .Fc
68 .\"
69 .Bd -literal
70 #define V_name  VNET(name)
71 .Ed
72 .\" ------------------------------------------------------------
73 .Ss "Virtual Instance Selection"
74 .\"
75 .Fo CRED_TO_VNET
76 .Fa "struct ucred *"
77 .Fc
78 .\"
79 .Fo TD_TO_VNET
80 .Fa "struct thread *"
81 .Fc
82 .\"
83 .Fo P_TO_VNET
84 .Fa "struct proc *"
85 .Fc
86 .\"
87 .Fo IS_DEFAULT_VNET
88 .Fa "struct vnet *"
89 .Fc
90 .\"
91 .Fo VNET_ASSERT
92 .Fa exp msg
93 .Fc
94 .\"
95 .Fo CURVNET_SET
96 .Fa "struct vnet *"
97 .Fc
98 .\"
99 .Fo CURVNET_SET_QUIET
100 .Fa "struct vnet *"
101 .Fc
102 .\"
103 .Fn CURVNET_RESTORE
104 .\"
105 .Fo VNET_ITERATOR_DECL
106 .Fa "struct vnet *"
107 .Fc
108 .\"
109 .Fo VNET_FOREACH
110 .Fa "struct vnet *"
111 .Fc
112 .\" ------------------------------------------------------------
113 .Ss "Locking"
114 .\"
115 .Fn VNET_LIST_RLOCK
116 .Fn VNET_LIST_RUNLOCK
117 .Fn VNET_LIST_RLOCK_NOSLEEP
118 .Fn VNET_LIST_RUNLOCK_NOSLEEP
119 .\" ------------------------------------------------------------
120 .Ss "Startup and Teardown Functions"
121 .\"
122 .Ft "struct vnet *"
123 .Fo vnet_alloc
124 .Fa void
125 .Fc
126 .\"
127 .Ft void
128 .Fo vnet_destroy
129 .Fa "struct vnet *"
130 .Fc
131 .\"
132 .Fo VNET_SYSINIT
133 .Fa ident
134 .Fa "enum sysinit_sub_id subsystem"
135 .Fa "enum sysinit_elem_order order"
136 .Fa "sysinit_cfunc_t func"
137 .Fa "const void *arg"
138 .Fc
139 .\"
140 .Fo VNET_SYSUNINIT
141 .Fa ident
142 .Fa "enum sysinit_sub_id subsystem"
143 .Fa "enum sysinit_elem_order order"
144 .Fa "sysinit_cfunc_t func"
145 .Fa "const void *arg"
146 .Fc
147 .\" ------------------------------------------------------------
148 .Ss "Eventhandlers"
149 .\"
150 .Fo VNET_GLOBAL_EVENTHANDLER_REGISTER
151 .Fa "const char *name"
152 .Fa "void *func"
153 .Fa "void *arg"
154 .Fa "int priority"
155 .Fc
156 .\"
157 .Fo VNET_GLOBAL_EVENTHANDLER_REGISTER_TAG
158 .Fa "eventhandler_tag tag"
159 .Fa "const char *name"
160 .Fa "void *func"
161 .Fa "void *arg"
162 .Fa "int priority"
163 .Fc
164 .\" ------------------------------------------------------------
165 .Ss "Sysctl Handling"
166 .Fo SYSCTL_VNET_INT
167 .Fa parent nbr name access ptr val descr
168 .Fc
169 .Fo SYSCTL_VNET_PROC
170 .Fa parent nbr name access ptr arg handler fmt descr
171 .Fc
172 .Fo SYSCTL_VNET_STRING
173 .Fa parent nbr name access arg len descr
174 .Fc
175 .Fo SYSCTL_VNET_STRUCT
176 .Fa parent nbr name access ptr type descr
177 .Fc
178 .Fo SYSCTL_VNET_UINT
179 .Fa parent nbr name access ptr val descr
180 .Fc
181 .Fo VNET_SYSCTL_ARG
182 .Fa req arg1
183 .Fc
184 .\" ------------------------------------------------------------
185 .Sh DESCRIPTION
186 .Nm
187 is the name of a technique to virtualize the network stack.
188 The basic idea is to change global resources most notably variables into
189 per network stack resources and have functions, sysctls, eventhandlers,
190 etc. access and handle them in the context of the correct instance.
191 Each (virtual) network stack is attached to a
192 .Em prison ,
193 with
194 .Vt vnet0
195 being the unrestricted default network stack of the base system.
196 .Pp
197 The global defines for
198 .Dv VNET_SETNAME
199 and
200 .Dv VNET_SYMPREFIX
201 are shared with
202 .Xr kvm 3
203 to access internals for debugging reasons.
204 .\" ------------------------------------------------------------
205 .Ss "Variable Declaration"
206 .\"
207 Variables are virtualized by using the
208 .Fn VNET_DEFINE
209 macro rather than writing them out as
210 .Em type name .
211 One can still use static initialization or storage class specifiers, e.g.,
212 .Pp
213 .Dl Li static VNET_DEFINE(int, foo) = 1;
214 or
215 .Dl Li static VNET_DEFINE(SLIST_HEAD(, bar), bars);
216 .Pp
217 Static initialization is not possible when the virtualized variable
218 would need to be referenced, e.g., with
219 .Dq TAILQ_HEAD_INITIALIZER() .
220 In that case a
221 .Fn VNET_SYSINIT
222 based initialization function must be used.
223 .Pp
224 External variables have to be declared using the
225 .Fn VNET_DECLARE
226 macro.
227 In either case the convention is to define another macro,
228 that is then used throughout the implementation to access that variable.
229 The variable name is usually prefixed by
230 .Em V_
231 to express that it is virtualized.
232 The
233 .Fn VNET
234 macro will then translate accesses to that variable to the copy of the
235 currently selected instance (see the
236 .Sx "Virtual instance selection"
237 section):
238 .Pp
239 .Dl Li #define  V_name  VNET(name)
240 .Pp
241 .Em NOTE:
242 Do not confuse this with the convention used by
243 .Xr VFS 9 .
244 .Pp
245 The
246 .Fn VNET_NAME
247 macro returns the offset within the memory region of the virtual network
248 stack instance.
249 It is usually only used with
250 .Fn SYSCTL_VNET_*
251 macros.
252 .\" ------------------------------------------------------------
253 .Ss "Virtual Instance Selection"
254 .\"
255 There are three different places where the current virtual
256 network stack pointer is stored and can be taken from:
257 .Bl -enum -offset indent
258 .It
259 a
260 .Em prison :
261 .Dl "(struct prison *)->pr_vnet"
262 .Pp
263 For convenience the following macros are provided:
264 .Bd -literal -compact -offset indent
265 .Fn CRED_TO_VNET "struct ucred *"
266 .Fn TD_TO_VNET "struct thread *"
267 .Fn P_TO_VNET "struct proc *"
268 .Ed
269 .It
270 a
271 .Em socket :
272 .Dl "(struct socket *)->so_vnet"
273 .It
274 an
275 .Em interface :
276 .Dl "(struct ifnet *)->if_vnet"
277 .El
278 .Pp
279 .\"
280 In addition the currently active instance is cached in
281 .Dq "curthread->td_vnet"
282 which is usually only accessed through the
283 .Dv curvnet
284 macro.
285 .Pp
286 .\"
287 To set the correct context of the current virtual network instance, use the
288 .Fn CURVNET_SET
289 or
290 .Fn CURVNET_SET_QUIET
291 macros.
292 The
293 .Fn CURVNET_SET_QUIET
294 version will not record vnet recursions in case the kernel was compiled
295 with
296 .Cd "options VNET_DEBUG"
297 and should thus only be used in well known cases, where recursion is
298 unavoidable.
299 Both macros will save the previous state on the stack and it must be restored
300 with the
301 .Fn CURVNET_RESTORE
302 macro.
303 .Pp
304 .Em NOTE:
305 As the previous state is saved on the stack, you cannot have multiple
306 .Fn CURVNET_SET
307 calls in the same block.
308 .Pp
309 .Em NOTE:
310 As the previous state is saved on the stack, a
311 .Fn CURVNET_RESTORE
312 call has to be in the same block as the
313 .Fn CURVNET_SET
314 call or in a subblock with the same idea of the saved instances as the
315 outer block.
316 .Pp
317 .Em NOTE:
318 As each macro is a set of operations and, as previously explained, cannot
319 be put into its own block when defined, one cannot conditionally set
320 the current vnet context.
321 The following will
322 .Em not
323 work:
324 .Bd -literal -offset indent
325 if (condition)
326         CURVNET_SET(vnet);
327 .Ed
328 .Pp
329 nor would this work:
330 .Bd -literal -offset indent
331 if (condition) {
332         CURVNET_SET(vnet);
333 }
334 CURVNET_RESTORE();
335 .Ed
336 .Pp
337 .\"
338 Sometimes one needs to loop over all virtual instances, for example to update
339 virtual from global state, to run a function from a
340 .Xr callout 9
341 for each instance, etc.
342 For those cases the
343 .Fn VNET_ITERATOR_DECL
344 and
345 .Fn VNET_FOREACH
346 macros are provided.
347 The former macro defines the variable that iterates over the loop,
348 and the latter loops over all of the virtual network stack instances.
349 See
350 .Sx "Locking"
351 for how to savely traverse the list of all virtual instances.
352 .Pp
353 .\"
354 The
355 .Fn IS_DEFAULT_VNET
356 macro provides a safe way to check whether the currently active instance is the
357 unrestricted default network stack of the base system
358 .Pq Vt vnet0 .
359 .Pp
360 .\"
361 The
362 .Fn VNET_ASSERT
363 macro provides a way to conditionally add assertions that are only active with
364 .Cd "options VIMAGE"
365 compiled in and either
366 .Cd "options VNET_DEBUG"
367 or
368 .Cd "options INVARIANTS"
369 enabled as well.
370 It uses the same semantics as
371 .Xr KASSERT 9 .
372 .\" ------------------------------------------------------------
373 .Ss "Locking"
374 .\"
375 For public access to the list of virtual network stack instances
376 e.g., by the
377 .Fn VNET_FOREACH
378 macro, read locks are provided.
379 Macros are used to abstract from the actual type of the locks.
380 If a caller may sleep while traversing the list, it must use the
381 .Fn VNET_LIST_RLOCK
382 and
383 .Fn VNET_LIST_RUNLOCK
384 macros.
385 Otherwise, the caller can use
386 .Fn VNET_LIST_RLOCK_NOSLEEP
387 and
388 .Fn VNET_LIST_RUNLOCK_NOSLEEP .
389 .\" ------------------------------------------------------------
390 .Ss "Startup and Teardown Functions"
391 .\"
392 To start or tear down a virtual network stack instance the internal
393 functions
394 .Fn vnet_alloc
395 and
396 .Fn vnet_destroy
397 are provided and called from the jail framework.
398 They run the publicly provided methods to handle network stack
399 startup and teardown.
400 .Pp
401 For public control, the system startup interface has been enhanced
402 to not only handle a system boot but to also handle a virtual
403 network stack startup and teardown.
404 To the base system the
405 .Fn VNET_SYSINIT
406 and
407 .Fn VNET_SYSUNINIT
408 macros look exactly as if there were no virtual network stack.
409 In fact, if
410 .Cd "options VIMAGE"
411 is not compiled in they are compiled to the standard
412 .Fn SYSINIT
413 macros.
414 In addition to that they are run for each virtual network stack
415 when starting or, in reverse order, when shutting down.
416 .\" ------------------------------------------------------------
417 .Ss "Eventhandlers"
418 .\"
419 Eventhandlers can be handled in two ways:
420 .Pp
421 .Bl -enum -offset indent -compact
422 .It
423 save the
424 .Em tags
425 returned in each virtual instance and properly free the eventhandlers
426 on teardown using those, or
427 .It
428 use one eventhandler that will iterate over all virtual network
429 stack instances.
430 .El
431 .Pp
432 For the first case one can just use the normal
433 .Xr EVENTHANDLER 9
434 functions, while for the second case the
435 .Fn VNET_GLOBAL_EVENTHANDLER_REGISTER
436 and
437 .Fn VNET_GLOBAL_EVENTHANDLER_REGISTER_TAG
438 macros are provided.
439 These differ in that
440 .Fn VNET_GLOBAL_EVENTHANDLER_REGISTER_TAG
441 takes an extra first argument that will carry the
442 .Fa "tag"
443 upon return.
444 Eventhandlers registered with either of these will not run
445 .Fa func
446 directly but
447 .Fa func
448 will be called from an internal iterator function for each vnet.
449 Both macros can only be used for eventhandlers that do not take
450 additional arguments, as the variadic arguments from an
451 .Xr EVENTHANDLER_INVOKE 9
452 call will be ignored.
453 .\" ------------------------------------------------------------
454 .Ss "Sysctl Handling"
455 .\"
456 A
457 .Xr sysctl 9
458 can be virtualized by using one of the
459 .Fn SYSCTL_VNET_*
460 macros.
461 .Pp
462 They take the same arguments as the standard
463 .Xr sysctl 9
464 functions, with the only difference, that the
465 .Fa ptr
466 argument has to be passed as
467 .Ql &VNET_NAME(foo)
468 instead of
469 .Ql &foo
470 so that the variable can be selected from the correct memory
471 region of the virtual network stack instance of the caller.
472 .Pp
473 For the very rare case a sysctl handler function would want to
474 handle
475 .Fa arg1
476 itself the
477 .Fn VNET_SYSCTL_ARG req arg1
478 is provided that will translate the
479 .Fa arg1
480 argument to the correct memory address in the virtual network stack
481 context of the caller.
482 .\" ------------------------------------------------------------
483 .Sh SEE ALSO
484 .Xr jail 2 ,
485 .Xr kvm 3 ,
486 .Xr EVENTHANDLER 9 ,
487 .\" .Xr pcpu 9 ,
488 .Xr KASSERT 9 ,
489 .Xr sysctl 9
490 .\" .Xr SYSINIT 9
491 .Sh HISTORY
492 The virtual network stack implementation first appeared in
493 .Fx 8.0 .
494 .Sh AUTHORS
495 This manual page was written by
496 .An Bjoern A. Zeeb, CK Software GmbH,
497 under sponsorship from the FreeBSD Foundation.