xref: /dragonfly/share/man/man4/ng_ppp.4 (revision f2c43266)
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.\" Author: Archie Cobbs <archie@FreeBSD.org>
34.\"
35.\" $FreeBSD: src/share/man/man4/ng_ppp.4,v 1.18.2.1 2001/12/21 09:00:51 ru Exp $
36.\" $Whistle: ng_ppp.8,v 1.3 1999/01/25 23:46:27 archie Exp $
37.\"
38.Dd January 19, 1999
39.Dt NG_PPP 4
40.Os
41.Sh NAME
42.Nm ng_ppp
43.Nd PPP protocol netgraph node type
44.Sh SYNOPSIS
45.In netgraph/ppp/ng_ppp.h
46.Sh DESCRIPTION
47The
48.Nm ppp
49node type performs multiplexing for the PPP protocol.  It handles
50only packets that contain data, and forwards protocol negotiation
51and control packets to a separate controlling entity (e.g., a
52user-land daemon).  This approach combines the fast dispatch of
53kernel implementations with the configuration flexibility of a
54user-land implementations.  The PPP node type directly supports
55multi-link PPP, Van Jacobson compression, PPP compression, PPP
56encryption, and the IP, IPX, and AppleTalk protocols.  A single
57PPP node corresponds to one PPP multi-link bundle.
58.Pp
59There is a separate hook for each PPP link in the bundle, plus
60several hooks corresponding to the directly supported protocols.
61For compression and encryption, separate attached nodes are required
62to do the actual work.  The node type used will of course depend
63on the algorithm negotiated.  There is also a
64.Dv bypass
65hook which is used to handle any protocol not directly supported
66by the node. This includes all of the control protocols: LCP, IPCP,
67CCP, etc.  Typically this node is connected to a user-land daemon
68via a
69.Xr ng_socket 4
70type node.
71.Sh ENABLING FUNCTIONALITY
72In general, the PPP node enables a specific link or functionality when
73(a) a
74.Dv NGM_PPP_SET_CONFIG
75message has been received which enables it, and
76(b) the corresponding hook(s) are connected.
77This allows the controlling entity to use either method (a) or (b)
78(or both) to control the node's behavior.
79When a link is connected but disabled, traffic can still flow on
80the link via the
81.Dv bypass
82hook (see below).
83.Sh LINK HOOKS
84During normal operation, the individual PPP links are connected to hooks
85.Dv link0 ,
86.Dv link1 ,
87etc.  Up to
88.Dv NG_PPP_MAX_LINKS
89links are supported.
90These device-independent hooks transmit and receive full PPP
91frames, which include the PPP protocol, address, control, and
92information fields, but no checksum or other link-specific fields.
93.Pp
94On outgoing frames, when protocol compression
95has been enabled and the protocol number is suitable for compression,
96the protocol field will be compressed (i.e., sent as one byte
97instead of two).  Either compressed or uncompressed protocol fields
98are accepted on incoming frames.  Similarly, if address and control
99field compression has been enabled for the link, the address and
100control fields will be omitted (except for LCP frames as required
101by the standards).  Incoming frames have the address and control fields
102stripped automatically if present.
103.Pp
104Since all negotiation is handled outside the PPP node, the links
105should not be connected and enabled until the corresponding link
106has reached the network phase (i.e., LCP negotiation and authentication
107have completed successfully) and the PPP node has been informed of
108the link parameters via the
109.Dv NGM_PPP_LINK_CONFIG
110message.
111.Pp
112When a link is connected but disabled, all received frames are forwarded
113directly out the
114.Dv bypass
115hook, and conversely, frames may be transmitted via the
116.Dv bypass
117hook as well.  This mode is appropriate for the link authentication phase.
118As soon as the link is enabled, the PPP node will
119begin processing frames received on the link.
120.Sh COMPRESSION AND ENCRYPTION
121Compression is supported via two hooks,
122.Dv compress
123and
124.Dv decompress .
125When enabled and connected, the PPP node writes outgoing frames on the
126.Dv comp
127hook and expects to receive back the compressed frame on the same hook.
128Similarly, the
129.Dv decompress
130hook is used to uncompress incoming frames when decompression is
131negotiated (compression and decompression are independently negotiable).
132The type of node attached to these hooks should correspond
133to the type of compression negotiated, e.g., Deflate, Predictor-1, etc.
134.Pp
135Encryption works exactly analogously via the
136.Dv encrypt
137and
138.Dv decrypt
139nodes.  Data is always compressed before being encrypted,
140and decrypted before being decompressed.
141.Pp
142Only bundle-level compression and encryption is directly supported;
143link-level compression and encryption can be handled transparently
144by downstream nodes.
145.Sh VAN JACOBSON COMPRESSION
146When all of the
147.Dv vjc_ip ,
148.Dv vjc_vjcomp ,
149.Dv vjc_vjuncomp ,
150and
151.Dv vjc_vjip
152hooks are connected, and the corresponding configuration flag is
153enabled, Van Jacobson compression and/or decompression will become active.
154Normally these hooks connect to the corresponding hooks of a single
155.Xr ng_vjc 4
156node.  The PPP node is compatible with the
157.Dq pass through
158modes of the
159.Xr ng_vjc 4
160node type.
161.Sh BYPASS HOOK
162When a frame is received on a link with an unsupported protocol,
163or a protocol which is disabled or for which the corresponding hook
164is unconnected, the PPP node forwards the frame out the
165.Dv bypass
166hook, prepended with a four byte prefix.  This first two bytes of
167the prefix indicate the link number on which the frame was received
168(in network order).
169For such frames received over the bundle (i.e., encapsulated in the
170multi-link protocol), the special link number
171.Dv NG_PPP_BUNDLE_LINKNUM
172is used.  After the two byte link number is the two byte PPP protocol number
173(also in network order).
174The PPP protocol number is two bytes long even if the original frame
175was protocol compressed.
176.Pp
177Conversely, any data written to the
178.Dv bypass
179hook is assumed to be in this same format.  The four byte header is
180stripped off, the PPP protocol number is prepended (possibly compressed),
181and the frame is delivered over the desired link.
182If the link number is
183.Dv NG_PPP_BUNDLE_LINKNUM
184the frame will be delivered over the multi-link bundle; or, if multi-link
185is disabled, over the (single) PPP link.
186.Pp
187Typically when the controlling entity receives an unexpected packet on the
188.Dv bypass
189hook it responds either by dropping the frame (if it's not ready for
190the protocol) or with an LCP protocol reject (if it doesn't recognize
191or expect the protocol).
192.Sh MULTILINK OPERATION
193To enable multi-link PPP, the corresponding configuration flag must be set
194and at least one link connected.  The PPP node will not allow more than
195one link to be connected if multi-link is not enabled, nor will it allow
196certain multi-link settings to be changed while multi-link operation is
197active (e.g., short sequence number header format).
198.Pp
199Because packets are sent as fragments across multiple individual links,
200it is important that when a link goes down the PPP node is notified
201immediately, either by disconnecting the corresponding hook or disabling
202the link via the
203.Dv NGM_PPP_SET_CONFIG
204control message.
205.Pp
206Each link has configuration parameters for latency (specified in
207milliseconds) and bandwidth (specified in tens of bytes per second).
208The PPP node can be configured for
209.Em round-robin
210or
211.Em optimized
212packet delivery.
213.Pp
214When configured for round-robin delivery, the latency and bandwidth
215values are ignored and the PPP node simply sends each frame as a
216single fragment, alternating frames across all the links in the
217bundle.  This scheme has the advantage that even if one link fails
218silently, some packets will still get through.  It has the disadvantage
219of sub-optimal overall bundle latency, which is important for
220interactive response time, and sub-optimal overall bundle bandwidth
221when links with different bandwidths exist in the same bundle.
222.Pp
223When configured for optimal delivery, the PPP node distributes the
224packet across the links in a way that minimizes the time it takes
225for the completed packet to be received by the far end.  This
226involves taking into account each link's latency, bandwidth, and
227current queue length.  Therefore these numbers should be
228configured as accurately as possible.  The algorithm does require
229some computation, so may not be appropriate for very slow machines
230and/or very fast links.
231.Pp
232As a special case, if all links have identical latency and bandwidth,
233then the above algorithm is disabled (because it is unnecessary)
234and the PPP node simply fragments frames into equal sized portions
235across all of the links.
236.Sh HOOKS
237This node type supports the following hooks:
238.Pp
239.Bl -tag -compact -width vjc_vjuncomp
240.It Dv link<N>
241Individual PPP link number
242.Dv <N>
243.It Dv compress
244Connection to compression engine
245.It Dv decompress
246Connection to decompression engine
247.It Dv encrypt
248Connection to encryption engine
249.It Dv decrypt
250Connection to decryption engine
251.It Dv vjc_ip
252Connection to
253.Xr ng_vjc 4
254.Dv ip
255hook
256.It Dv vjc_vjcomp
257Connection to
258.Xr ng_vjc 4
259.Dv vjcomp
260hook
261.It Dv vjc_vjuncomp
262Connection to
263.Xr ng_vjc 4
264.Dv vjuncomp
265hook
266.It Dv vjc_vjip
267Connection to
268.Xr ng_vjc 4
269.Dv vjip
270hook
271.It Dv inet
272IP packet data
273.It Dv atalk
274AppleTalk packet data
275.It Dv ipx
276IPX packet data
277.It Dv bypass
278Bypass hook; frames have a four byte header consisting of
279a link number and a PPP protocol number.
280.El
281.Sh CONTROL MESSAGES
282This node type supports the generic control messages, plus the following:
283.Bl -tag -width foo
284.It Dv NGM_PPP_SET_CONFIG
285This command configures all aspects of the node.  This includes enabling
286multi-link PPP, encryption, compression, Van Jacobson compression, and IP,
287AppleTalk, and IPX packet delivery.  It includes per-link configuration,
288including enabling the link, setting latency and bandwidth parameters,
289and enabling protocol field compression.  Note that no link or functionality
290is active until the corresponding hook is also connected.
291This command takes a
292.Dv "struct ng_ppp_node_config"
293as an argument:
294.Bd -literal -offset 0n
295/* Per-link config structure */
296struct ng_ppp_link_config {
297  u_char    enableLink;     /* enable this link */
298  u_char    enableProtoComp;/* enable protocol field compression */
299  u_char    enableACFComp;  /* enable addr/ctrl field compression */
300  u_int16_t mru;            /* peer MRU */
301  u_int32_t latency;        /* link latency (in milliseconds) */
302  u_int32_t bandwidth;      /* link bandwidth (in bytes/second) */
303};
304
305/* Node config structure */
306struct ng_ppp_node_config {
307  u_int16_t mrru;                   /* multilink peer MRRU */
308  u_char    enableMultilink;        /* enable multilink */
309  u_char    recvShortSeq;           /* recv multilink short seq # */
310  u_char    xmitShortSeq;           /* xmit multilink short seq # */
311  u_char    enableRoundRobin;       /* xmit whole packets */
312  u_char    enableIP;               /* enable IP data flow */
313  u_char    enableAtalk;            /* enable AppleTalk data flow */
314  u_char    enableIPX;              /* enable IPX data flow */
315  u_char    enableCompression;      /* enable PPP compression */
316  u_char    enableDecompression;    /* enable PPP decompression */
317  u_char    enableEncryption;       /* enable PPP encryption */
318  u_char    enableDecryption;       /* enable PPP decryption */
319  u_char    enableVJCompression;    /* enable VJ compression */
320  u_char    enableVJDecompression;  /* enable VJ decompression */
321  struct ng_ppp_link_config          /* per link config params */
322            links[NG_PPP_MAX_LINKS];
323};
324.Ed
325.It Dv NGM_PPP_GET_CONFIG
326Returns the current configuration as a
327.Dv "struct ng_ppp_node_config" .
328.It Dv NGM_PPP_GET_LINK_STATS
329This command takes a two byte link number as an argument and returns a
330.Dv "struct ng_ppp_link_stat"
331containing statistics for the corresponding link.  Here
332.Dv NG_PPP_BUNDLE_LINKNUM
333is a valid link number corresponding to the multi-link bundle.
334.It Dv NGM_PPP_CLR_LINK_STATS
335This command takes a two byte link number as an argument and
336clears the statistics for that link.
337.It Dv NGM_PPP_GETCLR_LINK_STATS
338Same as
339.Dv NGM_PPP_GET_LINK_STATS ,
340but also atomically clears the statistics as well.
341.El
342.Pp
343This node type also accepts the control messages accepted by the
344.Xr ng_vjc 4
345node type. When received, these messages are simply forwarded to
346the adjacent
347.Xr ng_vjc 4
348node, if any.  This is particularly useful when the individual
349PPP links are able to generate
350.Dv NGM_VJC_RECV_ERROR
351messages (see
352.Xr ng_vjc 4
353for a description).
354.Sh SHUTDOWN
355This node shuts down upon receipt of a
356.Dv NGM_SHUTDOWN
357control message, or when all hooks have been disconnected.
358.Sh SEE ALSO
359.Xr netgraph 4 ,
360.Xr ng_async 4 ,
361.Xr ng_iface 4 ,
362.Xr ng_mppc 4 ,
363.Xr ng_pppoe 4 ,
364.Xr ng_vjc 4 ,
365.Xr ngctl 8
366.Rs
367.%A W. Simpson
368.%T "The Point-to-Point Protocol (PPP)"
369.%O RFC 1661
370.Re
371.Rs
372.%A K. Sklower
373.%A B. Lloyd
374.%A G. McGregor
375.%A D. Carr
376.%A T. Coradetti
377.%T "The PPP Multilink Protocol (MP)"
378.%O RFC 1990
379.Re
380.Sh HISTORY
381The
382.Nm
383node type was implemented in
384.Fx 4.0 .
385.Sh AUTHORS
386.An Archie Cobbs Aq Mt archie@FreeBSD.org
387