]> CyberLeo.Net >> Repos - FreeBSD/releng/7.2.git/blob - share/man/man4/netgraph.4
Create releng/7.2 from stable/7 in preparation for 7.2-RELEASE.
[FreeBSD/releng/7.2.git] / share / man / man4 / netgraph.4
1 .\" Copyright (c) 1996-1999 Whistle Communications, Inc.
2 .\" All rights reserved.
3 .\"
4 .\" Subject to the following obligations and disclaimer of warranty, use and
5 .\" redistribution of this software, in source or object code forms, with or
6 .\" without modifications are expressly permitted by Whistle Communications;
7 .\" provided, however, that:
8 .\" 1. Any and all reproductions of the source or object code must include the
9 .\"    copyright notice above and the following disclaimer of warranties; and
10 .\" 2. No rights are granted, in any manner or form, to use Whistle
11 .\"    Communications, Inc. trademarks, including the mark "WHISTLE
12 .\"    COMMUNICATIONS" on advertising, endorsements, or otherwise except as
13 .\"    such appears in the above copyright notice or in the software.
14 .\"
15 .\" THIS SOFTWARE IS BEING PROVIDED BY WHISTLE COMMUNICATIONS "AS IS", AND
16 .\" TO THE MAXIMUM EXTENT PERMITTED BY LAW, WHISTLE COMMUNICATIONS MAKES NO
17 .\" REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, REGARDING THIS SOFTWARE,
18 .\" INCLUDING WITHOUT LIMITATION, ANY AND ALL IMPLIED WARRANTIES OF
19 .\" MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT.
20 .\" WHISTLE COMMUNICATIONS DOES NOT WARRANT, GUARANTEE, OR MAKE ANY
21 .\" REPRESENTATIONS REGARDING THE USE OF, OR THE RESULTS OF THE USE OF THIS
22 .\" SOFTWARE IN TERMS OF ITS CORRECTNESS, ACCURACY, RELIABILITY OR OTHERWISE.
23 .\" IN NO EVENT SHALL WHISTLE COMMUNICATIONS BE LIABLE FOR ANY DAMAGES
24 .\" RESULTING FROM OR ARISING OUT OF ANY USE OF THIS SOFTWARE, INCLUDING
25 .\" WITHOUT LIMITATION, ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
26 .\" PUNITIVE, OR CONSEQUENTIAL DAMAGES, PROCUREMENT OF SUBSTITUTE GOODS OR
27 .\" SERVICES, LOSS OF USE, DATA OR PROFITS, HOWEVER CAUSED AND UNDER ANY
28 .\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
30 .\" THIS SOFTWARE, EVEN IF WHISTLE COMMUNICATIONS IS ADVISED OF THE POSSIBILITY
31 .\" OF SUCH DAMAGE.
32 .\"
33 .\" Authors: Julian Elischer <julian@FreeBSD.org>
34 .\"          Archie Cobbs <archie@FreeBSD.org>
35 .\"
36 .\" $Whistle: netgraph.4,v 1.7 1999/01/28 23:54:52 julian Exp $
37 .\" $FreeBSD$
38 .\"
39 .Dd July 1, 2004
40 .Dt NETGRAPH 4
41 .Os
42 .Sh NAME
43 .Nm netgraph
44 .Nd "graph based kernel networking subsystem"
45 .Sh DESCRIPTION
46 The
47 .Nm
48 system provides a uniform and modular system for the implementation
49 of kernel objects which perform various networking functions.
50 The objects, known as
51 .Em nodes ,
52 can be arranged into arbitrarily complicated graphs.
53 Nodes have
54 .Em hooks
55 which are used to connect two nodes together, forming the edges in the graph.
56 Nodes communicate along the edges to process data, implement protocols, etc.
57 .Pp
58 The aim of
59 .Nm
60 is to supplement rather than replace the existing kernel networking
61 infrastructure.
62 It provides:
63 .Pp
64 .Bl -bullet -compact
65 .It
66 A flexible way of combining protocol and link level drivers.
67 .It
68 A modular way to implement new protocols.
69 .It
70 A common framework for kernel entities to inter-communicate.
71 .It
72 A reasonably fast, kernel-based implementation.
73 .El
74 .Ss Nodes and Types
75 The most fundamental concept in
76 .Nm
77 is that of a
78 .Em node .
79 All nodes implement a number of predefined methods which allow them
80 to interact with other nodes in a well defined manner.
81 .Pp
82 Each node has a
83 .Em type ,
84 which is a static property of the node determined at node creation time.
85 A node's type is described by a unique
86 .Tn ASCII
87 type name.
88 The type implies what the node does and how it may be connected
89 to other nodes.
90 .Pp
91 In object-oriented language, types are classes, and nodes are instances
92 of their respective class.
93 All node types are subclasses of the generic node
94 type, and hence inherit certain common functionality and capabilities
95 (e.g., the ability to have an
96 .Tn ASCII
97 name).
98 .Pp
99 Nodes may be assigned a globally unique
100 .Tn ASCII
101 name which can be
102 used to refer to the node.
103 The name must not contain the characters
104 .Ql .\&
105 or
106 .Ql \&: ,
107 and is limited to
108 .Dv NG_NODESIZ
109 characters (including the terminating
110 .Dv NUL
111 character).
112 .Pp
113 Each node instance has a unique
114 .Em ID number
115 which is expressed as a 32-bit hexadecimal value.
116 This value may be used to refer to a node when there is no
117 .Tn ASCII
118 name assigned to it.
119 .Ss Hooks
120 Nodes are connected to other nodes by connecting a pair of
121 .Em hooks ,
122 one from each node.
123 Data flows bidirectionally between nodes along
124 connected pairs of hooks.
125 A node may have as many hooks as it
126 needs, and may assign whatever meaning it wants to a hook.
127 .Pp
128 Hooks have these properties:
129 .Bl -bullet
130 .It
131 A hook has an
132 .Tn ASCII
133 name which is unique among all hooks
134 on that node (other hooks on other nodes may have the same name).
135 The name must not contain the characters
136 .Ql .\&
137 or
138 .Ql \&: ,
139 and is
140 limited to
141 .Dv NG_HOOKSIZ
142 characters (including the terminating
143 .Dv NUL
144 character).
145 .It
146 A hook is always connected to another hook.
147 That is, hooks are
148 created at the time they are connected, and breaking an edge by
149 removing either hook destroys both hooks.
150 .It
151 A hook can be set into a state where incoming packets are always queued
152 by the input queueing system, rather than being delivered directly.
153 This can be used when the data is sent from an interrupt handler,
154 and processing must be quick so as not to block other interrupts.
155 .It
156 A hook may supply overriding receive data and receive message functions,
157 which should be used for data and messages received through that hook
158 in preference to the general node-wide methods.
159 .El
160 .Pp
161 A node may decide to assign special meaning to some hooks.
162 For example, connecting to the hook named
163 .Va debug
164 might trigger
165 the node to start sending debugging information to that hook.
166 .Ss Data Flow
167 Two types of information flow between nodes: data messages and
168 control messages.
169 Data messages are passed in
170 .Vt mbuf chains
171 along the edges
172 in the graph, one edge at a time.
173 The first
174 .Vt mbuf
175 in a chain must have the
176 .Dv M_PKTHDR
177 flag set.
178 Each node decides how to handle data received through one of its hooks.
179 .Pp
180 Along with data, nodes can also receive control messages.
181 There are generic and type-specific control messages.
182 Control messages have a common
183 header format, followed by type-specific data, and are binary structures
184 for efficiency.
185 However, node types may also support conversion of the
186 type-specific data between binary and
187 .Tn ASCII
188 formats,
189 for debugging and human interface purposes (see the
190 .Dv NGM_ASCII2BINARY
191 and
192 .Dv NGM_BINARY2ASCII
193 generic control messages below).
194 Nodes are not required to support these conversions.
195 .Pp
196 There are three ways to address a control message.
197 If there is a sequence of edges connecting the two nodes, the message
198 may be
199 .Dq source routed
200 by specifying the corresponding sequence
201 of
202 .Tn ASCII
203 hook names as the destination address for the message (relative
204 addressing).
205 If the destination is adjacent to the source, then the source
206 node may simply specify (as a pointer in the code) the hook across which the
207 message should be sent.
208 Otherwise, the recipient node's global
209 .Tn ASCII
210 name
211 (or equivalent ID-based name) is used as the destination address
212 for the message (absolute addressing).
213 The two types of
214 .Tn ASCII
215 addressing
216 may be combined, by specifying an absolute start node and a sequence
217 of hooks.
218 Only the
219 .Tn ASCII
220 addressing modes are available to control programs outside the kernel;
221 use of direct pointers is limited to kernel modules.
222 .Pp
223 Messages often represent commands that are followed by a reply message
224 in the reverse direction.
225 To facilitate this, the recipient of a
226 control message is supplied with a
227 .Dq return address
228 that is suitable for addressing a reply.
229 .Pp
230 Each control message contains a 32-bit value, called a
231 .Dq typecookie ,
232 indicating the type of the message, i.e.\& how to interpret it.
233 Typically each type defines a unique typecookie for the messages
234 that it understands.
235 However, a node may choose to recognize and
236 implement more than one type of messages.
237 .Pp
238 If a message is delivered to an address that implies that it arrived
239 at that node through a particular hook (as opposed to having been directly
240 addressed using its ID or global name) then that hook is identified to the
241 receiving node.
242 This allows a message to be re-routed or passed on, should
243 a node decide that this is required, in much the same way that data packets
244 are passed around between nodes.
245 A set of standard
246 messages for flow control and link management purposes are
247 defined by the base system that are usually
248 passed around in this manner.
249 Flow control message would usually travel
250 in the opposite direction to the data to which they pertain.
251 .Ss Netgraph is (Usually) Functional
252 In order to minimize latency, most
253 .Nm
254 operations are functional.
255 That is, data and control messages are delivered by making function
256 calls rather than by using queues and mailboxes.
257 For example, if node
258 A wishes to send a data
259 .Vt mbuf
260 to neighboring node B, it calls the
261 generic
262 .Nm
263 data delivery function.
264 This function in turn locates
265 node B and calls B's
266 .Dq receive data
267 method.
268 There are exceptions to this.
269 .Pp
270 Each node has an input queue, and some operations can be considered to
271 be
272 .Em writers
273 in that they alter the state of the node.
274 Obviously, in an SMP
275 world it would be bad if the state of a node were changed while another
276 data packet were transiting the node.
277 For this purpose, the input queue implements a
278 .Em reader/writer
279 semantic so that when there is a writer in the node, all other requests
280 are queued, and while there are readers, a writer, and any following
281 packets are queued.
282 In the case where there is no reason to queue the
283 data, the input method is called directly, as mentioned above.
284 .Pp
285 A node may declare that all requests should be considered as writers,
286 or that requests coming in over a particular hook should be considered to
287 be a writer, or even that packets leaving or entering across a particular
288 hook should always be queued, rather than delivered directly (often useful
289 for interrupt routines who want to get back to the hardware quickly).
290 By default, all control message packets are considered to be writers
291 unless specifically declared to be a reader in their definition.
292 (See
293 .Dv NGM_READONLY
294 in
295 .In ng_message.h . )
296 .Pp
297 While this mode of operation
298 results in good performance, it has a few implications for node
299 developers:
300 .Bl -bullet
301 .It
302 Whenever a node delivers a data or control message, the node
303 may need to allow for the possibility of receiving a returning
304 message before the original delivery function call returns.
305 .It
306 .Nm Netgraph
307 provides internal synchronization between nodes.
308 Data always enters a
309 .Dq graph
310 at an
311 .Em edge node .
312 An
313 .Em edge node
314 is a node that interfaces between
315 .Nm
316 and some other part of the system.
317 Examples of
318 .Dq edge nodes
319 include device drivers, the
320 .Vt socket , ether , tty ,
321 and
322 .Vt ksocket
323 node type.
324 In these
325 .Em edge nodes ,
326 the calling thread directly executes code in the node, and from that code
327 calls upon the
328 .Nm
329 framework to deliver data across some edge
330 in the graph.
331 From an execution point of view, the calling thread will execute the
332 .Nm
333 framework methods, and if it can acquire a lock to do so,
334 the input methods of the next node.
335 This continues until either the data is discarded or queued for some
336 device or system entity, or the thread is unable to acquire a lock on
337 the next node.
338 In that case, the data is queued for the node, and execution rewinds
339 back to the original calling entity.
340 The queued data will be picked up and processed by either the current
341 holder of the lock when they have completed their operations, or by
342 a special
343 .Nm
344 thread that is activated when there are such items
345 queued.
346 .It
347 It is possible for an infinite loop to occur if the graph contains cycles.
348 .El
349 .Pp
350 So far, these issues have not proven problematical in practice.
351 .Ss Interaction with Other Parts of the Kernel
352 A node may have a hidden interaction with other components of the
353 kernel outside of the
354 .Nm
355 subsystem, such as device hardware,
356 kernel protocol stacks, etc.
357 In fact, one of the benefits of
358 .Nm
359 is the ability to join disparate kernel networking entities together in a
360 consistent communication framework.
361 .Pp
362 An example is the
363 .Vt socket
364 node type which is both a
365 .Nm
366 node and a
367 .Xr socket 2
368 in the protocol family
369 .Dv PF_NETGRAPH .
370 Socket nodes allow user processes to participate in
371 .Nm .
372 Other nodes communicate with socket nodes using the usual methods, and the
373 node hides the fact that it is also passing information to and from a
374 cooperating user process.
375 .Pp
376 Another example is a device driver that presents
377 a node interface to the hardware.
378 .Ss Node Methods
379 Nodes are notified of the following actions via function calls
380 to the following node methods,
381 and may accept or reject that action (by returning the appropriate
382 error code):
383 .Bl -tag -width 2n
384 .It Creation of a new node
385 The constructor for the type is called.
386 If creation of a new node is allowed, constructor method may allocate any
387 special resources it needs.
388 For nodes that correspond to hardware, this is typically done during the
389 device attach routine.
390 Often a global
391 .Tn ASCII
392 name corresponding to the
393 device name is assigned here as well.
394 .It Creation of a new hook
395 The hook is created and tentatively
396 linked to the node, and the node is told about the name that will be
397 used to describe this hook.
398 The node sets up any special data structures
399 it needs, or may reject the connection, based on the name of the hook.
400 .It Successful connection of two hooks
401 After both ends have accepted their
402 hooks, and the links have been made, the nodes get a chance to
403 find out who their peer is across the link, and can then decide to reject
404 the connection.
405 Tear-down is automatic.
406 This is also the time at which
407 a node may decide whether to set a particular hook (or its peer) into
408 the
409 .Em queueing
410 mode.
411 .It Destruction of a hook
412 The node is notified of a broken connection.
413 The node may consider some hooks
414 to be critical to operation and others to be expendable: the disconnection
415 of one hook may be an acceptable event while for another it
416 may effect a total shutdown for the node.
417 .It Preshutdown of a node
418 This method is called before real shutdown, which is discussed below.
419 While in this method, the node is fully operational and can send a
420 .Dq goodbye
421 message to its peers, or it can exclude itself from the chain and reconnect
422 its peers together, like the
423 .Xr ng_tee 4
424 node type does.
425 .It Shutdown of a node
426 This method allows a node to clean up
427 and to ensure that any actions that need to be performed
428 at this time are taken.
429 The method is called by the generic (i.e., superclass)
430 node destructor which will get rid of the generic components of the node.
431 Some nodes (usually associated with a piece of hardware) may be
432 .Em persistent
433 in that a shutdown breaks all edges and resets the node,
434 but does not remove it.
435 In this case, the shutdown method should not
436 free its resources, but rather, clean up and then call the
437 .Fn NG_NODE_REVIVE
438 macro to signal the generic code that the shutdown is aborted.
439 In the case where the shutdown is started by the node itself due to hardware
440 removal or unloading (via
441 .Fn ng_rmnode_self ) ,
442 it should set the
443 .Dv NGF_REALLY_DIE
444 flag to signal to its own shutdown method that it is not to persist.
445 .El
446 .Ss Sending and Receiving Data
447 Two other methods are also supported by all nodes:
448 .Bl -tag -width 2n
449 .It Receive data message
450 A
451 .Nm
452 .Em queueable request item ,
453 usually referred to as an
454 .Em item ,
455 is received by this function.
456 The item contains a pointer to an
457 .Vt mbuf .
458 .Pp
459 The node is notified on which hook the item has arrived,
460 and can use this information in its processing decision.
461 The receiving node must always
462 .Fn NG_FREE_M
463 the
464 .Vt mbuf chain
465 on completion or error, or pass it on to another node
466 (or kernel module) which will then be responsible for freeing it.
467 Similarly, the
468 .Em item
469 must be freed if it is not to be passed on to another node, by using the
470 .Fn NG_FREE_ITEM
471 macro.
472 If the item still holds references to
473 .Vt mbufs
474 at the time of
475 freeing then they will also be appropriately freed.
476 Therefore, if there is any chance that the
477 .Vt mbuf
478 will be
479 changed or freed separately from the item, it is very important
480 that it be retrieved using the
481 .Fn NGI_GET_M
482 macro that also removes the reference within the item.
483 (Or multiple frees of the same object will occur.)
484 .Pp
485 If it is only required to examine the contents of the
486 .Vt mbufs ,
487 then it is possible to use the
488 .Fn NGI_M
489 macro to both read and rewrite
490 .Vt mbuf
491 pointer inside the item.
492 .Pp
493 If developer needs to pass any meta information along with the
494 .Vt mbuf chain ,
495 he should use
496 .Xr mbuf_tags 9
497 framework.
498 .Bf -symbolic
499 Note that old
500 .Nm
501 specific meta-data format is obsoleted now.
502 .Ef
503 .Pp
504 The receiving node may decide to defer the data by queueing it in the
505 .Nm
506 NETISR system (see below).
507 It achieves this by setting the
508 .Dv HK_QUEUE
509 flag in the flags word of the hook on which that data will arrive.
510 The infrastructure will respect that bit and queue the data for delivery at
511 a later time, rather than deliver it directly.
512 A node may decide to set
513 the bit on the
514 .Em peer
515 node, so that its own output packets are queued.
516 .Pp
517 The node may elect to nominate a different receive data function
518 for data received on a particular hook, to simplify coding.
519 It uses the
520 .Fn NG_HOOK_SET_RCVDATA hook fn
521 macro to do this.
522 The function receives the same arguments in every way
523 other than it will receive all (and only) packets from that hook.
524 .It Receive control message
525 This method is called when a control message is addressed to the node.
526 As with the received data, an
527 .Em item
528 is received, with a pointer to the control message.
529 The message can be examined using the
530 .Fn NGI_MSG
531 macro, or completely extracted from the item using the
532 .Fn NGI_GET_MSG
533 which also removes the reference within the item.
534 If the Item still holds a reference to the message when it is freed
535 (using the
536 .Fn NG_FREE_ITEM
537 macro), then the message will also be freed appropriately.
538 If the
539 reference has been removed, the node must free the message itself using the
540 .Fn NG_FREE_MSG
541 macro.
542 A return address is always supplied, giving the address of the node
543 that originated the message so a reply message can be sent anytime later.
544 The return address is retrieved from the
545 .Em item
546 using the
547 .Fn NGI_RETADDR
548 macro and is of type
549 .Vt ng_ID_t .
550 All control messages and replies are
551 allocated with the
552 .Xr malloc 9
553 type
554 .Dv M_NETGRAPH_MSG ,
555 however it is more convenient to use the
556 .Fn NG_MKMESSAGE
557 and
558 .Fn NG_MKRESPONSE
559 macros to allocate and fill out a message.
560 Messages must be freed using the
561 .Fn NG_FREE_MSG
562 macro.
563 .Pp
564 If the message was delivered via a specific hook, that hook will
565 also be made known, which allows the use of such things as flow-control
566 messages, and status change messages, where the node may want to forward
567 the message out another hook to that on which it arrived.
568 .Pp
569 The node may elect to nominate a different receive message function
570 for messages received on a particular hook, to simplify coding.
571 It uses the
572 .Fn NG_HOOK_SET_RCVMSG hook fn
573 macro to do this.
574 The function receives the same arguments in every way
575 other than it will receive all (and only) messages from that hook.
576 .El
577 .Pp
578 Much use has been made of reference counts, so that nodes being
579 freed of all references are automatically freed, and this behaviour
580 has been tested and debugged to present a consistent and trustworthy
581 framework for the
582 .Dq type module
583 writer to use.
584 .Ss Addressing
585 The
586 .Nm
587 framework provides an unambiguous and simple to use method of specifically
588 addressing any single node in the graph.
589 The naming of a node is
590 independent of its type, in that another node, or external component
591 need not know anything about the node's type in order to address it so as
592 to send it a generic message type.
593 Node and hook names should be
594 chosen so as to make addresses meaningful.
595 .Pp
596 Addresses are either absolute or relative.
597 An absolute address begins
598 with a node name or ID, followed by a colon, followed by a sequence of hook
599 names separated by periods.
600 This addresses the node reached by starting
601 at the named node and following the specified sequence of hooks.
602 A relative address includes only the sequence of hook names, implicitly
603 starting hook traversal at the local node.
604 .Pp
605 There are a couple of special possibilities for the node name.
606 The name
607 .Ql .\&
608 (referred to as
609 .Ql .: )
610 always refers to the local node.
611 Also, nodes that have no global name may be addressed by their ID numbers,
612 by enclosing the hexadecimal representation of the ID number within
613 the square brackets.
614 Here are some examples of valid
615 .Nm
616 addresses:
617 .Bd -literal -offset indent
618 \&.:
619 [3f]:
620 foo:
621 \&.:hook1
622 foo:hook1.hook2
623 [d80]:hook1
624 .Ed
625 .Pp
626 The following set of nodes might be created for a site with
627 a single physical frame relay line having two active logical DLCI channels,
628 with RFC 1490 frames on DLCI 16 and PPP frames over DLCI 20:
629 .Bd -literal
630 [type SYNC ]                  [type FRAME]                 [type RFC1490]
631 [ "Frame1" ](uplink)<-->(data)[<un-named>](dlci16)<-->(mux)[<un-named>  ]
632 [    A     ]                  [    B     ](dlci20)<---+    [     C      ]
633                                                       |
634                                                       |      [ type PPP ]
635                                                       +>(mux)[<un-named>]
636                                                              [    D     ]
637 .Ed
638 .Pp
639 One could always send a control message to node C from anywhere
640 by using the name
641 .Dq Li Frame1:uplink.dlci16 .
642 In this case, node C would also be notified that the message
643 reached it via its hook
644 .Va mux .
645 Similarly,
646 .Dq Li Frame1:uplink.dlci20
647 could reliably be used to reach node D, and node A could refer
648 to node B as
649 .Dq Li .:uplink ,
650 or simply
651 .Dq Li uplink .
652 Conversely, B can refer to A as
653 .Dq Li data .
654 The address
655 .Dq Li mux.data
656 could be used by both nodes C and D to address a message to node A.
657 .Pp
658 Note that this is only for
659 .Em control messages .
660 In each of these cases, where a relative addressing mode is
661 used, the recipient is notified of the hook on which the
662 message arrived, as well as
663 the originating node.
664 This allows the option of hop-by-hop distribution of messages and
665 state information.
666 Data messages are
667 .Em only
668 routed one hop at a time, by specifying the departing
669 hook, with each node making
670 the next routing decision.
671 So when B receives a frame on hook
672 .Va data ,
673 it decodes the frame relay header to determine the DLCI,
674 and then forwards the unwrapped frame to either C or D.
675 .Pp
676 In a similar way, flow control messages may be routed in the reverse
677 direction to outgoing data.
678 For example a
679 .Dq "buffer nearly full"
680 message from
681 .Dq Li Frame1:
682 would be passed to node B
683 which might decide to send similar messages to both nodes
684 C and D.
685 The nodes would use
686 .Em "direct hook pointer"
687 addressing to route the messages.
688 The message may have travelled from
689 .Dq Li Frame1:
690 to B
691 as a synchronous reply, saving time and cycles.
692 .Pp
693 A similar graph might be used to represent multi-link PPP running
694 over an ISDN line:
695 .Bd -literal
696 [ type BRI ](B1)<--->(link1)[ type MPP  ]
697 [  "ISDN1" ](B2)<--->(link2)[ (no name) ]
698 [          ](D) <-+
699                   |
700  +----------------+
701  |
702  +->(switch)[ type Q.921 ](term1)<---->(datalink)[ type Q.931 ]
703             [ (no name)  ]                       [ (no name)  ]
704 .Ed
705 .Ss Netgraph Structures
706 Structures are defined in
707 .In netgraph/netgraph.h
708 (for kernel structures only of interest to nodes)
709 and
710 .In netgraph/ng_message.h
711 (for message definitions also of interest to user programs).
712 .Pp
713 The two basic object types that are of interest to node authors are
714 .Em nodes
715 and
716 .Em hooks .
717 These two objects have the following
718 properties that are also of interest to the node writers.
719 .Bl -tag -width 2n
720 .It Vt "struct ng_node"
721 Node authors should always use the following
722 .Ic typedef
723 to declare
724 their pointers, and should never actually declare the structure.
725 .Pp
726 .Fd "typedef struct ng_node *node_p;"
727 .Pp
728 The following properties are associated with a node, and can be
729 accessed in the following manner:
730 .Bl -tag -width 2n
731 .It Validity
732 A driver or interrupt routine may want to check whether
733 the node is still valid.
734 It is assumed that the caller holds a reference
735 on the node so it will not have been freed, however it may have been
736 disabled or otherwise shut down.
737 Using the
738 .Fn NG_NODE_IS_VALID node
739 macro will return this state.
740 Eventually it should be almost impossible
741 for code to run in an invalid node but at this time that work has not been
742 completed.
743 .It Node ID Pq Vt ng_ID_t
744 This property can be retrieved using the macro
745 .Fn NG_NODE_ID node .
746 .It Node name
747 Optional globally unique name,
748 .Dv NUL
749 terminated string.
750 If there
751 is a value in here, it is the name of the node.
752 .Bd -literal -offset indent
753 if (NG_NODE_NAME(node)[0] != '\e0') ...
754
755 if (strcmp(NG_NODE_NAME(node), "fred") == 0) ...
756 .Ed
757 .It A node dependent opaque cookie
758 Anything of the pointer type can be placed here.
759 The macros
760 .Fn NG_NODE_SET_PRIVATE node value
761 and
762 .Fn NG_NODE_PRIVATE node
763 set and retrieve this property, respectively.
764 .It Number of hooks
765 The
766 .Fn NG_NODE_NUMHOOKS node
767 macro is used
768 to retrieve this value.
769 .It Hooks
770 The node may have a number of hooks.
771 A traversal method is provided to allow all the hooks to be
772 tested for some condition.
773 .Fn NG_NODE_FOREACH_HOOK node fn arg rethook
774 where
775 .Fa fn
776 is a function that will be called for each hook
777 with the form
778 .Fn fn hook arg
779 and returning 0 to terminate the search.
780 If the search is terminated, then
781 .Fa rethook
782 will be set to the hook at which the search was terminated.
783 .El
784 .It Vt "struct ng_hook"
785 Node authors should always use the following
786 .Ic typedef
787 to declare
788 their hook pointers.
789 .Pp
790 .Fd "typedef struct ng_hook *hook_p;"
791 .Pp
792 The following properties are associated with a hook, and can be
793 accessed in the following manner:
794 .Bl -tag -width 2n
795 .It A hook dependent opaque cookie
796 Anything of the pointer type can be placed here.
797 The macros
798 .Fn NG_HOOK_SET_PRIVATE hook value
799 and
800 .Fn NG_HOOK_PRIVATE hook
801 set and retrieve this property, respectively.
802 .It \&An associate node
803 The macro
804 .Fn NG_HOOK_NODE hook
805 finds the associated node.
806 .It A peer hook Pq Vt hook_p
807 The other hook in this connected pair.
808 The
809 .Fn NG_HOOK_PEER hook
810 macro finds the peer.
811 .It References
812 The
813 .Fn NG_HOOK_REF hook
814 and
815 .Fn NG_HOOK_UNREF hook
816 macros
817 increment and decrement the hook reference count accordingly.
818 After decrement you should always assume the hook has been freed
819 unless you have another reference still valid.
820 .It Override receive functions
821 The
822 .Fn NG_HOOK_SET_RCVDATA hook fn
823 and
824 .Fn NG_HOOK_SET_RCVMSG hook fn
825 macros can be used to set override methods that will be used in preference
826 to the generic receive data and receive message functions.
827 To unset these, use the macros to set them to
828 .Dv NULL .
829 They will only be used for data and
830 messages received on the hook on which they are set.
831 .El
832 .Pp
833 The maintenance of the names, reference counts, and linked list
834 of hooks for each node is handled automatically by the
835 .Nm
836 subsystem.
837 Typically a node's private info contains a back-pointer to the node or hook
838 structure, which counts as a new reference that must be included
839 in the reference count for the node.
840 When the node constructor is called,
841 there is already a reference for this calculated in, so that
842 when the node is destroyed, it should remember to do a
843 .Fn NG_NODE_UNREF
844 on the node.
845 .Pp
846 From a hook you can obtain the corresponding node, and from
847 a node, it is possible to traverse all the active hooks.
848 .Pp
849 A current example of how to define a node can always be seen in
850 .Pa src/sys/netgraph/ng_sample.c
851 and should be used as a starting point for new node writers.
852 .El
853 .Ss Netgraph Message Structure
854 Control messages have the following structure:
855 .Bd -literal
856 #define NG_CMDSTRSIZ    32      /* Max command string (including nul) */
857
858 struct ng_mesg {
859   struct ng_msghdr {
860     u_char      version;        /* Must equal NG_VERSION */
861     u_char      spare;          /* Pad to 2 bytes */
862     u_short     arglen;         /* Length of cmd/resp data */
863     u_long      flags;          /* Message status flags */
864     u_long      token;          /* Reply should have the same token */
865     u_long      typecookie;     /* Node type understanding this message */
866     u_long      cmd;            /* Command identifier */
867     u_char      cmdstr[NG_CMDSTRSIZ]; /* Cmd string (for debug) */
868   } header;
869   char  data[0];                /* Start of cmd/resp data */
870 };
871
872 #define NG_ABI_VERSION  5               /* Netgraph kernel ABI version */
873 #define NG_VERSION      4               /* Netgraph message version */
874 #define NGF_ORIG        0x0000          /* Command */
875 #define NGF_RESP        0x0001          /* Response */
876 .Ed
877 .Pp
878 Control messages have the fixed header shown above, followed by a
879 variable length data section which depends on the type cookie
880 and the command.
881 Each field is explained below:
882 .Bl -tag -width indent
883 .It Va version
884 Indicates the version of the
885 .Nm
886 message protocol itself.
887 The current version is
888 .Dv NG_VERSION .
889 .It Va arglen
890 This is the length of any extra arguments, which begin at
891 .Va data .
892 .It Va flags
893 Indicates whether this is a command or a response control message.
894 .It Va token
895 The
896 .Va token
897 is a means by which a sender can match a reply message to the
898 corresponding command message; the reply always has the same token.
899 .It Va typecookie
900 The corresponding node type's unique 32-bit value.
901 If a node does not recognize the type cookie it must reject the message
902 by returning
903 .Er EINVAL .
904 .Pp
905 Each type should have an include file that defines the commands,
906 argument format, and cookie for its own messages.
907 The typecookie
908 insures that the same header file was included by both sender and
909 receiver; when an incompatible change in the header file is made,
910 the typecookie
911 .Em must
912 be changed.
913 The de-facto method for generating unique type cookies is to take the
914 seconds from the Epoch at the time the header file is written
915 (i.e., the output of
916 .Dq Nm date Fl u Li +%s ) .
917 .Pp
918 There is a predefined typecookie
919 .Dv NGM_GENERIC_COOKIE
920 for the
921 .Vt generic
922 node type, and
923 a corresponding set of generic messages which all nodes understand.
924 The handling of these messages is automatic.
925 .It Va cmd
926 The identifier for the message command.
927 This is type specific,
928 and is defined in the same header file as the typecookie.
929 .It Va cmdstr
930 Room for a short human readable version of
931 .Va command
932 (for debugging purposes only).
933 .El
934 .Pp
935 Some modules may choose to implement messages from more than one
936 of the header files and thus recognize more than one type cookie.
937 .Ss Control Message ASCII Form
938 Control messages are in binary format for efficiency.
939 However, for
940 debugging and human interface purposes, and if the node type supports
941 it, control messages may be converted to and from an equivalent
942 .Tn ASCII
943 form.
944 The
945 .Tn ASCII
946 form is similar to the binary form, with two exceptions:
947 .Bl -enum
948 .It
949 The
950 .Va cmdstr
951 header field must contain the
952 .Tn ASCII
953 name of the command, corresponding to the
954 .Va cmd
955 header field.
956 .It
957 The arguments field contains a
958 .Dv NUL Ns
959 -terminated
960 .Tn ASCII
961 string version of the message arguments.
962 .El
963 .Pp
964 In general, the arguments field of a control message can be any
965 arbitrary C data type.
966 .Nm Netgraph
967 includes parsing routines to support
968 some pre-defined datatypes in
969 .Tn ASCII
970 with this simple syntax:
971 .Bl -bullet
972 .It
973 Integer types are represented by base 8, 10, or 16 numbers.
974 .It
975 Strings are enclosed in double quotes and respect the normal
976 C language backslash escapes.
977 .It
978 IP addresses have the obvious form.
979 .It
980 Arrays are enclosed in square brackets, with the elements listed
981 consecutively starting at index zero.
982 An element may have an optional index and equals sign
983 .Pq Ql =
984 preceding it.
985 Whenever an element
986 does not have an explicit index, the index is implicitly the previous
987 element's index plus one.
988 .It
989 Structures are enclosed in curly braces, and each field is specified
990 in the form
991 .Ar fieldname Ns = Ns Ar value .
992 .It
993 Any array element or structure field whose value is equal to its
994 .Dq default value
995 may be omitted.
996 For integer types, the default value
997 is usually zero; for string types, the empty string.
998 .It
999 Array elements and structure fields may be specified in any order.
1000 .El
1001 .Pp
1002 Each node type may define its own arbitrary types by providing
1003 the necessary routines to parse and unparse.
1004 .Tn ASCII
1005 forms defined
1006 for a specific node type are documented in the corresponding man page.
1007 .Ss Generic Control Messages
1008 There are a number of standard predefined messages that will work
1009 for any node, as they are supported directly by the framework itself.
1010 These are defined in
1011 .In netgraph/ng_message.h
1012 along with the basic layout of messages and other similar information.
1013 .Bl -tag -width indent
1014 .It Dv NGM_CONNECT
1015 Connect to another node, using the supplied hook names on either end.
1016 .It Dv NGM_MKPEER
1017 Construct a node of the given type and then connect to it using the
1018 supplied hook names.
1019 .It Dv NGM_SHUTDOWN
1020 The target node should disconnect from all its neighbours and shut down.
1021 Persistent nodes such as those representing physical hardware
1022 might not disappear from the node namespace, but only reset themselves.
1023 The node must disconnect all of its hooks.
1024 This may result in neighbors shutting themselves down, and possibly a
1025 cascading shutdown of the entire connected graph.
1026 .It Dv NGM_NAME
1027 Assign a name to a node.
1028 Nodes can exist without having a name, and this
1029 is the default for nodes created using the
1030 .Dv NGM_MKPEER
1031 method.
1032 Such nodes can only be addressed relatively or by their ID number.
1033 .It Dv NGM_RMHOOK
1034 Ask the node to break a hook connection to one of its neighbours.
1035 Both nodes will have their
1036 .Dq disconnect
1037 method invoked.
1038 Either node may elect to totally shut down as a result.
1039 .It Dv NGM_NODEINFO
1040 Asks the target node to describe itself.
1041 The four returned fields
1042 are the node name (if named), the node type, the node ID and the
1043 number of hooks attached.
1044 The ID is an internal number unique to that node.
1045 .It Dv NGM_LISTHOOKS
1046 This returns the information given by
1047 .Dv NGM_NODEINFO ,
1048 but in addition
1049 includes an array of fields describing each link, and the description for
1050 the node at the far end of that link.
1051 .It Dv NGM_LISTNAMES
1052 This returns an array of node descriptions (as for
1053 .Dv NGM_NODEINFO )
1054 where each entry of the array describes a named node.
1055 All named nodes will be described.
1056 .It Dv NGM_LISTNODES
1057 This is the same as
1058 .Dv NGM_LISTNAMES
1059 except that all nodes are listed regardless of whether they have a name or not.
1060 .It Dv NGM_LISTTYPES
1061 This returns a list of all currently installed
1062 .Nm
1063 types.
1064 .It Dv NGM_TEXT_STATUS
1065 The node may return a text formatted status message.
1066 The status information is determined entirely by the node type.
1067 It is the only
1068 .Dq generic
1069 message
1070 that requires any support within the node itself and as such the node may
1071 elect to not support this message.
1072 The text response must be less than
1073 .Dv NG_TEXTRESPONSE
1074 bytes in length (presently 1024).
1075 This can be used to return general
1076 status information in human readable form.
1077 .It Dv NGM_BINARY2ASCII
1078 This message converts a binary control message to its
1079 .Tn ASCII
1080 form.
1081 The entire control message to be converted is contained within the
1082 arguments field of the
1083 .Dv NGM_BINARY2ASCII
1084 message itself.
1085 If successful, the reply will contain the same control
1086 message in
1087 .Tn ASCII
1088 form.
1089 A node will typically only know how to translate messages that it
1090 itself understands, so the target node of the
1091 .Dv NGM_BINARY2ASCII
1092 is often the same node that would actually receive that message.
1093 .It Dv NGM_ASCII2BINARY
1094 The opposite of
1095 .Dv NGM_BINARY2ASCII .
1096 The entire control message to be converted, in
1097 .Tn ASCII
1098 form, is contained
1099 in the arguments section of the
1100 .Dv NGM_ASCII2BINARY
1101 and need only have the
1102 .Va flags , cmdstr ,
1103 and
1104 .Va arglen
1105 header fields filled in, plus the
1106 .Dv NUL Ns
1107 -terminated string version of
1108 the arguments in the arguments field.
1109 If successful, the reply
1110 contains the binary version of the control message.
1111 .El
1112 .Ss Flow Control Messages
1113 In addition to the control messages that affect nodes with respect to the
1114 graph, there are also a number of
1115 .Em flow control
1116 messages defined.
1117 At present these are
1118 .Em not
1119 handled automatically by the system, so
1120 nodes need to handle them if they are going to be used in a graph utilising
1121 flow control, and will be in the likely path of these messages.
1122 The default action of a node that does not understand these messages should
1123 be to pass them onto the next node.
1124 Hopefully some helper functions will assist in this eventually.
1125 These messages are also defined in
1126 .In netgraph/ng_message.h
1127 and have a separate cookie
1128 .Dv NG_FLOW_COOKIE
1129 to help identify them.
1130 They will not be covered in depth here.
1131 .Sh INITIALIZATION
1132 The base
1133 .Nm
1134 code may either be statically compiled
1135 into the kernel or else loaded dynamically as a KLD via
1136 .Xr kldload 8 .
1137 In the former case, include
1138 .Pp
1139 .D1 Cd "options NETGRAPH"
1140 .Pp
1141 in your kernel configuration file.
1142 You may also include selected
1143 node types in the kernel compilation, for example:
1144 .Pp
1145 .D1 Cd "options NETGRAPH"
1146 .D1 Cd "options NETGRAPH_SOCKET"
1147 .D1 Cd "options NETGRAPH_ECHO"
1148 .Pp
1149 Once the
1150 .Nm
1151 subsystem is loaded, individual node types may be loaded at any time
1152 as KLD modules via
1153 .Xr kldload 8 .
1154 Moreover,
1155 .Nm
1156 knows how to automatically do this; when a request to create a new
1157 node of unknown type
1158 .Ar type
1159 is made,
1160 .Nm
1161 will attempt to load the KLD module
1162 .Pa ng_ Ns Ao Ar type Ac Ns Pa .ko .
1163 .Pp
1164 Types can also be installed at boot time, as certain device drivers
1165 may want to export each instance of the device as a
1166 .Nm
1167 node.
1168 .Pp
1169 In general, new types can be installed at any time from within the
1170 kernel by calling
1171 .Fn ng_newtype ,
1172 supplying a pointer to the type's
1173 .Vt "struct ng_type"
1174 structure.
1175 .Pp
1176 The
1177 .Fn NETGRAPH_INIT
1178 macro automates this process by using a linker set.
1179 .Sh EXISTING NODE TYPES
1180 Several node types currently exist.
1181 Each is fully documented in its own man page:
1182 .Bl -tag -width indent
1183 .It SOCKET
1184 The socket type implements two new sockets in the new protocol domain
1185 .Dv PF_NETGRAPH .
1186 The new sockets protocols are
1187 .Dv NG_DATA
1188 and
1189 .Dv NG_CONTROL ,
1190 both of type
1191 .Dv SOCK_DGRAM .
1192 Typically one of each is associated with a socket node.
1193 When both sockets have closed, the node will shut down.
1194 The
1195 .Dv NG_DATA
1196 socket is used for sending and receiving data, while the
1197 .Dv NG_CONTROL
1198 socket is used for sending and receiving control messages.
1199 Data and control messages are passed using the
1200 .Xr sendto 2
1201 and
1202 .Xr recvfrom 2
1203 system calls, using a
1204 .Vt "struct sockaddr_ng"
1205 socket address.
1206 .It HOLE
1207 Responds only to generic messages and is a
1208 .Dq black hole
1209 for data.
1210 Useful for testing.
1211 Always accepts new hooks.
1212 .It ECHO
1213 Responds only to generic messages and always echoes data back through the
1214 hook from which it arrived.
1215 Returns any non-generic messages as their own response.
1216 Useful for testing.
1217 Always accepts new hooks.
1218 .It TEE
1219 This node is useful for
1220 .Dq snooping .
1221 It has 4 hooks:
1222 .Va left , right , left2right ,
1223 and
1224 .Va right2left .
1225 Data entering from the
1226 .Va right
1227 is passed to the
1228 .Va left
1229 and duplicated on
1230 .Va right2left ,
1231 and data entering from the
1232 .Va left
1233 is passed to the
1234 .Va right
1235 and duplicated on
1236 .Va left2right .
1237 Data entering from
1238 .Va left2right
1239 is sent to the
1240 .Va right
1241 and data from
1242 .Va right2left
1243 to
1244 .Va left .
1245 .It RFC1490 MUX
1246 Encapsulates/de-encapsulates frames encoded according to RFC 1490.
1247 Has a hook for the encapsulated packets
1248 .Pq Va downstream
1249 and one hook
1250 for each protocol (i.e., IP, PPP, etc.).
1251 .It FRAME RELAY MUX
1252 Encapsulates/de-encapsulates Frame Relay frames.
1253 Has a hook for the encapsulated packets
1254 .Pq Va downstream
1255 and one hook
1256 for each DLCI.
1257 .It FRAME RELAY LMI
1258 Automatically handles frame relay
1259 .Dq LMI
1260 (link management interface) operations and packets.
1261 Automatically probes and detects which of several LMI standards
1262 is in use at the exchange.
1263 .It TTY
1264 This node is also a line discipline.
1265 It simply converts between
1266 .Vt mbuf
1267 frames and sequential serial data, allowing a TTY to appear as a
1268 .Nm
1269 node.
1270 It has a programmable
1271 .Dq hotkey
1272 character.
1273 .It ASYNC
1274 This node encapsulates and de-encapsulates asynchronous frames
1275 according to RFC 1662.
1276 This is used in conjunction with the TTY node
1277 type for supporting PPP links over asynchronous serial lines.
1278 .It ETHERNET
1279 This node is attached to every Ethernet interface in the system.
1280 It allows capturing raw Ethernet frames from the network, as well as
1281 sending frames out of the interface.
1282 .It INTERFACE
1283 This node is also a system networking interface.
1284 It has hooks representing
1285 each protocol family (IP, AppleTalk, IPX, etc.) and appears in the output of
1286 .Xr ifconfig 8 .
1287 The interfaces are named
1288 .Dq Li ng0 ,
1289 .Dq Li ng1 ,
1290 etc.
1291 .It ONE2MANY
1292 This node implements a simple round-robin multiplexer.
1293 It can be used
1294 for example to make several LAN ports act together to get a higher speed
1295 link between two machines.
1296 .It Various PPP related nodes
1297 There is a full multilink PPP implementation that runs in
1298 .Nm .
1299 The
1300 .Pa net/mpd
1301 port can use these modules to make a very low latency high
1302 capacity PPP system.
1303 It also supports
1304 .Tn PPTP
1305 VPNs using the PPTP node.
1306 .It PPPOE
1307 A server and client side implementation of PPPoE.
1308 Used in conjunction with
1309 either
1310 .Xr ppp 8
1311 or the
1312 .Pa net/mpd
1313 port.
1314 .It BRIDGE
1315 This node, together with the Ethernet nodes, allows a very flexible
1316 bridging system to be implemented.
1317 .It KSOCKET
1318 This intriguing node looks like a socket to the system but diverts
1319 all data to and from the
1320 .Nm
1321 system for further processing.
1322 This allows
1323 such things as UDP tunnels to be almost trivially implemented from the
1324 command line.
1325 .El
1326 .Pp
1327 Refer to the section at the end of this man page for more nodes types.
1328 .Sh NOTES
1329 Whether a named node exists can be checked by trying to send a control message
1330 to it (e.g.,
1331 .Dv NGM_NODEINFO ) .
1332 If it does not exist,
1333 .Er ENOENT
1334 will be returned.
1335 .Pp
1336 All data messages are
1337 .Vt mbuf chains
1338 with the
1339 .Dv M_PKTHDR
1340 flag set.
1341 .Pp
1342 Nodes are responsible for freeing what they allocate.
1343 There are three exceptions:
1344 .Bl -enum
1345 .It
1346 .Vt Mbufs
1347 sent across a data link are never to be freed by the sender.
1348 In the
1349 case of error, they should be considered freed.
1350 .It
1351 Messages sent using one of
1352 .Fn NG_SEND_MSG_*
1353 family macros are freed by the recipient.
1354 As in the case above, the addresses
1355 associated with the message are freed by whatever allocated them so the
1356 recipient should copy them if it wants to keep that information.
1357 .It
1358 Both control messages and data are delivered and queued with a
1359 .Nm
1360 .Em item .
1361 The item must be freed using
1362 .Fn NG_FREE_ITEM item
1363 or passed on to another node.
1364 .El
1365 .Sh FILES
1366 .Bl -tag -width indent
1367 .It In netgraph/netgraph.h
1368 Definitions for use solely within the kernel by
1369 .Nm
1370 nodes.
1371 .It In netgraph/ng_message.h
1372 Definitions needed by any file that needs to deal with
1373 .Nm
1374 messages.
1375 .It In netgraph/ng_socket.h
1376 Definitions needed to use
1377 .Nm
1378 .Vt socket
1379 type nodes.
1380 .It In netgraph/ng_ Ns Ao Ar type Ac Ns Pa .h
1381 Definitions needed to use
1382 .Nm
1383 .Ar type
1384 nodes, including the type cookie definition.
1385 .It Pa /boot/kernel/netgraph.ko
1386 The
1387 .Nm
1388 subsystem loadable KLD module.
1389 .It Pa /boot/kernel/ng_ Ns Ao Ar type Ac Ns Pa .ko
1390 Loadable KLD module for node type
1391 .Ar type .
1392 .It Pa src/sys/netgraph/ng_sample.c
1393 Skeleton
1394 .Nm
1395 node.
1396 Use this as a starting point for new node types.
1397 .El
1398 .Sh USER MODE SUPPORT
1399 There is a library for supporting user-mode programs that wish
1400 to interact with the
1401 .Nm
1402 system.
1403 See
1404 .Xr netgraph 3
1405 for details.
1406 .Pp
1407 Two user-mode support programs,
1408 .Xr ngctl 8
1409 and
1410 .Xr nghook 8 ,
1411 are available to assist manual configuration and debugging.
1412 .Pp
1413 There are a few useful techniques for debugging new node types.
1414 First, implementing new node types in user-mode first
1415 makes debugging easier.
1416 The
1417 .Vt tee
1418 node type is also useful for debugging, especially in conjunction with
1419 .Xr ngctl 8
1420 and
1421 .Xr nghook 8 .
1422 .Pp
1423 Also look in
1424 .Pa /usr/share/examples/netgraph
1425 for solutions to several
1426 common networking problems, solved using
1427 .Nm .
1428 .Sh SEE ALSO
1429 .Xr socket 2 ,
1430 .Xr netgraph 3 ,
1431 .Xr ng_async 4 ,
1432 .Xr ng_atm 4 ,
1433 .Xr ng_atmllc 4 ,
1434 .Xr ng_bluetooth 4 ,
1435 .Xr ng_bpf 4 ,
1436 .Xr ng_bridge 4 ,
1437 .Xr ng_bt3c 4 ,
1438 .Xr ng_btsocket 4 ,
1439 .Xr ng_cisco 4 ,
1440 .Xr ng_device 4 ,
1441 .Xr ng_echo 4 ,
1442 .Xr ng_eiface 4 ,
1443 .Xr ng_etf 4 ,
1444 .Xr ng_ether 4 ,
1445 .Xr ng_fec 4 ,
1446 .Xr ng_frame_relay 4 ,
1447 .Xr ng_gif 4 ,
1448 .Xr ng_gif_demux 4 ,
1449 .Xr ng_h4 4 ,
1450 .Xr ng_hci 4 ,
1451 .Xr ng_hole 4 ,
1452 .Xr ng_hub 4 ,
1453 .Xr ng_iface 4 ,
1454 .Xr ng_ip_input 4 ,
1455 .Xr ng_ksocket 4 ,
1456 .Xr ng_l2cap 4 ,
1457 .Xr ng_l2tp 4 ,
1458 .Xr ng_lmi 4 ,
1459 .Xr ng_mppc 4 ,
1460 .Xr ng_netflow 4 ,
1461 .Xr ng_one2many 4 ,
1462 .Xr ng_ppp 4 ,
1463 .Xr ng_pppoe 4 ,
1464 .Xr ng_pptpgre 4 ,
1465 .Xr ng_rfc1490 4 ,
1466 .Xr ng_socket 4 ,
1467 .Xr ng_split 4 ,
1468 .Xr ng_sppp 4 ,
1469 .Xr ng_sscfu 4 ,
1470 .Xr ng_sscop 4 ,
1471 .Xr ng_tee 4 ,
1472 .Xr ng_tty 4 ,
1473 .Xr ng_ubt 4 ,
1474 .Xr ng_UI 4 ,
1475 .Xr ng_uni 4 ,
1476 .Xr ng_vjc 4 ,
1477 .Xr ng_vlan 4 ,
1478 .Xr ngctl 8 ,
1479 .Xr nghook 8
1480 .Sh HISTORY
1481 The
1482 .Nm
1483 system was designed and first implemented at Whistle Communications, Inc.\&
1484 in a version of
1485 .Fx 2.2
1486 customized for the Whistle InterJet.
1487 It first made its debut in the main tree in
1488 .Fx 3.4 .
1489 .Sh AUTHORS
1490 .An -nosplit
1491 .An Julian Elischer Aq julian@FreeBSD.org ,
1492 with contributions by
1493 .An Archie Cobbs Aq archie@FreeBSD.org .