xref: /freebsd/sys/netgraph/ng_ppp.c (revision f0184ff8e3b84a1c7273492d8854cfaa012060b5)
14cf49a43SJulian Elischer 
24cf49a43SJulian Elischer /*
34cf49a43SJulian Elischer  * ng_ppp.c
44cf49a43SJulian Elischer  *
5a9b3dca5SArchie Cobbs  * Copyright (c) 1996-2000 Whistle Communications, Inc.
64cf49a43SJulian Elischer  * All rights reserved.
74cf49a43SJulian Elischer  *
84cf49a43SJulian Elischer  * Subject to the following obligations and disclaimer of warranty, use and
94cf49a43SJulian Elischer  * redistribution of this software, in source or object code forms, with or
104cf49a43SJulian Elischer  * without modifications are expressly permitted by Whistle Communications;
114cf49a43SJulian Elischer  * provided, however, that:
124cf49a43SJulian Elischer  * 1. Any and all reproductions of the source or object code must include the
134cf49a43SJulian Elischer  *    copyright notice above and the following disclaimer of warranties; and
144cf49a43SJulian Elischer  * 2. No rights are granted, in any manner or form, to use Whistle
154cf49a43SJulian Elischer  *    Communications, Inc. trademarks, including the mark "WHISTLE
164cf49a43SJulian Elischer  *    COMMUNICATIONS" on advertising, endorsements, or otherwise except as
174cf49a43SJulian Elischer  *    such appears in the above copyright notice or in the software.
184cf49a43SJulian Elischer  *
194cf49a43SJulian Elischer  * THIS SOFTWARE IS BEING PROVIDED BY WHISTLE COMMUNICATIONS "AS IS", AND
204cf49a43SJulian Elischer  * TO THE MAXIMUM EXTENT PERMITTED BY LAW, WHISTLE COMMUNICATIONS MAKES NO
214cf49a43SJulian Elischer  * REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, REGARDING THIS SOFTWARE,
224cf49a43SJulian Elischer  * INCLUDING WITHOUT LIMITATION, ANY AND ALL IMPLIED WARRANTIES OF
234cf49a43SJulian Elischer  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT.
244cf49a43SJulian Elischer  * WHISTLE COMMUNICATIONS DOES NOT WARRANT, GUARANTEE, OR MAKE ANY
254cf49a43SJulian Elischer  * REPRESENTATIONS REGARDING THE USE OF, OR THE RESULTS OF THE USE OF THIS
264cf49a43SJulian Elischer  * SOFTWARE IN TERMS OF ITS CORRECTNESS, ACCURACY, RELIABILITY OR OTHERWISE.
274cf49a43SJulian Elischer  * IN NO EVENT SHALL WHISTLE COMMUNICATIONS BE LIABLE FOR ANY DAMAGES
284cf49a43SJulian Elischer  * RESULTING FROM OR ARISING OUT OF ANY USE OF THIS SOFTWARE, INCLUDING
294cf49a43SJulian Elischer  * WITHOUT LIMITATION, ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
304cf49a43SJulian Elischer  * PUNITIVE, OR CONSEQUENTIAL DAMAGES, PROCUREMENT OF SUBSTITUTE GOODS OR
314cf49a43SJulian Elischer  * SERVICES, LOSS OF USE, DATA OR PROFITS, HOWEVER CAUSED AND UNDER ANY
324cf49a43SJulian Elischer  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
334cf49a43SJulian Elischer  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
344cf49a43SJulian Elischer  * THIS SOFTWARE, EVEN IF WHISTLE COMMUNICATIONS IS ADVISED OF THE POSSIBILITY
354cf49a43SJulian Elischer  * OF SUCH DAMAGE.
364cf49a43SJulian Elischer  *
376f16db81SArchie Cobbs  * Author: Archie Cobbs <archie@freebsd.org>
384cf49a43SJulian Elischer  *
394cf49a43SJulian Elischer  * $FreeBSD$
4074f5c6aaSJulian Elischer  * $Whistle: ng_ppp.c,v 1.24 1999/11/01 09:24:52 julian Exp $
414cf49a43SJulian Elischer  */
424cf49a43SJulian Elischer 
434cf49a43SJulian Elischer /*
443949bee8SArchie Cobbs  * PPP node type.
454cf49a43SJulian Elischer  */
464cf49a43SJulian Elischer 
474cf49a43SJulian Elischer #include <sys/param.h>
484cf49a43SJulian Elischer #include <sys/systm.h>
494cf49a43SJulian Elischer #include <sys/kernel.h>
50a9b3dca5SArchie Cobbs #include <sys/time.h>
514cf49a43SJulian Elischer #include <sys/mbuf.h>
524cf49a43SJulian Elischer #include <sys/malloc.h>
534cf49a43SJulian Elischer #include <sys/errno.h>
545b664c7cSPoul-Henning Kamp #include <sys/ctype.h>
554cf49a43SJulian Elischer 
56a9b3dca5SArchie Cobbs #include <machine/limits.h>
57a9b3dca5SArchie Cobbs 
584cf49a43SJulian Elischer #include <netgraph/ng_message.h>
594cf49a43SJulian Elischer #include <netgraph/netgraph.h>
60f8307e12SArchie Cobbs #include <netgraph/ng_parse.h>
614cf49a43SJulian Elischer #include <netgraph/ng_ppp.h>
623949bee8SArchie Cobbs #include <netgraph/ng_vjc.h>
634cf49a43SJulian Elischer 
649c8c302fSJulian Elischer #ifdef NG_SEPARATE_MALLOC
659c8c302fSJulian Elischer MALLOC_DEFINE(M_NETGRAPH_PPP, "netgraph_ppp", "netgraph ppp node");
669c8c302fSJulian Elischer #else
679c8c302fSJulian Elischer #define M_NETGRAPH_PPP M_NETGRAPH
689c8c302fSJulian Elischer #endif
699c8c302fSJulian Elischer 
704cf49a43SJulian Elischer #define PROT_VALID(p)		(((p) & 0x0101) == 0x0001)
712b70adcbSArchie Cobbs #define PROT_COMPRESSABLE(p)	(((p) & 0xff00) == 0x0000)
724cf49a43SJulian Elischer 
733949bee8SArchie Cobbs /* Some PPP protocol numbers we're interested in */
743949bee8SArchie Cobbs #define PROT_APPLETALK		0x0029
753949bee8SArchie Cobbs #define PROT_COMPD		0x00fd
763949bee8SArchie Cobbs #define PROT_CRYPTD		0x0053
773949bee8SArchie Cobbs #define PROT_IP			0x0021
78a9b3dca5SArchie Cobbs #define PROT_IPV6		0x0057
792b70adcbSArchie Cobbs #define PROT_IPX		0x002b
80d690a6e7SArchie Cobbs #define PROT_LCP		0xc021
813949bee8SArchie Cobbs #define PROT_MP			0x003d
823949bee8SArchie Cobbs #define PROT_VJCOMP		0x002d
833949bee8SArchie Cobbs #define PROT_VJUNCOMP		0x002f
843949bee8SArchie Cobbs 
853949bee8SArchie Cobbs /* Multilink PPP definitions */
863949bee8SArchie Cobbs #define MP_MIN_MRRU		1500		/* per RFC 1990 */
873949bee8SArchie Cobbs #define MP_INITIAL_SEQ		0		/* per RFC 1990 */
883949bee8SArchie Cobbs #define MP_MIN_LINK_MRU		32
893949bee8SArchie Cobbs 
903949bee8SArchie Cobbs #define MP_SHORT_SEQ_MASK	0x00000fff	/* short seq # mask */
913949bee8SArchie Cobbs #define MP_SHORT_SEQ_HIBIT	0x00000800	/* short seq # high bit */
923949bee8SArchie Cobbs #define MP_SHORT_FIRST_FLAG	0x00008000	/* first fragment in frame */
933949bee8SArchie Cobbs #define MP_SHORT_LAST_FLAG	0x00004000	/* last fragment in frame */
943949bee8SArchie Cobbs 
953949bee8SArchie Cobbs #define MP_LONG_SEQ_MASK	0x00ffffff	/* long seq # mask */
963949bee8SArchie Cobbs #define MP_LONG_SEQ_HIBIT	0x00800000	/* long seq # high bit */
973949bee8SArchie Cobbs #define MP_LONG_FIRST_FLAG	0x80000000	/* first fragment in frame */
983949bee8SArchie Cobbs #define MP_LONG_LAST_FLAG	0x40000000	/* last fragment in frame */
993949bee8SArchie Cobbs 
1006f16db81SArchie Cobbs #define MP_NOSEQ		0x7fffffff	/* impossible sequence number */
1013949bee8SArchie Cobbs 
1023949bee8SArchie Cobbs /* Sign extension of MP sequence numbers */
1033949bee8SArchie Cobbs #define MP_SHORT_EXTEND(s)	(((s) & MP_SHORT_SEQ_HIBIT) ?		\
1046f16db81SArchie Cobbs 				    ((s) | ~MP_SHORT_SEQ_MASK)		\
1056f16db81SArchie Cobbs 				    : ((s) & MP_SHORT_SEQ_MASK))
1063949bee8SArchie Cobbs #define MP_LONG_EXTEND(s)	(((s) & MP_LONG_SEQ_HIBIT) ?		\
1076f16db81SArchie Cobbs 				    ((s) | ~MP_LONG_SEQ_MASK)		\
1086f16db81SArchie Cobbs 				    : ((s) & MP_LONG_SEQ_MASK))
1093949bee8SArchie Cobbs 
1106f16db81SArchie Cobbs /* Comparision of MP sequence numbers. Note: all sequence numbers
1116f16db81SArchie Cobbs    except priv->xseq are stored with the sign bit extended. */
1126f16db81SArchie Cobbs #define MP_SHORT_SEQ_DIFF(x,y)	MP_SHORT_EXTEND((x) - (y))
1136f16db81SArchie Cobbs #define MP_LONG_SEQ_DIFF(x,y)	MP_LONG_EXTEND((x) - (y))
1143949bee8SArchie Cobbs 
1156f16db81SArchie Cobbs #define MP_RECV_SEQ_DIFF(priv,x,y)					\
1166f16db81SArchie Cobbs 				((priv)->conf.recvShortSeq ?		\
1173949bee8SArchie Cobbs 				    MP_SHORT_SEQ_DIFF((x), (y)) :	\
1183949bee8SArchie Cobbs 				    MP_LONG_SEQ_DIFF((x), (y)))
1193949bee8SArchie Cobbs 
1206f16db81SArchie Cobbs /* Increment receive sequence number */
1216f16db81SArchie Cobbs #define MP_NEXT_RECV_SEQ(priv,seq)					\
122b5a60ddbSArchie Cobbs 				((priv)->conf.recvShortSeq ?		\
123b5a60ddbSArchie Cobbs 				    MP_SHORT_EXTEND((seq) + 1) :	\
124b5a60ddbSArchie Cobbs 				    MP_LONG_EXTEND((seq) + 1))
125a9b3dca5SArchie Cobbs 
126a9b3dca5SArchie Cobbs /* Don't fragment transmitted packets smaller than this */
127a9b3dca5SArchie Cobbs #define MP_MIN_FRAG_LEN		6
128a9b3dca5SArchie Cobbs 
129a9b3dca5SArchie Cobbs /* Maximum fragment reasssembly queue length */
130a9b3dca5SArchie Cobbs #define MP_MAX_QUEUE_LEN	128
131a9b3dca5SArchie Cobbs 
132a9b3dca5SArchie Cobbs /* Fragment queue scanner period */
133a9b3dca5SArchie Cobbs #define MP_FRAGTIMER_INTERVAL	(hz/2)
134a9b3dca5SArchie Cobbs 
1353949bee8SArchie Cobbs /* We store incoming fragments this way */
1363949bee8SArchie Cobbs struct ng_ppp_frag {
137a9b3dca5SArchie Cobbs 	int				seq;		/* fragment seq# */
138a9b3dca5SArchie Cobbs 	u_char				first;		/* First in packet? */
139a9b3dca5SArchie Cobbs 	u_char				last;		/* Last in packet? */
140a9b3dca5SArchie Cobbs 	struct timeval			timestamp;	/* time of reception */
141a9b3dca5SArchie Cobbs 	struct mbuf			*data;		/* Fragment data */
142a9b3dca5SArchie Cobbs 	meta_p				meta;		/* Fragment meta */
1435f90cac7SKirk McKusick 	TAILQ_ENTRY(ng_ppp_frag)	f_qent;		/* Fragment queue */
1443949bee8SArchie Cobbs };
1453949bee8SArchie Cobbs 
1463949bee8SArchie Cobbs /* We use integer indicies to refer to the non-link hooks */
1473949bee8SArchie Cobbs static const char *const ng_ppp_hook_names[] = {
1483949bee8SArchie Cobbs 	NG_PPP_HOOK_ATALK,
1493949bee8SArchie Cobbs #define HOOK_INDEX_ATALK		0
1503949bee8SArchie Cobbs 	NG_PPP_HOOK_BYPASS,
1513949bee8SArchie Cobbs #define HOOK_INDEX_BYPASS		1
1523949bee8SArchie Cobbs 	NG_PPP_HOOK_COMPRESS,
1533949bee8SArchie Cobbs #define HOOK_INDEX_COMPRESS		2
1543949bee8SArchie Cobbs 	NG_PPP_HOOK_ENCRYPT,
1553949bee8SArchie Cobbs #define HOOK_INDEX_ENCRYPT		3
1563949bee8SArchie Cobbs 	NG_PPP_HOOK_DECOMPRESS,
1573949bee8SArchie Cobbs #define HOOK_INDEX_DECOMPRESS		4
1583949bee8SArchie Cobbs 	NG_PPP_HOOK_DECRYPT,
1593949bee8SArchie Cobbs #define HOOK_INDEX_DECRYPT		5
1603949bee8SArchie Cobbs 	NG_PPP_HOOK_INET,
1613949bee8SArchie Cobbs #define HOOK_INDEX_INET			6
1623949bee8SArchie Cobbs 	NG_PPP_HOOK_IPX,
1633949bee8SArchie Cobbs #define HOOK_INDEX_IPX			7
1643949bee8SArchie Cobbs 	NG_PPP_HOOK_VJC_COMP,
1653949bee8SArchie Cobbs #define HOOK_INDEX_VJC_COMP		8
1663949bee8SArchie Cobbs 	NG_PPP_HOOK_VJC_IP,
1673949bee8SArchie Cobbs #define HOOK_INDEX_VJC_IP		9
1683949bee8SArchie Cobbs 	NG_PPP_HOOK_VJC_UNCOMP,
1693949bee8SArchie Cobbs #define HOOK_INDEX_VJC_UNCOMP		10
1703949bee8SArchie Cobbs 	NG_PPP_HOOK_VJC_VJIP,
1713949bee8SArchie Cobbs #define HOOK_INDEX_VJC_VJIP		11
172a9b3dca5SArchie Cobbs 	NG_PPP_HOOK_IPV6,
173a9b3dca5SArchie Cobbs #define HOOK_INDEX_IPV6			12
1743949bee8SArchie Cobbs 	NULL
175a9b3dca5SArchie Cobbs #define HOOK_INDEX_MAX			13
1763949bee8SArchie Cobbs };
1773949bee8SArchie Cobbs 
1783949bee8SArchie Cobbs /* We store index numbers in the hook private pointer. The HOOK_INDEX()
1793949bee8SArchie Cobbs    for a hook is either the index (above) for normal hooks, or the ones
18030400f03SJulian Elischer    complement of the link number for link hooks.
18130400f03SJulian Elischer XXX Not any more.. (what a hack)
1823949bee8SArchie Cobbs #define HOOK_INDEX(hook)	(*((int16_t *) &(hook)->private))
18330400f03SJulian Elischer */
1844cf49a43SJulian Elischer 
185a9b3dca5SArchie Cobbs /* Per-link private information */
186a9b3dca5SArchie Cobbs struct ng_ppp_link {
187a9b3dca5SArchie Cobbs 	struct ng_ppp_link_conf	conf;		/* link configuration */
188a9b3dca5SArchie Cobbs 	hook_p			hook;		/* connection to link data */
1896f16db81SArchie Cobbs 	int32_t			seq;		/* highest rec'd seq# - MSEQ */
190a9b3dca5SArchie Cobbs 	struct timeval		lastWrite;	/* time of last write */
191a9b3dca5SArchie Cobbs 	int			bytesInQueue;	/* bytes in the output queue */
192a9b3dca5SArchie Cobbs 	struct ng_ppp_link_stat	stats;		/* Link stats */
193a9b3dca5SArchie Cobbs };
194a9b3dca5SArchie Cobbs 
195a9b3dca5SArchie Cobbs /* Total per-node private information */
19662838faeSArchie Cobbs struct ng_ppp_private {
197a9b3dca5SArchie Cobbs 	struct ng_ppp_bund_conf	conf;			/* bundle config */
198a9b3dca5SArchie Cobbs 	struct ng_ppp_link_stat	bundleStats;		/* bundle stats */
199a9b3dca5SArchie Cobbs 	struct ng_ppp_link	links[NG_PPP_MAX_LINKS];/* per-link info */
2006f16db81SArchie Cobbs 	int32_t			xseq;			/* next out MP seq # */
2016f16db81SArchie Cobbs 	int32_t			mseq;			/* min links[i].seq */
202a9b3dca5SArchie Cobbs 	u_char			vjCompHooked;		/* VJ comp hooked up? */
203a9b3dca5SArchie Cobbs 	u_char			allLinksEqual;		/* all xmit the same? */
204a9b3dca5SArchie Cobbs 	u_char			timerActive;		/* frag timer active? */
205a9b3dca5SArchie Cobbs 	u_int			numActiveLinks;		/* how many links up */
206a9b3dca5SArchie Cobbs 	int			activeLinks[NG_PPP_MAX_LINKS];	/* indicies */
2073949bee8SArchie Cobbs 	u_int			lastLink;		/* for round robin */
208a9b3dca5SArchie Cobbs 	hook_p			hooks[HOOK_INDEX_MAX];	/* non-link hooks */
2095f90cac7SKirk McKusick 	TAILQ_HEAD(ng_ppp_fraglist, ng_ppp_frag)	/* fragment queue */
210a9b3dca5SArchie Cobbs 				frags;
211a9b3dca5SArchie Cobbs 	int			qlen;			/* fraq queue length */
212a9b3dca5SArchie Cobbs 	struct callout_handle	fragTimer;		/* fraq queue check */
2134cf49a43SJulian Elischer };
21462838faeSArchie Cobbs typedef struct ng_ppp_private *priv_p;
2154cf49a43SJulian Elischer 
2164cf49a43SJulian Elischer /* Netgraph node methods */
21774f5c6aaSJulian Elischer static ng_constructor_t	ng_ppp_constructor;
21874f5c6aaSJulian Elischer static ng_rcvmsg_t	ng_ppp_rcvmsg;
219069154d5SJulian Elischer static ng_shutdown_t	ng_ppp_shutdown;
22074f5c6aaSJulian Elischer static ng_newhook_t	ng_ppp_newhook;
22174f5c6aaSJulian Elischer static ng_rcvdata_t	ng_ppp_rcvdata;
22274f5c6aaSJulian Elischer static ng_disconnect_t	ng_ppp_disconnect;
2234cf49a43SJulian Elischer 
2243949bee8SArchie Cobbs /* Helper functions */
225e149c4e2SArchie Cobbs static int	ng_ppp_input(node_p node, int bypass,
226069154d5SJulian Elischer 			int linkNum, item_p item);
227d690a6e7SArchie Cobbs static int	ng_ppp_output(node_p node, int bypass, int proto,
228069154d5SJulian Elischer 			int linkNum, item_p item);
229069154d5SJulian Elischer static int	ng_ppp_mp_input(node_p node, int linkNum, item_p item);
230a9b3dca5SArchie Cobbs static int	ng_ppp_check_packet(node_p node);
231a9b3dca5SArchie Cobbs static void	ng_ppp_get_packet(node_p node, struct mbuf **mp, meta_p *metap);
232a9b3dca5SArchie Cobbs static int	ng_ppp_frag_process(node_p node);
233a9b3dca5SArchie Cobbs static int	ng_ppp_frag_trim(node_p node);
234a9b3dca5SArchie Cobbs static void	ng_ppp_frag_timeout(void *arg);
235a9b3dca5SArchie Cobbs static void	ng_ppp_frag_checkstale(node_p node);
236a9b3dca5SArchie Cobbs static void	ng_ppp_frag_reset(node_p node);
2373949bee8SArchie Cobbs static int	ng_ppp_mp_output(node_p node, struct mbuf *m, meta_p meta);
2383949bee8SArchie Cobbs static void	ng_ppp_mp_strategy(node_p node, int len, int *distrib);
2393949bee8SArchie Cobbs static int	ng_ppp_intcmp(const void *v1, const void *v2);
2403949bee8SArchie Cobbs static struct	mbuf *ng_ppp_addproto(struct mbuf *m, int proto, int compOK);
241d690a6e7SArchie Cobbs static struct	mbuf *ng_ppp_prepend(struct mbuf *m, const void *buf, int len);
2423949bee8SArchie Cobbs static int	ng_ppp_config_valid(node_p node,
243a9b3dca5SArchie Cobbs 			const struct ng_ppp_node_conf *newConf);
2443949bee8SArchie Cobbs static void	ng_ppp_update(node_p node, int newConf);
245a9b3dca5SArchie Cobbs static void	ng_ppp_start_frag_timer(node_p node);
246a9b3dca5SArchie Cobbs static void	ng_ppp_stop_frag_timer(node_p node);
2474cf49a43SJulian Elischer 
2486f16db81SArchie Cobbs /* Parse type for struct ng_ppp_mp_state_type */
2496f16db81SArchie Cobbs static const struct ng_parse_fixedarray_info ng_ppp_rseq_array_info = {
2506f16db81SArchie Cobbs 	&ng_parse_hint32_type,
2516f16db81SArchie Cobbs 	NG_PPP_MAX_LINKS
2526f16db81SArchie Cobbs };
2536f16db81SArchie Cobbs static const struct ng_parse_type ng_ppp_rseq_array_type = {
2546f16db81SArchie Cobbs 	&ng_parse_fixedarray_type,
2556f16db81SArchie Cobbs 	&ng_ppp_rseq_array_info,
2566f16db81SArchie Cobbs };
257f0184ff8SArchie Cobbs static const struct ng_parse_struct_field ng_ppp_mp_state_type_fields[]
2586f16db81SArchie Cobbs 	= NG_PPP_MP_STATE_TYPE_INFO(&ng_ppp_rseq_array_type);
2596f16db81SArchie Cobbs static const struct ng_parse_type ng_ppp_mp_state_type = {
2606f16db81SArchie Cobbs 	&ng_parse_struct_type,
261f0184ff8SArchie Cobbs 	&ng_ppp_mp_state_type_fields
2626f16db81SArchie Cobbs };
2636f16db81SArchie Cobbs 
264a9b3dca5SArchie Cobbs /* Parse type for struct ng_ppp_link_conf */
265f0184ff8SArchie Cobbs static const struct ng_parse_struct_field ng_ppp_link_type_fields[]
266f0184ff8SArchie Cobbs 	= NG_PPP_LINK_TYPE_INFO;
267f8307e12SArchie Cobbs static const struct ng_parse_type ng_ppp_link_type = {
268f8307e12SArchie Cobbs 	&ng_parse_struct_type,
269f0184ff8SArchie Cobbs 	&ng_ppp_link_type_fields
270f8307e12SArchie Cobbs };
271f8307e12SArchie Cobbs 
272a9b3dca5SArchie Cobbs /* Parse type for struct ng_ppp_bund_conf */
273f0184ff8SArchie Cobbs static const struct ng_parse_struct_field ng_ppp_bund_type_fields[]
274f0184ff8SArchie Cobbs 	= NG_PPP_BUND_TYPE_INFO;
275a9b3dca5SArchie Cobbs static const struct ng_parse_type ng_ppp_bund_type = {
276a9b3dca5SArchie Cobbs 	&ng_parse_struct_type,
277f0184ff8SArchie Cobbs 	&ng_ppp_bund_type_fields
278a9b3dca5SArchie Cobbs };
279a9b3dca5SArchie Cobbs 
280a9b3dca5SArchie Cobbs /* Parse type for struct ng_ppp_node_conf */
2816f16db81SArchie Cobbs static const struct ng_parse_fixedarray_info ng_ppp_array_info = {
282f8307e12SArchie Cobbs 	&ng_ppp_link_type,
283f8307e12SArchie Cobbs 	NG_PPP_MAX_LINKS
284f8307e12SArchie Cobbs };
285f8307e12SArchie Cobbs static const struct ng_parse_type ng_ppp_link_array_type = {
286f8307e12SArchie Cobbs 	&ng_parse_fixedarray_type,
287f8307e12SArchie Cobbs 	&ng_ppp_array_info,
288f8307e12SArchie Cobbs };
289f0184ff8SArchie Cobbs static const struct ng_parse_struct_field ng_ppp_conf_type_fields[]
290a9b3dca5SArchie Cobbs 	= NG_PPP_CONFIG_TYPE_INFO(&ng_ppp_bund_type, &ng_ppp_link_array_type);
291a9b3dca5SArchie Cobbs static const struct ng_parse_type ng_ppp_conf_type = {
292f8307e12SArchie Cobbs 	&ng_parse_struct_type,
293f0184ff8SArchie Cobbs 	&ng_ppp_conf_type_fields
294f8307e12SArchie Cobbs };
295f8307e12SArchie Cobbs 
296f8307e12SArchie Cobbs /* Parse type for struct ng_ppp_link_stat */
297f0184ff8SArchie Cobbs static const struct ng_parse_struct_field ng_ppp_stats_type_fields[]
298f0184ff8SArchie Cobbs 	= NG_PPP_STATS_TYPE_INFO;
299f8307e12SArchie Cobbs static const struct ng_parse_type ng_ppp_stats_type = {
300f8307e12SArchie Cobbs 	&ng_parse_struct_type,
301f0184ff8SArchie Cobbs 	&ng_ppp_stats_type_fields
302f8307e12SArchie Cobbs };
303f8307e12SArchie Cobbs 
304f8307e12SArchie Cobbs /* List of commands and how to convert arguments to/from ASCII */
305f8307e12SArchie Cobbs static const struct ng_cmdlist ng_ppp_cmds[] = {
306f8307e12SArchie Cobbs 	{
307f8307e12SArchie Cobbs 	  NGM_PPP_COOKIE,
308f8307e12SArchie Cobbs 	  NGM_PPP_SET_CONFIG,
309f8307e12SArchie Cobbs 	  "setconfig",
310a9b3dca5SArchie Cobbs 	  &ng_ppp_conf_type,
311f8307e12SArchie Cobbs 	  NULL
312f8307e12SArchie Cobbs 	},
313f8307e12SArchie Cobbs 	{
314f8307e12SArchie Cobbs 	  NGM_PPP_COOKIE,
315f8307e12SArchie Cobbs 	  NGM_PPP_GET_CONFIG,
316f8307e12SArchie Cobbs 	  "getconfig",
317f8307e12SArchie Cobbs 	  NULL,
318a9b3dca5SArchie Cobbs 	  &ng_ppp_conf_type
319f8307e12SArchie Cobbs 	},
320f8307e12SArchie Cobbs 	{
321f8307e12SArchie Cobbs 	  NGM_PPP_COOKIE,
3226f16db81SArchie Cobbs 	  NGM_PPP_GET_MP_STATE,
3236f16db81SArchie Cobbs 	  "getmpstate",
3246f16db81SArchie Cobbs 	  NULL,
3256f16db81SArchie Cobbs 	  &ng_ppp_mp_state_type
3266f16db81SArchie Cobbs 	},
3276f16db81SArchie Cobbs 	{
3286f16db81SArchie Cobbs 	  NGM_PPP_COOKIE,
329f8307e12SArchie Cobbs 	  NGM_PPP_GET_LINK_STATS,
330f8307e12SArchie Cobbs 	  "getstats",
331f8307e12SArchie Cobbs 	  &ng_parse_int16_type,
332f8307e12SArchie Cobbs 	  &ng_ppp_stats_type
333f8307e12SArchie Cobbs 	},
334f8307e12SArchie Cobbs 	{
335f8307e12SArchie Cobbs 	  NGM_PPP_COOKIE,
336f8307e12SArchie Cobbs 	  NGM_PPP_CLR_LINK_STATS,
337f8307e12SArchie Cobbs 	  "clrstats",
338f8307e12SArchie Cobbs 	  &ng_parse_int16_type,
339f8307e12SArchie Cobbs 	  NULL
340f8307e12SArchie Cobbs 	},
341f8307e12SArchie Cobbs 	{
342f8307e12SArchie Cobbs 	  NGM_PPP_COOKIE,
343f8307e12SArchie Cobbs 	  NGM_PPP_GETCLR_LINK_STATS,
344f8307e12SArchie Cobbs 	  "getclrstats",
345f8307e12SArchie Cobbs 	  &ng_parse_int16_type,
346f8307e12SArchie Cobbs 	  &ng_ppp_stats_type
347f8307e12SArchie Cobbs 	},
348f8307e12SArchie Cobbs 	{ 0 }
349f8307e12SArchie Cobbs };
350f8307e12SArchie Cobbs 
3514cf49a43SJulian Elischer /* Node type descriptor */
3523949bee8SArchie Cobbs static struct ng_type ng_ppp_typestruct = {
353589f6ed8SJulian Elischer 	NG_ABI_VERSION,
3544cf49a43SJulian Elischer 	NG_PPP_NODE_TYPE,
3554cf49a43SJulian Elischer 	NULL,
3564cf49a43SJulian Elischer 	ng_ppp_constructor,
3574cf49a43SJulian Elischer 	ng_ppp_rcvmsg,
358069154d5SJulian Elischer 	ng_ppp_shutdown,
3594cf49a43SJulian Elischer 	ng_ppp_newhook,
3604cf49a43SJulian Elischer 	NULL,
3614cf49a43SJulian Elischer 	NULL,
3624cf49a43SJulian Elischer 	ng_ppp_rcvdata,
363f8307e12SArchie Cobbs 	ng_ppp_disconnect,
364f8307e12SArchie Cobbs 	ng_ppp_cmds
3654cf49a43SJulian Elischer };
3663949bee8SArchie Cobbs NETGRAPH_INIT(ppp, &ng_ppp_typestruct);
3674cf49a43SJulian Elischer 
3683949bee8SArchie Cobbs static int *compareLatencies;			/* hack for ng_ppp_intcmp() */
3694cf49a43SJulian Elischer 
370d690a6e7SArchie Cobbs /* Address and control field header */
371d690a6e7SArchie Cobbs static const u_char ng_ppp_acf[2] = { 0xff, 0x03 };
372d690a6e7SArchie Cobbs 
373a9b3dca5SArchie Cobbs /* Maximum time we'll let a complete incoming packet sit in the queue */
374a9b3dca5SArchie Cobbs static const struct timeval ng_ppp_max_staleness = { 2, 0 };	/* 2 seconds */
375a9b3dca5SArchie Cobbs 
3764cf49a43SJulian Elischer #define ERROUT(x)	do { error = (x); goto done; } while (0)
3774cf49a43SJulian Elischer 
3784cf49a43SJulian Elischer /************************************************************************
3794cf49a43SJulian Elischer 			NETGRAPH NODE STUFF
3804cf49a43SJulian Elischer  ************************************************************************/
3814cf49a43SJulian Elischer 
3824cf49a43SJulian Elischer /*
3833949bee8SArchie Cobbs  * Node type constructor
3844cf49a43SJulian Elischer  */
3854cf49a43SJulian Elischer static int
386069154d5SJulian Elischer ng_ppp_constructor(node_p node)
3874cf49a43SJulian Elischer {
3884cf49a43SJulian Elischer 	priv_p priv;
389069154d5SJulian Elischer 	int i;
3904cf49a43SJulian Elischer 
3914cf49a43SJulian Elischer 	/* Allocate private structure */
3929c8c302fSJulian Elischer 	MALLOC(priv, priv_p, sizeof(*priv), M_NETGRAPH_PPP, M_NOWAIT | M_ZERO);
3934cf49a43SJulian Elischer 	if (priv == NULL)
3944cf49a43SJulian Elischer 		return (ENOMEM);
3954cf49a43SJulian Elischer 
39630400f03SJulian Elischer 	NG_NODE_SET_PRIVATE(node, priv);
3974cf49a43SJulian Elischer 
3983949bee8SArchie Cobbs 	/* Initialize state */
3995f90cac7SKirk McKusick 	TAILQ_INIT(&priv->frags);
400a9b3dca5SArchie Cobbs 	for (i = 0; i < NG_PPP_MAX_LINKS; i++)
401a9b3dca5SArchie Cobbs 		priv->links[i].seq = MP_NOSEQ;
402a9b3dca5SArchie Cobbs 	callout_handle_init(&priv->fragTimer);
4033949bee8SArchie Cobbs 
4044cf49a43SJulian Elischer 	/* Done */
4054cf49a43SJulian Elischer 	return (0);
4064cf49a43SJulian Elischer }
4074cf49a43SJulian Elischer 
4084cf49a43SJulian Elischer /*
4094cf49a43SJulian Elischer  * Give our OK for a hook to be added
4104cf49a43SJulian Elischer  */
4114cf49a43SJulian Elischer static int
4124cf49a43SJulian Elischer ng_ppp_newhook(node_p node, hook_p hook, const char *name)
4134cf49a43SJulian Elischer {
41430400f03SJulian Elischer 	const priv_p priv = NG_NODE_PRIVATE(node);
4153949bee8SArchie Cobbs 	int linkNum = -1;
4163949bee8SArchie Cobbs 	hook_p *hookPtr = NULL;
4173949bee8SArchie Cobbs 	int hookIndex = -1;
4184cf49a43SJulian Elischer 
4193949bee8SArchie Cobbs 	/* Figure out which hook it is */
4203949bee8SArchie Cobbs 	if (strncmp(name, NG_PPP_HOOK_LINK_PREFIX,	/* a link hook? */
4213949bee8SArchie Cobbs 	    strlen(NG_PPP_HOOK_LINK_PREFIX)) == 0) {
42225792ef3SArchie Cobbs 		const char *cp;
42325792ef3SArchie Cobbs 		char *eptr;
4243949bee8SArchie Cobbs 
4252b70adcbSArchie Cobbs 		cp = name + strlen(NG_PPP_HOOK_LINK_PREFIX);
4262b70adcbSArchie Cobbs 		if (!isdigit(*cp) || (cp[0] == '0' && cp[1] != '\0'))
4274cf49a43SJulian Elischer 			return (EINVAL);
4282b70adcbSArchie Cobbs 		linkNum = (int)strtoul(cp, &eptr, 10);
4292b70adcbSArchie Cobbs 		if (*eptr != '\0' || linkNum < 0 || linkNum >= NG_PPP_MAX_LINKS)
4303949bee8SArchie Cobbs 			return (EINVAL);
431a9b3dca5SArchie Cobbs 		hookPtr = &priv->links[linkNum].hook;
4323949bee8SArchie Cobbs 		hookIndex = ~linkNum;
4333949bee8SArchie Cobbs 	} else {				/* must be a non-link hook */
4343949bee8SArchie Cobbs 		int i;
4354cf49a43SJulian Elischer 
4363949bee8SArchie Cobbs 		for (i = 0; ng_ppp_hook_names[i] != NULL; i++) {
4373949bee8SArchie Cobbs 			if (strcmp(name, ng_ppp_hook_names[i]) == 0) {
4383949bee8SArchie Cobbs 				hookPtr = &priv->hooks[i];
4393949bee8SArchie Cobbs 				hookIndex = i;
4403949bee8SArchie Cobbs 				break;
4413949bee8SArchie Cobbs 			}
4423949bee8SArchie Cobbs 		}
4433949bee8SArchie Cobbs 		if (ng_ppp_hook_names[i] == NULL)
4443949bee8SArchie Cobbs 			return (EINVAL);	/* no such hook */
4453949bee8SArchie Cobbs 	}
4463949bee8SArchie Cobbs 
4473949bee8SArchie Cobbs 	/* See if hook is already connected */
4483949bee8SArchie Cobbs 	if (*hookPtr != NULL)
4494cf49a43SJulian Elischer 		return (EISCONN);
4504cf49a43SJulian Elischer 
4513949bee8SArchie Cobbs 	/* Disallow more than one link unless multilink is enabled */
452a9b3dca5SArchie Cobbs 	if (linkNum != -1 && priv->links[linkNum].conf.enableLink
4533949bee8SArchie Cobbs 	    && !priv->conf.enableMultilink && priv->numActiveLinks >= 1)
4543949bee8SArchie Cobbs 		return (ENODEV);
4554cf49a43SJulian Elischer 
4564cf49a43SJulian Elischer 	/* OK */
4573949bee8SArchie Cobbs 	*hookPtr = hook;
45830400f03SJulian Elischer 	NG_HOOK_SET_PRIVATE(hook, (void *)hookIndex);
4593949bee8SArchie Cobbs 	ng_ppp_update(node, 0);
4604cf49a43SJulian Elischer 	return (0);
4614cf49a43SJulian Elischer }
4624cf49a43SJulian Elischer 
4634cf49a43SJulian Elischer /*
4644cf49a43SJulian Elischer  * Receive a control message
4654cf49a43SJulian Elischer  */
4664cf49a43SJulian Elischer static int
467069154d5SJulian Elischer ng_ppp_rcvmsg(node_p node, item_p item, hook_p lasthook)
4684cf49a43SJulian Elischer {
46930400f03SJulian Elischer 	const priv_p priv = NG_NODE_PRIVATE(node);
4704cf49a43SJulian Elischer 	struct ng_mesg *resp = NULL;
4714cf49a43SJulian Elischer 	int error = 0;
472069154d5SJulian Elischer 	struct ng_mesg *msg;
4734cf49a43SJulian Elischer 
474069154d5SJulian Elischer 	NGI_GET_MSG(item, msg);
4754cf49a43SJulian Elischer 	switch (msg->header.typecookie) {
4764cf49a43SJulian Elischer 	case NGM_PPP_COOKIE:
4774cf49a43SJulian Elischer 		switch (msg->header.cmd) {
4783949bee8SArchie Cobbs 		case NGM_PPP_SET_CONFIG:
4793949bee8SArchie Cobbs 		    {
480a9b3dca5SArchie Cobbs 			struct ng_ppp_node_conf *const conf =
481a9b3dca5SArchie Cobbs 			    (struct ng_ppp_node_conf *)msg->data;
482a9b3dca5SArchie Cobbs 			int i;
4833949bee8SArchie Cobbs 
4843949bee8SArchie Cobbs 			/* Check for invalid or illegal config */
485a9b3dca5SArchie Cobbs 			if (msg->header.arglen != sizeof(*conf))
4864cf49a43SJulian Elischer 				ERROUT(EINVAL);
487a9b3dca5SArchie Cobbs 			if (!ng_ppp_config_valid(node, conf))
4883949bee8SArchie Cobbs 				ERROUT(EINVAL);
489a9b3dca5SArchie Cobbs 
490a9b3dca5SArchie Cobbs 			/* Copy config */
491a9b3dca5SArchie Cobbs 			priv->conf = conf->bund;
492a9b3dca5SArchie Cobbs 			for (i = 0; i < NG_PPP_MAX_LINKS; i++)
493a9b3dca5SArchie Cobbs 				priv->links[i].conf = conf->links[i];
4943949bee8SArchie Cobbs 			ng_ppp_update(node, 1);
4954cf49a43SJulian Elischer 			break;
4963949bee8SArchie Cobbs 		    }
4973949bee8SArchie Cobbs 		case NGM_PPP_GET_CONFIG:
498a9b3dca5SArchie Cobbs 		    {
499a9b3dca5SArchie Cobbs 			struct ng_ppp_node_conf *conf;
500a9b3dca5SArchie Cobbs 			int i;
501a9b3dca5SArchie Cobbs 
502a9b3dca5SArchie Cobbs 			NG_MKRESPONSE(resp, msg, sizeof(*conf), M_NOWAIT);
5034cf49a43SJulian Elischer 			if (resp == NULL)
5044cf49a43SJulian Elischer 				ERROUT(ENOMEM);
505a9b3dca5SArchie Cobbs 			conf = (struct ng_ppp_node_conf *)resp->data;
506a9b3dca5SArchie Cobbs 			conf->bund = priv->conf;
507a9b3dca5SArchie Cobbs 			for (i = 0; i < NG_PPP_MAX_LINKS; i++)
508a9b3dca5SArchie Cobbs 				conf->links[i] = priv->links[i].conf;
5094cf49a43SJulian Elischer 			break;
510a9b3dca5SArchie Cobbs 		    }
5116f16db81SArchie Cobbs 		case NGM_PPP_GET_MP_STATE:
5126f16db81SArchie Cobbs 		    {
5136f16db81SArchie Cobbs 			struct ng_ppp_mp_state *info;
5146f16db81SArchie Cobbs 			int i;
5156f16db81SArchie Cobbs 
5166f16db81SArchie Cobbs 			NG_MKRESPONSE(resp, msg, sizeof(*info), M_NOWAIT);
5176f16db81SArchie Cobbs 			if (resp == NULL)
5186f16db81SArchie Cobbs 				ERROUT(ENOMEM);
5196f16db81SArchie Cobbs 			info = (struct ng_ppp_mp_state *)resp->data;
5206f16db81SArchie Cobbs 			bzero(info, sizeof(*info));
5216f16db81SArchie Cobbs 			for (i = 0; i < NG_PPP_MAX_LINKS; i++) {
5226f16db81SArchie Cobbs 				if (priv->links[i].seq != MP_NOSEQ)
5236f16db81SArchie Cobbs 					info->rseq[i] = priv->links[i].seq;
5246f16db81SArchie Cobbs 			}
5256f16db81SArchie Cobbs 			info->mseq = priv->mseq;
5266f16db81SArchie Cobbs 			info->xseq = priv->xseq;
5276f16db81SArchie Cobbs 			break;
5286f16db81SArchie Cobbs 		    }
5293949bee8SArchie Cobbs 		case NGM_PPP_GET_LINK_STATS:
5303949bee8SArchie Cobbs 		case NGM_PPP_CLR_LINK_STATS:
531e149c4e2SArchie Cobbs 		case NGM_PPP_GETCLR_LINK_STATS:
5323949bee8SArchie Cobbs 		    {
5333949bee8SArchie Cobbs 			struct ng_ppp_link_stat *stats;
5343949bee8SArchie Cobbs 			u_int16_t linkNum;
5353949bee8SArchie Cobbs 
5363949bee8SArchie Cobbs 			if (msg->header.arglen != sizeof(u_int16_t))
5373949bee8SArchie Cobbs 				ERROUT(EINVAL);
5383949bee8SArchie Cobbs 			linkNum = *((u_int16_t *) msg->data);
5393949bee8SArchie Cobbs 			if (linkNum >= NG_PPP_MAX_LINKS
5403949bee8SArchie Cobbs 			    && linkNum != NG_PPP_BUNDLE_LINKNUM)
5413949bee8SArchie Cobbs 				ERROUT(EINVAL);
5423949bee8SArchie Cobbs 			stats = (linkNum == NG_PPP_BUNDLE_LINKNUM) ?
543a9b3dca5SArchie Cobbs 			    &priv->bundleStats : &priv->links[linkNum].stats;
544e149c4e2SArchie Cobbs 			if (msg->header.cmd != NGM_PPP_CLR_LINK_STATS) {
5453949bee8SArchie Cobbs 				NG_MKRESPONSE(resp, msg,
5463949bee8SArchie Cobbs 				    sizeof(struct ng_ppp_link_stat), M_NOWAIT);
5473949bee8SArchie Cobbs 				if (resp == NULL)
5483949bee8SArchie Cobbs 					ERROUT(ENOMEM);
5493949bee8SArchie Cobbs 				bcopy(stats, resp->data, sizeof(*stats));
550e149c4e2SArchie Cobbs 			}
551e149c4e2SArchie Cobbs 			if (msg->header.cmd != NGM_PPP_GET_LINK_STATS)
5523949bee8SArchie Cobbs 				bzero(stats, sizeof(*stats));
5534cf49a43SJulian Elischer 			break;
5543949bee8SArchie Cobbs 		    }
5554cf49a43SJulian Elischer 		default:
5564cf49a43SJulian Elischer 			error = EINVAL;
5574cf49a43SJulian Elischer 			break;
5584cf49a43SJulian Elischer 		}
5594cf49a43SJulian Elischer 		break;
5603949bee8SArchie Cobbs 	case NGM_VJC_COOKIE:
5613949bee8SArchie Cobbs 	    {
562069154d5SJulian Elischer 		/*
563069154d5SJulian Elischer 		 * Forward it to the vjc node. leave the
564069154d5SJulian Elischer 		 * old return address alone.
56530400f03SJulian Elischer 		 * If we have no hook, let NG_RESPOND_MSG
56630400f03SJulian Elischer 		 * clean up any remaining resources.
56730400f03SJulian Elischer 		 * Because we have no resp, the item will be freed
56830400f03SJulian Elischer 		 * along with anything it references. Don't
56930400f03SJulian Elischer 		 * let msg be freed twice.
570069154d5SJulian Elischer 		 */
571069154d5SJulian Elischer 		NGI_MSG(item) = msg;	/* put it back in the item */
57230400f03SJulian Elischer 		msg = NULL;
57330400f03SJulian Elischer 		if ((lasthook = priv->links[HOOK_INDEX_VJC_IP].hook)) {
57430400f03SJulian Elischer 			NG_FWD_ITEM_HOOK(error, item, lasthook);
575069154d5SJulian Elischer 		}
576069154d5SJulian Elischer 		return (error);
5773949bee8SArchie Cobbs 	    }
5784cf49a43SJulian Elischer 	default:
5794cf49a43SJulian Elischer 		error = EINVAL;
5804cf49a43SJulian Elischer 		break;
5814cf49a43SJulian Elischer 	}
5824cf49a43SJulian Elischer done:
583069154d5SJulian Elischer 	NG_RESPOND_MSG(error, node, item, resp);
584069154d5SJulian Elischer 	NG_FREE_MSG(msg);
5854cf49a43SJulian Elischer 	return (error);
5864cf49a43SJulian Elischer }
5874cf49a43SJulian Elischer 
5884cf49a43SJulian Elischer /*
5894cf49a43SJulian Elischer  * Receive data on a hook
5904cf49a43SJulian Elischer  */
5914cf49a43SJulian Elischer static int
592069154d5SJulian Elischer ng_ppp_rcvdata(hook_p hook, item_p item)
5934cf49a43SJulian Elischer {
59430400f03SJulian Elischer 	const node_p node = NG_HOOK_NODE(hook);
59530400f03SJulian Elischer 	const priv_p priv = NG_NODE_PRIVATE(node);
59630400f03SJulian Elischer 	const int index = (int)NG_HOOK_PRIVATE(hook);
5973949bee8SArchie Cobbs 	u_int16_t linkNum = NG_PPP_BUNDLE_LINKNUM;
5983949bee8SArchie Cobbs 	hook_p outHook = NULL;
5993949bee8SArchie Cobbs 	int proto = 0, error;
600069154d5SJulian Elischer 	struct mbuf *m;
6014cf49a43SJulian Elischer 
602069154d5SJulian Elischer 	NGI_GET_M(item, m);
6033949bee8SArchie Cobbs 	/* Did it come from a link hook? */
6043949bee8SArchie Cobbs 	if (index < 0) {
605a9b3dca5SArchie Cobbs 		struct ng_ppp_link *link;
6064cf49a43SJulian Elischer 
607e149c4e2SArchie Cobbs 		/* Convert index into a link number */
6083949bee8SArchie Cobbs 		linkNum = (u_int16_t)~index;
6093949bee8SArchie Cobbs 		KASSERT(linkNum < NG_PPP_MAX_LINKS,
6106e551fb6SDavid E. O'Brien 		    ("%s: bogus index 0x%x", __func__, index));
611a9b3dca5SArchie Cobbs 		link = &priv->links[linkNum];
6123949bee8SArchie Cobbs 
6133949bee8SArchie Cobbs 		/* Stats */
614a9b3dca5SArchie Cobbs 		link->stats.recvFrames++;
615a9b3dca5SArchie Cobbs 		link->stats.recvOctets += m->m_pkthdr.len;
6163949bee8SArchie Cobbs 
617d690a6e7SArchie Cobbs 		/* Strip address and control fields, if present */
618d690a6e7SArchie Cobbs 		if (m->m_pkthdr.len >= 2) {
619d690a6e7SArchie Cobbs 			if (m->m_len < 2 && (m = m_pullup(m, 2)) == NULL) {
620069154d5SJulian Elischer 				NG_FREE_ITEM(item);
621d690a6e7SArchie Cobbs 				return (ENOBUFS);
622d690a6e7SArchie Cobbs 			}
623d690a6e7SArchie Cobbs 			if (bcmp(mtod(m, u_char *), &ng_ppp_acf, 2) == 0)
624d690a6e7SArchie Cobbs 				m_adj(m, 2);
625d690a6e7SArchie Cobbs 		}
626d690a6e7SArchie Cobbs 
627e149c4e2SArchie Cobbs 		/* Dispatch incoming frame (if not enabled, to bypass) */
628069154d5SJulian Elischer 		NGI_M(item) = m; 	/* put changed m back in item */
629e149c4e2SArchie Cobbs 		return ng_ppp_input(node,
630069154d5SJulian Elischer 		    !link->conf.enableLink, linkNum, item);
6313949bee8SArchie Cobbs 	}
6323949bee8SArchie Cobbs 
6333949bee8SArchie Cobbs 	/* Get protocol & check if data allowed from this hook */
634069154d5SJulian Elischer 	NGI_M(item) = m; 	/* put possibly changed m back in item */
6353949bee8SArchie Cobbs 	switch (index) {
6363949bee8SArchie Cobbs 
637e149c4e2SArchie Cobbs 	/* Outgoing data */
6383949bee8SArchie Cobbs 	case HOOK_INDEX_ATALK:
6393949bee8SArchie Cobbs 		if (!priv->conf.enableAtalk) {
640069154d5SJulian Elischer 			NG_FREE_ITEM(item);
6413949bee8SArchie Cobbs 			return (ENXIO);
6423949bee8SArchie Cobbs 		}
6433949bee8SArchie Cobbs 		proto = PROT_APPLETALK;
6443949bee8SArchie Cobbs 		break;
6453949bee8SArchie Cobbs 	case HOOK_INDEX_IPX:
6463949bee8SArchie Cobbs 		if (!priv->conf.enableIPX) {
647069154d5SJulian Elischer 			NG_FREE_ITEM(item);
6483949bee8SArchie Cobbs 			return (ENXIO);
6493949bee8SArchie Cobbs 		}
6503949bee8SArchie Cobbs 		proto = PROT_IPX;
6513949bee8SArchie Cobbs 		break;
652a9b3dca5SArchie Cobbs 	case HOOK_INDEX_IPV6:
653a9b3dca5SArchie Cobbs 		if (!priv->conf.enableIPv6) {
654069154d5SJulian Elischer 			NG_FREE_ITEM(item);
655a9b3dca5SArchie Cobbs 			return (ENXIO);
656a9b3dca5SArchie Cobbs 		}
657a9b3dca5SArchie Cobbs 		proto = PROT_IPV6;
658a9b3dca5SArchie Cobbs 		break;
6593949bee8SArchie Cobbs 	case HOOK_INDEX_INET:
6603949bee8SArchie Cobbs 	case HOOK_INDEX_VJC_VJIP:
6613949bee8SArchie Cobbs 		if (!priv->conf.enableIP) {
662069154d5SJulian Elischer 			NG_FREE_ITEM(item);
6633949bee8SArchie Cobbs 			return (ENXIO);
6643949bee8SArchie Cobbs 		}
6653949bee8SArchie Cobbs 		proto = PROT_IP;
6663949bee8SArchie Cobbs 		break;
6673949bee8SArchie Cobbs 	case HOOK_INDEX_VJC_COMP:
6683949bee8SArchie Cobbs 		if (!priv->conf.enableVJCompression) {
669069154d5SJulian Elischer 			NG_FREE_ITEM(item);
6703949bee8SArchie Cobbs 			return (ENXIO);
6713949bee8SArchie Cobbs 		}
6723949bee8SArchie Cobbs 		proto = PROT_VJCOMP;
6733949bee8SArchie Cobbs 		break;
6743949bee8SArchie Cobbs 	case HOOK_INDEX_VJC_UNCOMP:
6753949bee8SArchie Cobbs 		if (!priv->conf.enableVJCompression) {
676069154d5SJulian Elischer 			NG_FREE_ITEM(item);
6773949bee8SArchie Cobbs 			return (ENXIO);
6783949bee8SArchie Cobbs 		}
6793949bee8SArchie Cobbs 		proto = PROT_VJUNCOMP;
6803949bee8SArchie Cobbs 		break;
6813949bee8SArchie Cobbs 	case HOOK_INDEX_COMPRESS:
6823949bee8SArchie Cobbs 		if (!priv->conf.enableCompression) {
683069154d5SJulian Elischer 			NG_FREE_ITEM(item);
6843949bee8SArchie Cobbs 			return (ENXIO);
6853949bee8SArchie Cobbs 		}
6863949bee8SArchie Cobbs 		proto = PROT_COMPD;
6873949bee8SArchie Cobbs 		break;
6883949bee8SArchie Cobbs 	case HOOK_INDEX_ENCRYPT:
6893949bee8SArchie Cobbs 		if (!priv->conf.enableEncryption) {
690069154d5SJulian Elischer 			NG_FREE_ITEM(item);
6913949bee8SArchie Cobbs 			return (ENXIO);
6923949bee8SArchie Cobbs 		}
6933949bee8SArchie Cobbs 		proto = PROT_CRYPTD;
6943949bee8SArchie Cobbs 		break;
6953949bee8SArchie Cobbs 	case HOOK_INDEX_BYPASS:
6963949bee8SArchie Cobbs 		if (m->m_pkthdr.len < 4) {
697069154d5SJulian Elischer 			NG_FREE_ITEM(item);
6983949bee8SArchie Cobbs 			return (EINVAL);
6993949bee8SArchie Cobbs 		}
7003949bee8SArchie Cobbs 		if (m->m_len < 4 && (m = m_pullup(m, 4)) == NULL) {
701069154d5SJulian Elischer 			NGI_M(item) = NULL; /* don't free twice */
702069154d5SJulian Elischer 			NG_FREE_ITEM(item);
7033949bee8SArchie Cobbs 			return (ENOBUFS);
7043949bee8SArchie Cobbs 		}
705069154d5SJulian Elischer 		NGI_M(item) = m; /* m may have changed */
7063949bee8SArchie Cobbs 		linkNum = ntohs(mtod(m, u_int16_t *)[0]);
7073949bee8SArchie Cobbs 		proto = ntohs(mtod(m, u_int16_t *)[1]);
7083949bee8SArchie Cobbs 		m_adj(m, 4);
7093949bee8SArchie Cobbs 		if (linkNum >= NG_PPP_MAX_LINKS
7104c641908SArchie Cobbs 		    && linkNum != NG_PPP_BUNDLE_LINKNUM) {
711069154d5SJulian Elischer 			NG_FREE_ITEM(item);
7123949bee8SArchie Cobbs 			return (EINVAL);
7134c641908SArchie Cobbs 		}
7143949bee8SArchie Cobbs 		break;
7153949bee8SArchie Cobbs 
716e149c4e2SArchie Cobbs 	/* Incoming data */
7173949bee8SArchie Cobbs 	case HOOK_INDEX_VJC_IP:
718e149c4e2SArchie Cobbs 		if (!priv->conf.enableIP || !priv->conf.enableVJDecompression) {
719069154d5SJulian Elischer 			NG_FREE_ITEM(item);
7203949bee8SArchie Cobbs 			return (ENXIO);
7213949bee8SArchie Cobbs 		}
7223949bee8SArchie Cobbs 		break;
7233949bee8SArchie Cobbs 	case HOOK_INDEX_DECOMPRESS:
7243949bee8SArchie Cobbs 		if (!priv->conf.enableDecompression) {
725069154d5SJulian Elischer 			NG_FREE_ITEM(item);
7263949bee8SArchie Cobbs 			return (ENXIO);
7273949bee8SArchie Cobbs 		}
7283949bee8SArchie Cobbs 		break;
7293949bee8SArchie Cobbs 	case HOOK_INDEX_DECRYPT:
7303949bee8SArchie Cobbs 		if (!priv->conf.enableDecryption) {
731069154d5SJulian Elischer 			NG_FREE_ITEM(item);
7323949bee8SArchie Cobbs 			return (ENXIO);
7333949bee8SArchie Cobbs 		}
7343949bee8SArchie Cobbs 		break;
7353949bee8SArchie Cobbs 	default:
7366e551fb6SDavid E. O'Brien 		panic("%s: bogus index 0x%x", __func__, index);
7373949bee8SArchie Cobbs 	}
7383949bee8SArchie Cobbs 
7393949bee8SArchie Cobbs 	/* Now figure out what to do with the frame */
7403949bee8SArchie Cobbs 	switch (index) {
741e149c4e2SArchie Cobbs 
742e149c4e2SArchie Cobbs 	/* Outgoing data */
7433949bee8SArchie Cobbs 	case HOOK_INDEX_INET:
7443949bee8SArchie Cobbs 		if (priv->conf.enableVJCompression && priv->vjCompHooked) {
7453949bee8SArchie Cobbs 			outHook = priv->hooks[HOOK_INDEX_VJC_IP];
7463949bee8SArchie Cobbs 			break;
7473949bee8SArchie Cobbs 		}
7483949bee8SArchie Cobbs 		/* FALLTHROUGH */
7493949bee8SArchie Cobbs 	case HOOK_INDEX_ATALK:
750a9b3dca5SArchie Cobbs 	case HOOK_INDEX_IPV6:
7513949bee8SArchie Cobbs 	case HOOK_INDEX_IPX:
7523949bee8SArchie Cobbs 	case HOOK_INDEX_VJC_COMP:
7533949bee8SArchie Cobbs 	case HOOK_INDEX_VJC_UNCOMP:
7543949bee8SArchie Cobbs 	case HOOK_INDEX_VJC_VJIP:
7553949bee8SArchie Cobbs 		if (priv->conf.enableCompression
7563949bee8SArchie Cobbs 		    && priv->hooks[HOOK_INDEX_COMPRESS] != NULL) {
7573949bee8SArchie Cobbs 			if ((m = ng_ppp_addproto(m, proto, 1)) == NULL) {
758069154d5SJulian Elischer 				NGI_M(item) = NULL;
759069154d5SJulian Elischer 				NG_FREE_ITEM(item);
7603949bee8SArchie Cobbs 				return (ENOBUFS);
7613949bee8SArchie Cobbs 			}
762069154d5SJulian Elischer 			NGI_M(item) = m; /* m may have changed */
7633949bee8SArchie Cobbs 			outHook = priv->hooks[HOOK_INDEX_COMPRESS];
7643949bee8SArchie Cobbs 			break;
7653949bee8SArchie Cobbs 		}
7663949bee8SArchie Cobbs 		/* FALLTHROUGH */
7673949bee8SArchie Cobbs 	case HOOK_INDEX_COMPRESS:
7683949bee8SArchie Cobbs 		if (priv->conf.enableEncryption
7693949bee8SArchie Cobbs 		    && priv->hooks[HOOK_INDEX_ENCRYPT] != NULL) {
7703949bee8SArchie Cobbs 			if ((m = ng_ppp_addproto(m, proto, 1)) == NULL) {
771069154d5SJulian Elischer 				NGI_M(item) = NULL;
772069154d5SJulian Elischer 				NG_FREE_ITEM(item);
7733949bee8SArchie Cobbs 				return (ENOBUFS);
7743949bee8SArchie Cobbs 			}
775069154d5SJulian Elischer 			NGI_M(item) = m; /* m may have changed */
7763949bee8SArchie Cobbs 			outHook = priv->hooks[HOOK_INDEX_ENCRYPT];
7773949bee8SArchie Cobbs 			break;
7783949bee8SArchie Cobbs 		}
7793949bee8SArchie Cobbs 		/* FALLTHROUGH */
7803949bee8SArchie Cobbs 	case HOOK_INDEX_ENCRYPT:
781069154d5SJulian Elischer 		return ng_ppp_output(node, 0, proto, NG_PPP_BUNDLE_LINKNUM, item);
7823949bee8SArchie Cobbs 
7830e11d0f3SArchie Cobbs 	case HOOK_INDEX_BYPASS:
784069154d5SJulian Elischer 		return ng_ppp_output(node, 1, proto, linkNum, item);
7850e11d0f3SArchie Cobbs 
7863949bee8SArchie Cobbs 	/* Incoming data */
7873949bee8SArchie Cobbs 	case HOOK_INDEX_DECRYPT:
7883949bee8SArchie Cobbs 	case HOOK_INDEX_DECOMPRESS:
789069154d5SJulian Elischer 		return ng_ppp_input(node, 0, NG_PPP_BUNDLE_LINKNUM, item);
790e149c4e2SArchie Cobbs 
7913949bee8SArchie Cobbs 	case HOOK_INDEX_VJC_IP:
792e149c4e2SArchie Cobbs 		outHook = priv->hooks[HOOK_INDEX_INET];
793e149c4e2SArchie Cobbs 		break;
7943949bee8SArchie Cobbs 	}
7953949bee8SArchie Cobbs 
7963949bee8SArchie Cobbs 	/* Send packet out hook */
79730400f03SJulian Elischer 	NG_FWD_ITEM_HOOK(error, item, outHook);
7984cf49a43SJulian Elischer 	return (error);
7994cf49a43SJulian Elischer }
8004cf49a43SJulian Elischer 
8014cf49a43SJulian Elischer /*
8024cf49a43SJulian Elischer  * Destroy node
8034cf49a43SJulian Elischer  */
8044cf49a43SJulian Elischer static int
805069154d5SJulian Elischer ng_ppp_shutdown(node_p node)
8064cf49a43SJulian Elischer {
80730400f03SJulian Elischer 	const priv_p priv = NG_NODE_PRIVATE(node);
8084cf49a43SJulian Elischer 
809a9b3dca5SArchie Cobbs 	/* Stop fragment queue timer */
810a9b3dca5SArchie Cobbs 	ng_ppp_stop_frag_timer(node);
811a9b3dca5SArchie Cobbs 
8124cf49a43SJulian Elischer 	/* Take down netgraph node */
813a9b3dca5SArchie Cobbs 	ng_ppp_frag_reset(node);
8144cf49a43SJulian Elischer 	bzero(priv, sizeof(*priv));
8159c8c302fSJulian Elischer 	FREE(priv, M_NETGRAPH_PPP);
81630400f03SJulian Elischer 	NG_NODE_SET_PRIVATE(node, NULL);
81730400f03SJulian Elischer 	NG_NODE_UNREF(node);		/* let the node escape */
8184cf49a43SJulian Elischer 	return (0);
8194cf49a43SJulian Elischer }
8204cf49a43SJulian Elischer 
8214cf49a43SJulian Elischer /*
8224cf49a43SJulian Elischer  * Hook disconnection
8234cf49a43SJulian Elischer  */
8244cf49a43SJulian Elischer static int
8254cf49a43SJulian Elischer ng_ppp_disconnect(hook_p hook)
8264cf49a43SJulian Elischer {
82730400f03SJulian Elischer 	const node_p node = NG_HOOK_NODE(hook);
82830400f03SJulian Elischer 	const priv_p priv = NG_NODE_PRIVATE(node);
82930400f03SJulian Elischer 	const int index = (int)NG_HOOK_PRIVATE(hook);
83062838faeSArchie Cobbs 
83162838faeSArchie Cobbs 	/* Zero out hook pointer */
83262838faeSArchie Cobbs 	if (index < 0)
833a9b3dca5SArchie Cobbs 		priv->links[~index].hook = NULL;
83462838faeSArchie Cobbs 	else
83562838faeSArchie Cobbs 		priv->hooks[index] = NULL;
83662838faeSArchie Cobbs 
83762838faeSArchie Cobbs 	/* Update derived info (or go away if no hooks left) */
83830400f03SJulian Elischer 	if (NG_NODE_NUMHOOKS(node) > 0) {
83962838faeSArchie Cobbs 		ng_ppp_update(node, 0);
840069154d5SJulian Elischer 	} else {
84130400f03SJulian Elischer 		if (NG_NODE_IS_VALID(node)) {
842069154d5SJulian Elischer 			ng_rmnode_self(node);
843069154d5SJulian Elischer 		}
844069154d5SJulian Elischer 	}
8454cf49a43SJulian Elischer 	return (0);
8464cf49a43SJulian Elischer }
8474cf49a43SJulian Elischer 
8484cf49a43SJulian Elischer /************************************************************************
8494cf49a43SJulian Elischer 			HELPER STUFF
8504cf49a43SJulian Elischer  ************************************************************************/
8514cf49a43SJulian Elischer 
8524cf49a43SJulian Elischer /*
8533949bee8SArchie Cobbs  * Handle an incoming frame.  Extract the PPP protocol number
8543949bee8SArchie Cobbs  * and dispatch accordingly.
8554cf49a43SJulian Elischer  */
8564cf49a43SJulian Elischer static int
857069154d5SJulian Elischer ng_ppp_input(node_p node, int bypass, int linkNum, item_p item)
8584cf49a43SJulian Elischer {
85930400f03SJulian Elischer 	const priv_p priv = NG_NODE_PRIVATE(node);
8603949bee8SArchie Cobbs 	hook_p outHook = NULL;
8613949bee8SArchie Cobbs 	int proto, error;
862069154d5SJulian Elischer 	struct mbuf *m;
8634cf49a43SJulian Elischer 
864069154d5SJulian Elischer 
865069154d5SJulian Elischer 	NGI_GET_M(item, m);
8663949bee8SArchie Cobbs 	/* Extract protocol number */
8673949bee8SArchie Cobbs 	for (proto = 0; !PROT_VALID(proto) && m->m_pkthdr.len > 0; ) {
8683949bee8SArchie Cobbs 		if (m->m_len < 1 && (m = m_pullup(m, 1)) == NULL) {
869069154d5SJulian Elischer 			NG_FREE_ITEM(item);
8703949bee8SArchie Cobbs 			return (ENOBUFS);
8714cf49a43SJulian Elischer 		}
8723949bee8SArchie Cobbs 		proto = (proto << 8) + *mtod(m, u_char *);
8733949bee8SArchie Cobbs 		m_adj(m, 1);
8743949bee8SArchie Cobbs 	}
8753949bee8SArchie Cobbs 	if (!PROT_VALID(proto)) {
8763949bee8SArchie Cobbs 		if (linkNum == NG_PPP_BUNDLE_LINKNUM)
8773949bee8SArchie Cobbs 			priv->bundleStats.badProtos++;
8783949bee8SArchie Cobbs 		else
879a9b3dca5SArchie Cobbs 			priv->links[linkNum].stats.badProtos++;
880069154d5SJulian Elischer 		NG_FREE_ITEM(item);
881069154d5SJulian Elischer 		NG_FREE_M(m);
8823949bee8SArchie Cobbs 		return (EINVAL);
8833949bee8SArchie Cobbs 	}
8843949bee8SArchie Cobbs 
885e149c4e2SArchie Cobbs 	/* Bypass frame? */
886e149c4e2SArchie Cobbs 	if (bypass)
887e149c4e2SArchie Cobbs 		goto bypass;
888e149c4e2SArchie Cobbs 
8893949bee8SArchie Cobbs 	/* Check protocol */
8903949bee8SArchie Cobbs 	switch (proto) {
8913949bee8SArchie Cobbs 	case PROT_COMPD:
8923949bee8SArchie Cobbs 		if (priv->conf.enableDecompression)
8933949bee8SArchie Cobbs 			outHook = priv->hooks[HOOK_INDEX_DECOMPRESS];
8943949bee8SArchie Cobbs 		break;
8953949bee8SArchie Cobbs 	case PROT_CRYPTD:
8963949bee8SArchie Cobbs 		if (priv->conf.enableDecryption)
8973949bee8SArchie Cobbs 			outHook = priv->hooks[HOOK_INDEX_DECRYPT];
8983949bee8SArchie Cobbs 		break;
8993949bee8SArchie Cobbs 	case PROT_VJCOMP:
9003949bee8SArchie Cobbs 		if (priv->conf.enableVJDecompression && priv->vjCompHooked)
9013949bee8SArchie Cobbs 			outHook = priv->hooks[HOOK_INDEX_VJC_COMP];
9023949bee8SArchie Cobbs 		break;
9033949bee8SArchie Cobbs 	case PROT_VJUNCOMP:
9043949bee8SArchie Cobbs 		if (priv->conf.enableVJDecompression && priv->vjCompHooked)
9053949bee8SArchie Cobbs 			outHook = priv->hooks[HOOK_INDEX_VJC_UNCOMP];
9063949bee8SArchie Cobbs 		break;
9073949bee8SArchie Cobbs 	case PROT_MP:
908a9b3dca5SArchie Cobbs 		if (priv->conf.enableMultilink
909a9b3dca5SArchie Cobbs 		    && linkNum != NG_PPP_BUNDLE_LINKNUM)
910069154d5SJulian Elischer 			return ng_ppp_mp_input(node, linkNum, item);
9113949bee8SArchie Cobbs 		break;
9123949bee8SArchie Cobbs 	case PROT_APPLETALK:
9133949bee8SArchie Cobbs 		if (priv->conf.enableAtalk)
9143949bee8SArchie Cobbs 			outHook = priv->hooks[HOOK_INDEX_ATALK];
9153949bee8SArchie Cobbs 		break;
9163949bee8SArchie Cobbs 	case PROT_IPX:
9173949bee8SArchie Cobbs 		if (priv->conf.enableIPX)
9183949bee8SArchie Cobbs 			outHook = priv->hooks[HOOK_INDEX_IPX];
9193949bee8SArchie Cobbs 		break;
9203949bee8SArchie Cobbs 	case PROT_IP:
9213949bee8SArchie Cobbs 		if (priv->conf.enableIP)
9223949bee8SArchie Cobbs 			outHook = priv->hooks[HOOK_INDEX_INET];
9233949bee8SArchie Cobbs 		break;
924a9b3dca5SArchie Cobbs 	case PROT_IPV6:
925a9b3dca5SArchie Cobbs 		if (priv->conf.enableIPv6)
926a9b3dca5SArchie Cobbs 			outHook = priv->hooks[HOOK_INDEX_IPV6];
927a9b3dca5SArchie Cobbs 		break;
9283949bee8SArchie Cobbs 	}
9293949bee8SArchie Cobbs 
930e149c4e2SArchie Cobbs bypass:
9314c641908SArchie Cobbs 	/* For unknown/inactive protocols, forward out the bypass hook */
9323949bee8SArchie Cobbs 	if (outHook == NULL) {
933d690a6e7SArchie Cobbs 		u_int16_t hdr[2];
934d690a6e7SArchie Cobbs 
935d690a6e7SArchie Cobbs 		hdr[0] = htons(linkNum);
936d690a6e7SArchie Cobbs 		hdr[1] = htons((u_int16_t)proto);
9374c641908SArchie Cobbs 		if ((m = ng_ppp_prepend(m, &hdr, 4)) == NULL) {
938069154d5SJulian Elischer 			NG_FREE_ITEM(item);
9393949bee8SArchie Cobbs 			return (ENOBUFS);
9404c641908SArchie Cobbs 		}
9413949bee8SArchie Cobbs 		outHook = priv->hooks[HOOK_INDEX_BYPASS];
9423949bee8SArchie Cobbs 	}
9433949bee8SArchie Cobbs 
9443949bee8SArchie Cobbs 	/* Forward frame */
945069154d5SJulian Elischer 	NG_FWD_NEW_DATA(error, item, outHook, m);
9463949bee8SArchie Cobbs 	return (error);
9474cf49a43SJulian Elischer }
9484cf49a43SJulian Elischer 
9494cf49a43SJulian Elischer /*
950931c828aSArchie Cobbs  * Deliver a frame out a link, either a real one or NG_PPP_BUNDLE_LINKNUM.
9510e11d0f3SArchie Cobbs  * If the link is not enabled then ENXIO is returned, unless "bypass" is != 0.
952931c828aSArchie Cobbs  *
953931c828aSArchie Cobbs  * If the frame is too big for the particular link, return EMSGSIZE.
9544cf49a43SJulian Elischer  */
9553949bee8SArchie Cobbs static int
956d690a6e7SArchie Cobbs ng_ppp_output(node_p node, int bypass,
957069154d5SJulian Elischer 	int proto, int linkNum, item_p item)
9584cf49a43SJulian Elischer {
95930400f03SJulian Elischer 	const priv_p priv = NG_NODE_PRIVATE(node);
960a9b3dca5SArchie Cobbs 	struct ng_ppp_link *link;
961e149c4e2SArchie Cobbs 	int len, error;
962069154d5SJulian Elischer 	struct mbuf *m;
963931c828aSArchie Cobbs 	u_int16_t mru;
9644cf49a43SJulian Elischer 
965931c828aSArchie Cobbs 	/* Extract mbuf */
966931c828aSArchie Cobbs 	NGI_GET_M(item, m);
967931c828aSArchie Cobbs 
968d690a6e7SArchie Cobbs 	/* If not doing MP, map bundle virtual link to (the only) link */
969d690a6e7SArchie Cobbs 	if (linkNum == NG_PPP_BUNDLE_LINKNUM && !priv->conf.enableMultilink)
9703949bee8SArchie Cobbs 		linkNum = priv->activeLinks[0];
9713949bee8SArchie Cobbs 
972a9b3dca5SArchie Cobbs 	/* Get link pointer (optimization) */
973a9b3dca5SArchie Cobbs 	link = (linkNum != NG_PPP_BUNDLE_LINKNUM) ?
974a9b3dca5SArchie Cobbs 	    &priv->links[linkNum] : NULL;
975a9b3dca5SArchie Cobbs 
976d690a6e7SArchie Cobbs 	/* Check link status (if real) */
9770e11d0f3SArchie Cobbs 	if (linkNum != NG_PPP_BUNDLE_LINKNUM) {
978a9b3dca5SArchie Cobbs 		if (!bypass && !link->conf.enableLink) {
979069154d5SJulian Elischer 			NG_FREE_M(m);
980069154d5SJulian Elischer 			NG_FREE_ITEM(item);
9813949bee8SArchie Cobbs 			return (ENXIO);
9824c641908SArchie Cobbs 		}
983a9b3dca5SArchie Cobbs 		if (link->hook == NULL) {
984069154d5SJulian Elischer 			NG_FREE_M(m);
985069154d5SJulian Elischer 			NG_FREE_ITEM(item);
9863949bee8SArchie Cobbs 			return (ENETDOWN);
9873949bee8SArchie Cobbs 		}
9880e11d0f3SArchie Cobbs 	}
9893949bee8SArchie Cobbs 
990931c828aSArchie Cobbs 	/* Check peer's MRU for this link */
991931c828aSArchie Cobbs 	mru = (link != NULL) ? link->conf.mru : priv->conf.mrru;
992931c828aSArchie Cobbs 	if (mru != 0 && m->m_pkthdr.len > mru) {
993931c828aSArchie Cobbs 		NG_FREE_M(m);
994931c828aSArchie Cobbs 		NG_FREE_ITEM(item);
995931c828aSArchie Cobbs 		return (EMSGSIZE);
996931c828aSArchie Cobbs 	}
997931c828aSArchie Cobbs 
998d690a6e7SArchie Cobbs 	/* Prepend protocol number, possibly compressed */
999d690a6e7SArchie Cobbs 	if ((m = ng_ppp_addproto(m, proto,
1000d690a6e7SArchie Cobbs 	    linkNum == NG_PPP_BUNDLE_LINKNUM
1001a9b3dca5SArchie Cobbs 	      || link->conf.enableProtoComp)) == NULL) {
1002069154d5SJulian Elischer 		NG_FREE_ITEM(item);
1003d690a6e7SArchie Cobbs 		return (ENOBUFS);
1004d690a6e7SArchie Cobbs 	}
1005d690a6e7SArchie Cobbs 
1006d690a6e7SArchie Cobbs 	/* Special handling for the MP virtual link */
1007069154d5SJulian Elischer 	if (linkNum == NG_PPP_BUNDLE_LINKNUM) {
1008069154d5SJulian Elischer 		meta_p meta;
1009069154d5SJulian Elischer 
1010069154d5SJulian Elischer 		/* strip off and discard the queue item */
1011069154d5SJulian Elischer 		NGI_GET_META(item, meta);
1012069154d5SJulian Elischer 		NG_FREE_ITEM(item);
1013d690a6e7SArchie Cobbs 		return ng_ppp_mp_output(node, m, meta);
1014069154d5SJulian Elischer 	}
1015d690a6e7SArchie Cobbs 
1016d690a6e7SArchie Cobbs 	/* Prepend address and control field (unless compressed) */
1017a9b3dca5SArchie Cobbs 	if (proto == PROT_LCP || !link->conf.enableACFComp) {
1018d690a6e7SArchie Cobbs 		if ((m = ng_ppp_prepend(m, &ng_ppp_acf, 2)) == NULL) {
1019069154d5SJulian Elischer 			NG_FREE_ITEM(item);
1020d690a6e7SArchie Cobbs 			return (ENOBUFS);
1021d690a6e7SArchie Cobbs 		}
1022d690a6e7SArchie Cobbs 	}
1023d690a6e7SArchie Cobbs 
10243949bee8SArchie Cobbs 	/* Deliver frame */
1025e149c4e2SArchie Cobbs 	len = m->m_pkthdr.len;
1026069154d5SJulian Elischer 	NG_FWD_NEW_DATA(error, item,  link->hook, m);
1027fb1fc8abSArchie Cobbs 
1028fb1fc8abSArchie Cobbs 	/* Update stats and 'bytes in queue' counter */
1029fb1fc8abSArchie Cobbs 	if (error == 0) {
1030a9b3dca5SArchie Cobbs 		link->stats.xmitFrames++;
1031a9b3dca5SArchie Cobbs 		link->stats.xmitOctets += len;
1032a9b3dca5SArchie Cobbs 		link->bytesInQueue += len;
1033a9b3dca5SArchie Cobbs 		getmicrouptime(&link->lastWrite);
1034fb1fc8abSArchie Cobbs 	}
10353949bee8SArchie Cobbs 	return error;
10363949bee8SArchie Cobbs }
10373949bee8SArchie Cobbs 
10383949bee8SArchie Cobbs /*
10393949bee8SArchie Cobbs  * Handle an incoming multi-link fragment
1040a9b3dca5SArchie Cobbs  *
1041a9b3dca5SArchie Cobbs  * The fragment reassembly algorithm is somewhat complex. This is mainly
1042a9b3dca5SArchie Cobbs  * because we are required not to reorder the reconstructed packets, yet
1043a9b3dca5SArchie Cobbs  * fragments are only guaranteed to arrive in order on a per-link basis.
1044a9b3dca5SArchie Cobbs  * In other words, when we have a complete packet ready, but the previous
1045a9b3dca5SArchie Cobbs  * packet is still incomplete, we have to decide between delivering the
1046a9b3dca5SArchie Cobbs  * complete packet and throwing away the incomplete one, or waiting to
1047a9b3dca5SArchie Cobbs  * see if the remainder of the incomplete one arrives, at which time we
1048a9b3dca5SArchie Cobbs  * can deliver both packets, in order.
1049a9b3dca5SArchie Cobbs  *
1050a9b3dca5SArchie Cobbs  * This problem is exacerbated by "sequence number slew", which is when
1051a9b3dca5SArchie Cobbs  * the sequence numbers coming in from different links are far apart from
1052a9b3dca5SArchie Cobbs  * each other. In particular, certain unnamed equipment (*cough* Ascend)
1053a9b3dca5SArchie Cobbs  * has been seen to generate sequence number slew of up to 10 on an ISDN
1054a9b3dca5SArchie Cobbs  * 2B-channel MP link. There is nothing invalid about sequence number slew
1055a9b3dca5SArchie Cobbs  * but it makes the reasssembly process have to work harder.
1056a9b3dca5SArchie Cobbs  *
1057a9b3dca5SArchie Cobbs  * However, the peer is required to transmit fragments in order on each
1058a9b3dca5SArchie Cobbs  * link. That means if we define MSEQ as the minimum over all links of
1059a9b3dca5SArchie Cobbs  * the highest sequence number received on that link, then we can always
1060a9b3dca5SArchie Cobbs  * give up any hope of receiving a fragment with sequence number < MSEQ in
1061a9b3dca5SArchie Cobbs  * the future (all of this using 'wraparound' sequence number space).
1062a9b3dca5SArchie Cobbs  * Therefore we can always immediately throw away incomplete packets
1063a9b3dca5SArchie Cobbs  * missing fragments with sequence numbers < MSEQ.
1064a9b3dca5SArchie Cobbs  *
1065a9b3dca5SArchie Cobbs  * Here is an overview of our algorithm:
1066a9b3dca5SArchie Cobbs  *
1067a9b3dca5SArchie Cobbs  *    o Received fragments are inserted into a queue, for which we
1068a9b3dca5SArchie Cobbs  *	maintain these invariants between calls to this function:
1069a9b3dca5SArchie Cobbs  *
1070a9b3dca5SArchie Cobbs  *	- Fragments are ordered in the queue by sequence number
1071a9b3dca5SArchie Cobbs  *	- If a complete packet is at the head of the queue, then
1072a9b3dca5SArchie Cobbs  *	  the first fragment in the packet has seq# > MSEQ + 1
1073a9b3dca5SArchie Cobbs  *	  (otherwise, we could deliver it immediately)
1074a9b3dca5SArchie Cobbs  *	- If any fragments have seq# < MSEQ, then they are necessarily
1075a9b3dca5SArchie Cobbs  *	  part of a packet whose missing seq#'s are all > MSEQ (otherwise,
1076a9b3dca5SArchie Cobbs  *	  we can throw them away because they'll never be completed)
1077a9b3dca5SArchie Cobbs  *	- The queue contains at most MP_MAX_QUEUE_LEN fragments
1078a9b3dca5SArchie Cobbs  *
1079a9b3dca5SArchie Cobbs  *    o We have a periodic timer that checks the queue for the first
1080a9b3dca5SArchie Cobbs  *	complete packet that has been sitting in the queue "too long".
1081a9b3dca5SArchie Cobbs  *	When one is detected, all previous (incomplete) fragments are
1082a9b3dca5SArchie Cobbs  *	discarded, their missing fragments are declared lost and MSEQ
1083a9b3dca5SArchie Cobbs  *	is increased.
1084a9b3dca5SArchie Cobbs  *
1085a9b3dca5SArchie Cobbs  *    o If we recieve a fragment with seq# < MSEQ, we throw it away
1086a9b3dca5SArchie Cobbs  *	because we've already delcared it lost.
1087a9b3dca5SArchie Cobbs  *
1088a9b3dca5SArchie Cobbs  * This assumes linkNum != NG_PPP_BUNDLE_LINKNUM.
10893949bee8SArchie Cobbs  */
10903949bee8SArchie Cobbs static int
1091069154d5SJulian Elischer ng_ppp_mp_input(node_p node, int linkNum, item_p item)
10923949bee8SArchie Cobbs {
109330400f03SJulian Elischer 	const priv_p priv = NG_NODE_PRIVATE(node);
1094a9b3dca5SArchie Cobbs 	struct ng_ppp_link *const link = &priv->links[linkNum];
10953949bee8SArchie Cobbs 	struct ng_ppp_frag frag0, *frag = &frag0;
1096a9b3dca5SArchie Cobbs 	struct ng_ppp_frag *qent;
1097a9b3dca5SArchie Cobbs 	int i, diff, inserted;
1098069154d5SJulian Elischer 	struct mbuf *m;
1099069154d5SJulian Elischer 	meta_p meta;
11003949bee8SArchie Cobbs 
1101069154d5SJulian Elischer 	NGI_GET_M(item, m);
1102069154d5SJulian Elischer 	NGI_GET_META(item, meta);
1103069154d5SJulian Elischer 	NG_FREE_ITEM(item);
1104b4c44c30SArchie Cobbs 	/* Stats */
1105b4c44c30SArchie Cobbs 	priv->bundleStats.recvFrames++;
1106b4c44c30SArchie Cobbs 	priv->bundleStats.recvOctets += m->m_pkthdr.len;
1107b4c44c30SArchie Cobbs 
11083949bee8SArchie Cobbs 	/* Extract fragment information from MP header */
11093949bee8SArchie Cobbs 	if (priv->conf.recvShortSeq) {
11103949bee8SArchie Cobbs 		u_int16_t shdr;
11113949bee8SArchie Cobbs 
11123949bee8SArchie Cobbs 		if (m->m_pkthdr.len < 2) {
1113a9b3dca5SArchie Cobbs 			link->stats.runts++;
1114069154d5SJulian Elischer 			NG_FREE_M(m);
1115069154d5SJulian Elischer 			NG_FREE_META(meta);
11163949bee8SArchie Cobbs 			return (EINVAL);
11173949bee8SArchie Cobbs 		}
11183949bee8SArchie Cobbs 		if (m->m_len < 2 && (m = m_pullup(m, 2)) == NULL) {
11193949bee8SArchie Cobbs 			NG_FREE_META(meta);
11203949bee8SArchie Cobbs 			return (ENOBUFS);
11213949bee8SArchie Cobbs 		}
11223949bee8SArchie Cobbs 		shdr = ntohs(*mtod(m, u_int16_t *));
11236f16db81SArchie Cobbs 		frag->seq = MP_SHORT_EXTEND(shdr);
11243949bee8SArchie Cobbs 		frag->first = (shdr & MP_SHORT_FIRST_FLAG) != 0;
11253949bee8SArchie Cobbs 		frag->last = (shdr & MP_SHORT_LAST_FLAG) != 0;
1126a9b3dca5SArchie Cobbs 		diff = MP_SHORT_SEQ_DIFF(frag->seq, priv->mseq);
11273949bee8SArchie Cobbs 		m_adj(m, 2);
11283949bee8SArchie Cobbs 	} else {
11293949bee8SArchie Cobbs 		u_int32_t lhdr;
11303949bee8SArchie Cobbs 
11313949bee8SArchie Cobbs 		if (m->m_pkthdr.len < 4) {
1132a9b3dca5SArchie Cobbs 			link->stats.runts++;
1133069154d5SJulian Elischer 			NG_FREE_M(m);
1134069154d5SJulian Elischer 			NG_FREE_META(meta);
11353949bee8SArchie Cobbs 			return (EINVAL);
11363949bee8SArchie Cobbs 		}
11373949bee8SArchie Cobbs 		if (m->m_len < 4 && (m = m_pullup(m, 4)) == NULL) {
11383949bee8SArchie Cobbs 			NG_FREE_META(meta);
11393949bee8SArchie Cobbs 			return (ENOBUFS);
11403949bee8SArchie Cobbs 		}
11413949bee8SArchie Cobbs 		lhdr = ntohl(*mtod(m, u_int32_t *));
11426f16db81SArchie Cobbs 		frag->seq = MP_LONG_EXTEND(lhdr);
11433949bee8SArchie Cobbs 		frag->first = (lhdr & MP_LONG_FIRST_FLAG) != 0;
11443949bee8SArchie Cobbs 		frag->last = (lhdr & MP_LONG_LAST_FLAG) != 0;
1145a9b3dca5SArchie Cobbs 		diff = MP_LONG_SEQ_DIFF(frag->seq, priv->mseq);
11463949bee8SArchie Cobbs 		m_adj(m, 4);
11473949bee8SArchie Cobbs 	}
11483949bee8SArchie Cobbs 	frag->data = m;
11493949bee8SArchie Cobbs 	frag->meta = meta;
1150a9b3dca5SArchie Cobbs 	getmicrouptime(&frag->timestamp);
11513949bee8SArchie Cobbs 
1152a9b3dca5SArchie Cobbs 	/* If sequence number is < MSEQ, we've already declared this
1153a9b3dca5SArchie Cobbs 	   fragment as lost, so we have no choice now but to drop it */
1154a9b3dca5SArchie Cobbs 	if (diff < 0) {
1155a9b3dca5SArchie Cobbs 		link->stats.dropFragments++;
1156069154d5SJulian Elischer 		NG_FREE_M(m);
1157069154d5SJulian Elischer 		NG_FREE_META(meta);
1158a9b3dca5SArchie Cobbs 		return (0);
1159a9b3dca5SArchie Cobbs 	}
11603949bee8SArchie Cobbs 
1161a9b3dca5SArchie Cobbs 	/* Update highest received sequence number on this link and MSEQ */
1162a9b3dca5SArchie Cobbs 	priv->mseq = link->seq = frag->seq;
1163a9b3dca5SArchie Cobbs 	for (i = 0; i < priv->numActiveLinks; i++) {
1164a9b3dca5SArchie Cobbs 		struct ng_ppp_link *const alink =
1165a9b3dca5SArchie Cobbs 		    &priv->links[priv->activeLinks[i]];
1166a9b3dca5SArchie Cobbs 
11676f16db81SArchie Cobbs 		if (MP_RECV_SEQ_DIFF(priv, alink->seq, priv->mseq) < 0)
1168a9b3dca5SArchie Cobbs 			priv->mseq = alink->seq;
1169a9b3dca5SArchie Cobbs 	}
11703949bee8SArchie Cobbs 
11713949bee8SArchie Cobbs 	/* Allocate a new frag struct for the queue */
11729c8c302fSJulian Elischer 	MALLOC(frag, struct ng_ppp_frag *, sizeof(*frag), M_NETGRAPH_PPP, M_NOWAIT);
11733949bee8SArchie Cobbs 	if (frag == NULL) {
1174069154d5SJulian Elischer 		NG_FREE_M(m);
1175069154d5SJulian Elischer 		NG_FREE_META(meta);
1176a9b3dca5SArchie Cobbs 		ng_ppp_frag_process(node);
11773949bee8SArchie Cobbs 		return (ENOMEM);
11783949bee8SArchie Cobbs 	}
11793949bee8SArchie Cobbs 	*frag = frag0;
11803949bee8SArchie Cobbs 
1181a9b3dca5SArchie Cobbs 	/* Add fragment to queue, which is sorted by sequence number */
11821e7a9f72SArchie Cobbs 	inserted = 0;
11835f90cac7SKirk McKusick 	TAILQ_FOREACH_REVERSE(qent, &priv->frags, ng_ppp_fraglist, f_qent) {
11846f16db81SArchie Cobbs 		diff = MP_RECV_SEQ_DIFF(priv, frag->seq, qent->seq);
11853949bee8SArchie Cobbs 		if (diff > 0) {
11865f90cac7SKirk McKusick 			TAILQ_INSERT_AFTER(&priv->frags, qent, frag, f_qent);
11871e7a9f72SArchie Cobbs 			inserted = 1;
11883949bee8SArchie Cobbs 			break;
11893949bee8SArchie Cobbs 		} else if (diff == 0) {	     /* should never happen! */
1190a9b3dca5SArchie Cobbs 			link->stats.dupFragments++;
1191069154d5SJulian Elischer 			NG_FREE_M(frag->data);
1192069154d5SJulian Elischer 			NG_FREE_META(frag->meta);
11939c8c302fSJulian Elischer 			FREE(frag, M_NETGRAPH_PPP);
11943949bee8SArchie Cobbs 			return (EINVAL);
11953949bee8SArchie Cobbs 		}
11963949bee8SArchie Cobbs 	}
11971e7a9f72SArchie Cobbs 	if (!inserted)
11985f90cac7SKirk McKusick 		TAILQ_INSERT_HEAD(&priv->frags, frag, f_qent);
1199a9b3dca5SArchie Cobbs 	priv->qlen++;
12003949bee8SArchie Cobbs 
1201a9b3dca5SArchie Cobbs 	/* Process the queue */
1202a9b3dca5SArchie Cobbs 	return ng_ppp_frag_process(node);
12033949bee8SArchie Cobbs }
12041e7a9f72SArchie Cobbs 
1205a9b3dca5SArchie Cobbs /*
1206a9b3dca5SArchie Cobbs  * Examine our list of fragments, and determine if there is a
1207a9b3dca5SArchie Cobbs  * complete and deliverable packet at the head of the list.
1208a9b3dca5SArchie Cobbs  * Return 1 if so, zero otherwise.
1209a9b3dca5SArchie Cobbs  */
1210a9b3dca5SArchie Cobbs static int
1211a9b3dca5SArchie Cobbs ng_ppp_check_packet(node_p node)
1212a9b3dca5SArchie Cobbs {
121330400f03SJulian Elischer 	const priv_p priv = NG_NODE_PRIVATE(node);
1214a9b3dca5SArchie Cobbs 	struct ng_ppp_frag *qent, *qnext;
12153949bee8SArchie Cobbs 
1216a9b3dca5SArchie Cobbs 	/* Check for empty queue */
12175f90cac7SKirk McKusick 	if (TAILQ_EMPTY(&priv->frags))
1218a9b3dca5SArchie Cobbs 		return (0);
1219a9b3dca5SArchie Cobbs 
1220a9b3dca5SArchie Cobbs 	/* Check first fragment is the start of a deliverable packet */
12215f90cac7SKirk McKusick 	qent = TAILQ_FIRST(&priv->frags);
12226f16db81SArchie Cobbs 	if (!qent->first || MP_RECV_SEQ_DIFF(priv, qent->seq, priv->mseq) > 1)
1223a9b3dca5SArchie Cobbs 		return (0);
1224a9b3dca5SArchie Cobbs 
1225a9b3dca5SArchie Cobbs 	/* Check that all the fragments are there */
1226a9b3dca5SArchie Cobbs 	while (!qent->last) {
12275f90cac7SKirk McKusick 		qnext = TAILQ_NEXT(qent, f_qent);
12285f90cac7SKirk McKusick 		if (qnext == NULL)	/* end of queue */
1229a9b3dca5SArchie Cobbs 			return (0);
12306f16db81SArchie Cobbs 		if (qnext->seq != MP_NEXT_RECV_SEQ(priv, qent->seq))
1231a9b3dca5SArchie Cobbs 			return (0);
1232a9b3dca5SArchie Cobbs 		qent = qnext;
1233a9b3dca5SArchie Cobbs 	}
1234a9b3dca5SArchie Cobbs 
1235a9b3dca5SArchie Cobbs 	/* Got one */
1236a9b3dca5SArchie Cobbs 	return (1);
1237a9b3dca5SArchie Cobbs }
1238a9b3dca5SArchie Cobbs 
1239a9b3dca5SArchie Cobbs /*
1240a9b3dca5SArchie Cobbs  * Pull a completed packet off the head of the incoming fragment queue.
1241a9b3dca5SArchie Cobbs  * This assumes there is a completed packet there to pull off.
1242a9b3dca5SArchie Cobbs  */
1243a9b3dca5SArchie Cobbs static void
1244a9b3dca5SArchie Cobbs ng_ppp_get_packet(node_p node, struct mbuf **mp, meta_p *metap)
1245a9b3dca5SArchie Cobbs {
124630400f03SJulian Elischer 	const priv_p priv = NG_NODE_PRIVATE(node);
1247a9b3dca5SArchie Cobbs 	struct ng_ppp_frag *qent, *qnext;
1248a9b3dca5SArchie Cobbs 	struct mbuf *m = NULL, *tail;
1249a9b3dca5SArchie Cobbs 
12505f90cac7SKirk McKusick 	qent = TAILQ_FIRST(&priv->frags);
12515f90cac7SKirk McKusick 	KASSERT(!TAILQ_EMPTY(&priv->frags) && qent->first,
12526e551fb6SDavid E. O'Brien 	    ("%s: no packet", __func__));
1253a9b3dca5SArchie Cobbs 	for (tail = NULL; qent != NULL; qent = qnext) {
12545f90cac7SKirk McKusick 		qnext = TAILQ_NEXT(qent, f_qent);
12555f90cac7SKirk McKusick 		KASSERT(!TAILQ_EMPTY(&priv->frags),
12566e551fb6SDavid E. O'Brien 		    ("%s: empty q", __func__));
12575f90cac7SKirk McKusick 		TAILQ_REMOVE(&priv->frags, qent, f_qent);
12583949bee8SArchie Cobbs 		if (tail == NULL) {
12593949bee8SArchie Cobbs 			tail = m = qent->data;
1260a9b3dca5SArchie Cobbs 			*metap = qent->meta;	/* inherit first frag's meta */
12613949bee8SArchie Cobbs 		} else {
12623949bee8SArchie Cobbs 			m->m_pkthdr.len += qent->data->m_pkthdr.len;
12633949bee8SArchie Cobbs 			tail->m_next = qent->data;
1264d690a6e7SArchie Cobbs 			NG_FREE_META(qent->meta); /* drop other frags' metas */
12653949bee8SArchie Cobbs 		}
12663949bee8SArchie Cobbs 		while (tail->m_next != NULL)
12673949bee8SArchie Cobbs 			tail = tail->m_next;
1268a9b3dca5SArchie Cobbs 		if (qent->last)
12693949bee8SArchie Cobbs 			qnext = NULL;
12709c8c302fSJulian Elischer 		FREE(qent, M_NETGRAPH_PPP);
1271a9b3dca5SArchie Cobbs 		priv->qlen--;
1272a9b3dca5SArchie Cobbs 	}
1273a9b3dca5SArchie Cobbs 	*mp = m;
12743949bee8SArchie Cobbs }
12753949bee8SArchie Cobbs 
1276a9b3dca5SArchie Cobbs /*
1277a9b3dca5SArchie Cobbs  * Trim fragments from the queue whose packets can never be completed.
1278a9b3dca5SArchie Cobbs  * This assumes a complete packet is NOT at the beginning of the queue.
1279a9b3dca5SArchie Cobbs  * Returns 1 if fragments were removed, zero otherwise.
1280a9b3dca5SArchie Cobbs  */
1281a9b3dca5SArchie Cobbs static int
1282a9b3dca5SArchie Cobbs ng_ppp_frag_trim(node_p node)
1283a9b3dca5SArchie Cobbs {
128430400f03SJulian Elischer 	const priv_p priv = NG_NODE_PRIVATE(node);
1285a9b3dca5SArchie Cobbs 	struct ng_ppp_frag *qent, *qnext = NULL;
1286a9b3dca5SArchie Cobbs 	int removed = 0;
1287a9b3dca5SArchie Cobbs 
1288a9b3dca5SArchie Cobbs 	/* Scan for "dead" fragments and remove them */
1289a9b3dca5SArchie Cobbs 	while (1) {
1290a9b3dca5SArchie Cobbs 		int dead = 0;
1291a9b3dca5SArchie Cobbs 
1292a9b3dca5SArchie Cobbs 		/* If queue is empty, we're done */
12935f90cac7SKirk McKusick 		if (TAILQ_EMPTY(&priv->frags))
12943949bee8SArchie Cobbs 			break;
1295a9b3dca5SArchie Cobbs 
1296a9b3dca5SArchie Cobbs 		/* Determine whether first fragment can ever be completed */
12975f90cac7SKirk McKusick 		TAILQ_FOREACH(qent, &priv->frags, f_qent) {
12986f16db81SArchie Cobbs 			if (MP_RECV_SEQ_DIFF(priv, qent->seq, priv->mseq) >= 0)
1299a9b3dca5SArchie Cobbs 				break;
13005f90cac7SKirk McKusick 			qnext = TAILQ_NEXT(qent, f_qent);
13015f90cac7SKirk McKusick 			KASSERT(qnext != NULL,
13026e551fb6SDavid E. O'Brien 			    ("%s: last frag < MSEQ?", __func__));
13036f16db81SArchie Cobbs 			if (qnext->seq != MP_NEXT_RECV_SEQ(priv, qent->seq)
1304a9b3dca5SArchie Cobbs 			    || qent->last || qnext->first) {
1305a9b3dca5SArchie Cobbs 				dead = 1;
1306a9b3dca5SArchie Cobbs 				break;
1307a9b3dca5SArchie Cobbs 			}
1308a9b3dca5SArchie Cobbs 		}
1309a9b3dca5SArchie Cobbs 		if (!dead)
1310a9b3dca5SArchie Cobbs 			break;
1311a9b3dca5SArchie Cobbs 
1312a9b3dca5SArchie Cobbs 		/* Remove fragment and all others in the same packet */
13135f90cac7SKirk McKusick 		while ((qent = TAILQ_FIRST(&priv->frags)) != qnext) {
13145f90cac7SKirk McKusick 			KASSERT(!TAILQ_EMPTY(&priv->frags),
13156e551fb6SDavid E. O'Brien 			    ("%s: empty q", __func__));
1316a9b3dca5SArchie Cobbs 			priv->bundleStats.dropFragments++;
13175f90cac7SKirk McKusick 			TAILQ_REMOVE(&priv->frags, qent, f_qent);
1318069154d5SJulian Elischer 			NG_FREE_M(qent->data);
1319069154d5SJulian Elischer 			NG_FREE_META(qent->meta);
13209c8c302fSJulian Elischer 			FREE(qent, M_NETGRAPH_PPP);
1321a9b3dca5SArchie Cobbs 			priv->qlen--;
1322a9b3dca5SArchie Cobbs 			removed = 1;
1323a9b3dca5SArchie Cobbs 		}
1324a9b3dca5SArchie Cobbs 	}
1325a9b3dca5SArchie Cobbs 	return (removed);
13263949bee8SArchie Cobbs }
13273949bee8SArchie Cobbs 
1328a9b3dca5SArchie Cobbs /*
1329a9b3dca5SArchie Cobbs  * Run the queue, restoring the queue invariants
1330a9b3dca5SArchie Cobbs  */
1331a9b3dca5SArchie Cobbs static int
1332a9b3dca5SArchie Cobbs ng_ppp_frag_process(node_p node)
1333a9b3dca5SArchie Cobbs {
133430400f03SJulian Elischer 	const priv_p priv = NG_NODE_PRIVATE(node);
1335a9b3dca5SArchie Cobbs 	struct mbuf *m;
1336a9b3dca5SArchie Cobbs 	meta_p meta;
1337069154d5SJulian Elischer 	item_p item;
1338a9b3dca5SArchie Cobbs 
1339a9b3dca5SArchie Cobbs 	/* Deliver any deliverable packets */
1340a9b3dca5SArchie Cobbs 	while (ng_ppp_check_packet(node)) {
1341a9b3dca5SArchie Cobbs 		ng_ppp_get_packet(node, &m, &meta);
1342069154d5SJulian Elischer 		item = ng_package_data(m, meta);
1343069154d5SJulian Elischer 		ng_ppp_input(node, 0, NG_PPP_BUNDLE_LINKNUM, item);
1344a9b3dca5SArchie Cobbs 	}
1345a9b3dca5SArchie Cobbs 
1346a9b3dca5SArchie Cobbs 	/* Delete dead fragments and try again */
1347a9b3dca5SArchie Cobbs 	if (ng_ppp_frag_trim(node)) {
1348a9b3dca5SArchie Cobbs 		while (ng_ppp_check_packet(node)) {
1349a9b3dca5SArchie Cobbs 			ng_ppp_get_packet(node, &m, &meta);
1350069154d5SJulian Elischer 			item = ng_package_data(m, meta);
1351069154d5SJulian Elischer 			ng_ppp_input(node, 0, NG_PPP_BUNDLE_LINKNUM, item);
1352a9b3dca5SArchie Cobbs 		}
1353a9b3dca5SArchie Cobbs 	}
1354a9b3dca5SArchie Cobbs 
1355a9b3dca5SArchie Cobbs 	/* Check for stale fragments while we're here */
1356a9b3dca5SArchie Cobbs 	ng_ppp_frag_checkstale(node);
1357a9b3dca5SArchie Cobbs 
1358a9b3dca5SArchie Cobbs 	/* Check queue length */
1359a9b3dca5SArchie Cobbs 	if (priv->qlen > MP_MAX_QUEUE_LEN) {
1360a9b3dca5SArchie Cobbs 		struct ng_ppp_frag *qent;
1361a9b3dca5SArchie Cobbs 		int i;
1362a9b3dca5SArchie Cobbs 
1363a9b3dca5SArchie Cobbs 		/* Get oldest fragment */
13645f90cac7SKirk McKusick 		KASSERT(!TAILQ_EMPTY(&priv->frags),
13656e551fb6SDavid E. O'Brien 		    ("%s: empty q", __func__));
13665f90cac7SKirk McKusick 		qent = TAILQ_FIRST(&priv->frags);
1367a9b3dca5SArchie Cobbs 
1368a9b3dca5SArchie Cobbs 		/* Bump MSEQ if necessary */
13696f16db81SArchie Cobbs 		if (MP_RECV_SEQ_DIFF(priv, priv->mseq, qent->seq) < 0) {
1370a9b3dca5SArchie Cobbs 			priv->mseq = qent->seq;
1371a9b3dca5SArchie Cobbs 			for (i = 0; i < priv->numActiveLinks; i++) {
1372a9b3dca5SArchie Cobbs 				struct ng_ppp_link *const alink =
1373a9b3dca5SArchie Cobbs 				    &priv->links[priv->activeLinks[i]];
1374a9b3dca5SArchie Cobbs 
13756f16db81SArchie Cobbs 				if (MP_RECV_SEQ_DIFF(priv,
1376a9b3dca5SArchie Cobbs 				    alink->seq, priv->mseq) < 0)
1377a9b3dca5SArchie Cobbs 					alink->seq = priv->mseq;
1378a9b3dca5SArchie Cobbs 			}
1379a9b3dca5SArchie Cobbs 		}
1380a9b3dca5SArchie Cobbs 
1381a9b3dca5SArchie Cobbs 		/* Drop it */
1382a9b3dca5SArchie Cobbs 		priv->bundleStats.dropFragments++;
13835f90cac7SKirk McKusick 		TAILQ_REMOVE(&priv->frags, qent, f_qent);
1384069154d5SJulian Elischer 		NG_FREE_M(qent->data);
1385069154d5SJulian Elischer 		NG_FREE_META(qent->meta);
13869c8c302fSJulian Elischer 		FREE(qent, M_NETGRAPH_PPP);
1387a9b3dca5SArchie Cobbs 		priv->qlen--;
1388a9b3dca5SArchie Cobbs 
1389a9b3dca5SArchie Cobbs 		/* Process queue again */
1390a9b3dca5SArchie Cobbs 		return ng_ppp_frag_process(node);
1391a9b3dca5SArchie Cobbs 	}
1392a9b3dca5SArchie Cobbs 
1393a9b3dca5SArchie Cobbs 	/* Done */
1394a9b3dca5SArchie Cobbs 	return (0);
1395a9b3dca5SArchie Cobbs }
1396a9b3dca5SArchie Cobbs 
1397a9b3dca5SArchie Cobbs /*
1398a9b3dca5SArchie Cobbs  * Check for 'stale' completed packets that need to be delivered
1399a9b3dca5SArchie Cobbs  *
1400a9b3dca5SArchie Cobbs  * If a link goes down or has a temporary failure, MSEQ can get
1401a9b3dca5SArchie Cobbs  * "stuck", because no new incoming fragments appear on that link.
1402a9b3dca5SArchie Cobbs  * This can cause completed packets to never get delivered if
1403a9b3dca5SArchie Cobbs  * their sequence numbers are all > MSEQ + 1.
1404a9b3dca5SArchie Cobbs  *
1405a9b3dca5SArchie Cobbs  * This routine checks how long all of the completed packets have
1406a9b3dca5SArchie Cobbs  * been sitting in the queue, and if too long, removes fragments
1407a9b3dca5SArchie Cobbs  * from the queue and increments MSEQ to allow them to be delivered.
1408a9b3dca5SArchie Cobbs  */
1409a9b3dca5SArchie Cobbs static void
1410a9b3dca5SArchie Cobbs ng_ppp_frag_checkstale(node_p node)
1411a9b3dca5SArchie Cobbs {
141230400f03SJulian Elischer 	const priv_p priv = NG_NODE_PRIVATE(node);
1413a9b3dca5SArchie Cobbs 	struct ng_ppp_frag *qent, *beg, *end;
1414a9b3dca5SArchie Cobbs 	struct timeval now, age;
1415a9b3dca5SArchie Cobbs 	struct mbuf *m;
1416a9b3dca5SArchie Cobbs 	meta_p meta;
1417a9b3dca5SArchie Cobbs 	int i, seq;
1418069154d5SJulian Elischer 	item_p item;
1419a9b3dca5SArchie Cobbs 
1420a9b3dca5SArchie Cobbs 	now.tv_sec = 0;			/* uninitialized state */
1421a9b3dca5SArchie Cobbs 	while (1) {
1422a9b3dca5SArchie Cobbs 
1423a9b3dca5SArchie Cobbs 		/* If queue is empty, we're done */
14245f90cac7SKirk McKusick 		if (TAILQ_EMPTY(&priv->frags))
1425a9b3dca5SArchie Cobbs 			break;
1426a9b3dca5SArchie Cobbs 
1427a9b3dca5SArchie Cobbs 		/* Find the first complete packet in the queue */
1428a9b3dca5SArchie Cobbs 		beg = end = NULL;
14295f90cac7SKirk McKusick 		seq = TAILQ_FIRST(&priv->frags)->seq;
14305f90cac7SKirk McKusick 		TAILQ_FOREACH(qent, &priv->frags, f_qent) {
1431a9b3dca5SArchie Cobbs 			if (qent->first)
1432a9b3dca5SArchie Cobbs 				beg = qent;
1433a9b3dca5SArchie Cobbs 			else if (qent->seq != seq)
1434a9b3dca5SArchie Cobbs 				beg = NULL;
1435a9b3dca5SArchie Cobbs 			if (beg != NULL && qent->last) {
1436a9b3dca5SArchie Cobbs 				end = qent;
1437a9b3dca5SArchie Cobbs 				break;
1438a9b3dca5SArchie Cobbs 			}
14396f16db81SArchie Cobbs 			seq = MP_NEXT_RECV_SEQ(priv, seq);
1440a9b3dca5SArchie Cobbs 		}
1441a9b3dca5SArchie Cobbs 
1442a9b3dca5SArchie Cobbs 		/* If none found, exit */
1443a9b3dca5SArchie Cobbs 		if (end == NULL)
1444a9b3dca5SArchie Cobbs 			break;
1445a9b3dca5SArchie Cobbs 
1446a9b3dca5SArchie Cobbs 		/* Get current time (we assume we've been up for >= 1 second) */
1447a9b3dca5SArchie Cobbs 		if (now.tv_sec == 0)
1448a9b3dca5SArchie Cobbs 			getmicrouptime(&now);
1449a9b3dca5SArchie Cobbs 
1450a9b3dca5SArchie Cobbs 		/* Check if packet has been queued too long */
1451a9b3dca5SArchie Cobbs 		age = now;
1452a9b3dca5SArchie Cobbs 		timevalsub(&age, &beg->timestamp);
1453a9b3dca5SArchie Cobbs 		if (timevalcmp(&age, &ng_ppp_max_staleness, < ))
1454a9b3dca5SArchie Cobbs 			break;
1455a9b3dca5SArchie Cobbs 
1456a9b3dca5SArchie Cobbs 		/* Throw away junk fragments in front of the completed packet */
14575f90cac7SKirk McKusick 		while ((qent = TAILQ_FIRST(&priv->frags)) != beg) {
14585f90cac7SKirk McKusick 			KASSERT(!TAILQ_EMPTY(&priv->frags),
14596e551fb6SDavid E. O'Brien 			    ("%s: empty q", __func__));
1460a9b3dca5SArchie Cobbs 			priv->bundleStats.dropFragments++;
14615f90cac7SKirk McKusick 			TAILQ_REMOVE(&priv->frags, qent, f_qent);
1462069154d5SJulian Elischer 			NG_FREE_M(qent->data);
1463069154d5SJulian Elischer 			NG_FREE_META(qent->meta);
14649c8c302fSJulian Elischer 			FREE(qent, M_NETGRAPH_PPP);
1465a9b3dca5SArchie Cobbs 			priv->qlen--;
1466a9b3dca5SArchie Cobbs 		}
1467a9b3dca5SArchie Cobbs 
1468a9b3dca5SArchie Cobbs 		/* Extract completed packet */
1469a9b3dca5SArchie Cobbs 		ng_ppp_get_packet(node, &m, &meta);
1470a9b3dca5SArchie Cobbs 
1471a9b3dca5SArchie Cobbs 		/* Bump MSEQ if necessary */
14726f16db81SArchie Cobbs 		if (MP_RECV_SEQ_DIFF(priv, priv->mseq, end->seq) < 0) {
1473a9b3dca5SArchie Cobbs 			priv->mseq = end->seq;
1474a9b3dca5SArchie Cobbs 			for (i = 0; i < priv->numActiveLinks; i++) {
1475a9b3dca5SArchie Cobbs 				struct ng_ppp_link *const alink =
1476a9b3dca5SArchie Cobbs 				    &priv->links[priv->activeLinks[i]];
1477a9b3dca5SArchie Cobbs 
14786f16db81SArchie Cobbs 				if (MP_RECV_SEQ_DIFF(priv,
1479a9b3dca5SArchie Cobbs 				    alink->seq, priv->mseq) < 0)
1480a9b3dca5SArchie Cobbs 					alink->seq = priv->mseq;
1481a9b3dca5SArchie Cobbs 			}
1482a9b3dca5SArchie Cobbs 		}
1483a9b3dca5SArchie Cobbs 
1484a9b3dca5SArchie Cobbs 		/* Deliver packet */
1485069154d5SJulian Elischer 		item = ng_package_data(m, meta);
1486069154d5SJulian Elischer 		ng_ppp_input(node, 0, NG_PPP_BUNDLE_LINKNUM, item);
1487a9b3dca5SArchie Cobbs 	}
1488a9b3dca5SArchie Cobbs }
1489a9b3dca5SArchie Cobbs 
1490a9b3dca5SArchie Cobbs /*
1491a9b3dca5SArchie Cobbs  * Periodically call ng_ppp_frag_checkstale()
1492a9b3dca5SArchie Cobbs  */
1493a9b3dca5SArchie Cobbs static void
1494a9b3dca5SArchie Cobbs ng_ppp_frag_timeout(void *arg)
1495a9b3dca5SArchie Cobbs {
1496a9b3dca5SArchie Cobbs 	const node_p node = arg;
149730400f03SJulian Elischer 	const priv_p priv = NG_NODE_PRIVATE(node);
1498a9b3dca5SArchie Cobbs 	int s = splnet();
1499a9b3dca5SArchie Cobbs 
1500a9b3dca5SArchie Cobbs 	/* Handle the race where shutdown happens just before splnet() above */
150130400f03SJulian Elischer 	if (NG_NODE_NOT_VALID(node)) {
150230400f03SJulian Elischer 		NG_NODE_UNREF(node);
1503a9b3dca5SArchie Cobbs 		splx(s);
1504a9b3dca5SArchie Cobbs 		return;
1505a9b3dca5SArchie Cobbs 	}
1506a9b3dca5SArchie Cobbs 
1507a9b3dca5SArchie Cobbs 	/* Reset timer state after timeout */
15086e551fb6SDavid E. O'Brien 	KASSERT(priv->timerActive, ("%s: !timerActive", __func__));
1509a9b3dca5SArchie Cobbs 	priv->timerActive = 0;
15106e551fb6SDavid E. O'Brien 	KASSERT(node->nd_refs > 1, ("%s: nd_refs=%d", __func__, node->nd_refs));
151130400f03SJulian Elischer 	NG_NODE_UNREF(node);
1512a9b3dca5SArchie Cobbs 
1513a9b3dca5SArchie Cobbs 	/* Start timer again */
1514a9b3dca5SArchie Cobbs 	ng_ppp_start_frag_timer(node);
1515a9b3dca5SArchie Cobbs 
1516a9b3dca5SArchie Cobbs 	/* Scan the fragment queue */
1517a9b3dca5SArchie Cobbs 	ng_ppp_frag_checkstale(node);
1518a9b3dca5SArchie Cobbs 	splx(s);
15193949bee8SArchie Cobbs }
15203949bee8SArchie Cobbs 
15213949bee8SArchie Cobbs /*
15223949bee8SArchie Cobbs  * Deliver a frame out on the bundle, i.e., figure out how to fragment
15233949bee8SArchie Cobbs  * the frame across the individual PPP links and do so.
15243949bee8SArchie Cobbs  */
15253949bee8SArchie Cobbs static int
15263949bee8SArchie Cobbs ng_ppp_mp_output(node_p node, struct mbuf *m, meta_p meta)
15273949bee8SArchie Cobbs {
152830400f03SJulian Elischer 	const priv_p priv = NG_NODE_PRIVATE(node);
1529931c828aSArchie Cobbs 	const int hdr_len = priv->conf.xmitShortSeq ? 2 : 4;
15303949bee8SArchie Cobbs 	int distrib[NG_PPP_MAX_LINKS];
15313949bee8SArchie Cobbs 	int firstFragment;
15323949bee8SArchie Cobbs 	int activeLinkNum;
1533069154d5SJulian Elischer 	item_p item;
15343949bee8SArchie Cobbs 
15353949bee8SArchie Cobbs 	/* At least one link must be active */
15363949bee8SArchie Cobbs 	if (priv->numActiveLinks == 0) {
1537069154d5SJulian Elischer 		NG_FREE_M(m);
1538069154d5SJulian Elischer 		NG_FREE_META(meta);
15393949bee8SArchie Cobbs 		return (ENETDOWN);
15403949bee8SArchie Cobbs 	}
15413949bee8SArchie Cobbs 
15423949bee8SArchie Cobbs 	/* Round-robin strategy */
15433949bee8SArchie Cobbs 	if (priv->conf.enableRoundRobin || m->m_pkthdr.len < MP_MIN_FRAG_LEN) {
15443949bee8SArchie Cobbs 		activeLinkNum = priv->lastLink++ % priv->numActiveLinks;
15453949bee8SArchie Cobbs 		bzero(&distrib, priv->numActiveLinks * sizeof(distrib[0]));
15463949bee8SArchie Cobbs 		distrib[activeLinkNum] = m->m_pkthdr.len;
15473949bee8SArchie Cobbs 		goto deliver;
15483949bee8SArchie Cobbs 	}
15493949bee8SArchie Cobbs 
15503949bee8SArchie Cobbs 	/* Strategy when all links are equivalent (optimize the common case) */
15513949bee8SArchie Cobbs 	if (priv->allLinksEqual) {
15523949bee8SArchie Cobbs 		const int fraction = m->m_pkthdr.len / priv->numActiveLinks;
15533949bee8SArchie Cobbs 		int i, remain;
15543949bee8SArchie Cobbs 
15553949bee8SArchie Cobbs 		for (i = 0; i < priv->numActiveLinks; i++)
15563949bee8SArchie Cobbs 			distrib[priv->lastLink++ % priv->numActiveLinks]
15573949bee8SArchie Cobbs 			    = fraction;
15583949bee8SArchie Cobbs 		remain = m->m_pkthdr.len - (fraction * priv->numActiveLinks);
15593949bee8SArchie Cobbs 		while (remain > 0) {
15603949bee8SArchie Cobbs 			distrib[priv->lastLink++ % priv->numActiveLinks]++;
15613949bee8SArchie Cobbs 			remain--;
15623949bee8SArchie Cobbs 		}
15633949bee8SArchie Cobbs 		goto deliver;
15643949bee8SArchie Cobbs 	}
15653949bee8SArchie Cobbs 
15663949bee8SArchie Cobbs 	/* Strategy when all links are not equivalent */
15673949bee8SArchie Cobbs 	ng_ppp_mp_strategy(node, m->m_pkthdr.len, distrib);
15683949bee8SArchie Cobbs 
15693949bee8SArchie Cobbs deliver:
15703949bee8SArchie Cobbs 	/* Update stats */
15713949bee8SArchie Cobbs 	priv->bundleStats.xmitFrames++;
15723949bee8SArchie Cobbs 	priv->bundleStats.xmitOctets += m->m_pkthdr.len;
15733949bee8SArchie Cobbs 
15743949bee8SArchie Cobbs 	/* Send alloted portions of frame out on the link(s) */
15753949bee8SArchie Cobbs 	for (firstFragment = 1, activeLinkNum = priv->numActiveLinks - 1;
15763949bee8SArchie Cobbs 	    activeLinkNum >= 0; activeLinkNum--) {
15773949bee8SArchie Cobbs 		const int linkNum = priv->activeLinks[activeLinkNum];
1578a9b3dca5SArchie Cobbs 		struct ng_ppp_link *const link = &priv->links[linkNum];
15793949bee8SArchie Cobbs 
15803949bee8SArchie Cobbs 		/* Deliver fragment(s) out the next link */
15813949bee8SArchie Cobbs 		for ( ; distrib[activeLinkNum] > 0; firstFragment = 0) {
15823949bee8SArchie Cobbs 			int len, lastFragment, error;
15833949bee8SArchie Cobbs 			struct mbuf *m2;
15843949bee8SArchie Cobbs 			meta_p meta2;
15853949bee8SArchie Cobbs 
15863949bee8SArchie Cobbs 			/* Calculate fragment length; don't exceed link MTU */
15873949bee8SArchie Cobbs 			len = distrib[activeLinkNum];
1588931c828aSArchie Cobbs 			if (len > link->conf.mru - hdr_len)
1589931c828aSArchie Cobbs 				len = link->conf.mru - hdr_len;
15903949bee8SArchie Cobbs 			distrib[activeLinkNum] -= len;
15913949bee8SArchie Cobbs 			lastFragment = (len == m->m_pkthdr.len);
15923949bee8SArchie Cobbs 
15933949bee8SArchie Cobbs 			/* Split off next fragment as "m2" */
15943949bee8SArchie Cobbs 			m2 = m;
15953949bee8SArchie Cobbs 			if (!lastFragment) {
15963949bee8SArchie Cobbs 				struct mbuf *n = m_split(m, len, M_NOWAIT);
15973949bee8SArchie Cobbs 
15983949bee8SArchie Cobbs 				if (n == NULL) {
1599069154d5SJulian Elischer 					NG_FREE_M(m);
1600069154d5SJulian Elischer 					NG_FREE_META(meta);
16013949bee8SArchie Cobbs 					return (ENOMEM);
16023949bee8SArchie Cobbs 				}
16033949bee8SArchie Cobbs 				m = n;
16043949bee8SArchie Cobbs 			}
16053949bee8SArchie Cobbs 
16063949bee8SArchie Cobbs 			/* Prepend MP header */
16073949bee8SArchie Cobbs 			if (priv->conf.xmitShortSeq) {
16083949bee8SArchie Cobbs 				u_int16_t shdr;
16093949bee8SArchie Cobbs 
1610a9b3dca5SArchie Cobbs 				shdr = priv->xseq;
1611a9b3dca5SArchie Cobbs 				priv->xseq =
16126f16db81SArchie Cobbs 				    (priv->xseq + 1) & MP_SHORT_SEQ_MASK;
16133949bee8SArchie Cobbs 				if (firstFragment)
16143949bee8SArchie Cobbs 					shdr |= MP_SHORT_FIRST_FLAG;
16153949bee8SArchie Cobbs 				if (lastFragment)
16163949bee8SArchie Cobbs 					shdr |= MP_SHORT_LAST_FLAG;
1617d690a6e7SArchie Cobbs 				shdr = htons(shdr);
1618d690a6e7SArchie Cobbs 				m2 = ng_ppp_prepend(m2, &shdr, 2);
16193949bee8SArchie Cobbs 			} else {
16203949bee8SArchie Cobbs 				u_int32_t lhdr;
16213949bee8SArchie Cobbs 
1622a9b3dca5SArchie Cobbs 				lhdr = priv->xseq;
1623a9b3dca5SArchie Cobbs 				priv->xseq =
16246f16db81SArchie Cobbs 				    (priv->xseq + 1) & MP_LONG_SEQ_MASK;
16253949bee8SArchie Cobbs 				if (firstFragment)
16263949bee8SArchie Cobbs 					lhdr |= MP_LONG_FIRST_FLAG;
16273949bee8SArchie Cobbs 				if (lastFragment)
16283949bee8SArchie Cobbs 					lhdr |= MP_LONG_LAST_FLAG;
1629d690a6e7SArchie Cobbs 				lhdr = htonl(lhdr);
1630d690a6e7SArchie Cobbs 				m2 = ng_ppp_prepend(m2, &lhdr, 4);
16313949bee8SArchie Cobbs 			}
16323949bee8SArchie Cobbs 			if (m2 == NULL) {
16333949bee8SArchie Cobbs 				if (!lastFragment)
16343949bee8SArchie Cobbs 					m_freem(m);
16353949bee8SArchie Cobbs 				NG_FREE_META(meta);
16363949bee8SArchie Cobbs 				return (ENOBUFS);
16373949bee8SArchie Cobbs 			}
16383949bee8SArchie Cobbs 
16393949bee8SArchie Cobbs 			/* Copy the meta information, if any */
1640a9b3dca5SArchie Cobbs 			meta2 = lastFragment ? meta : ng_copy_meta(meta);
16413949bee8SArchie Cobbs 
16423949bee8SArchie Cobbs 			/* Send fragment */
1643069154d5SJulian Elischer 			item = ng_package_data(m2, meta2);
1644069154d5SJulian Elischer 			error = ng_ppp_output(node, 0, PROT_MP, linkNum, item);
16453949bee8SArchie Cobbs 			if (error != 0) {
1646069154d5SJulian Elischer 				if (!lastFragment) {
1647069154d5SJulian Elischer 					NG_FREE_M(m);
1648069154d5SJulian Elischer 					NG_FREE_META(meta);
1649069154d5SJulian Elischer 				}
16503949bee8SArchie Cobbs 				return (error);
16513949bee8SArchie Cobbs 			}
16523949bee8SArchie Cobbs 		}
16533949bee8SArchie Cobbs 	}
16543949bee8SArchie Cobbs 
16553949bee8SArchie Cobbs 	/* Done */
16563949bee8SArchie Cobbs 	return (0);
16573949bee8SArchie Cobbs }
16583949bee8SArchie Cobbs 
16593949bee8SArchie Cobbs /*
16603949bee8SArchie Cobbs  * Computing the optimal fragmentation
16613949bee8SArchie Cobbs  * -----------------------------------
16623949bee8SArchie Cobbs  *
16633949bee8SArchie Cobbs  * This routine tries to compute the optimal fragmentation pattern based
16643949bee8SArchie Cobbs  * on each link's latency, bandwidth, and calculated additional latency.
16653949bee8SArchie Cobbs  * The latter quantity is the additional latency caused by previously
16663949bee8SArchie Cobbs  * written data that has not been transmitted yet.
16673949bee8SArchie Cobbs  *
16683949bee8SArchie Cobbs  * This algorithm is only useful when not all of the links have the
16693949bee8SArchie Cobbs  * same latency and bandwidth values.
16703949bee8SArchie Cobbs  *
16713949bee8SArchie Cobbs  * The essential idea is to make the last bit of each fragment of the
16723949bee8SArchie Cobbs  * frame arrive at the opposite end at the exact same time. This greedy
16733949bee8SArchie Cobbs  * algorithm is optimal, in that no other scheduling could result in any
16743949bee8SArchie Cobbs  * packet arriving any sooner unless packets are delivered out of order.
16753949bee8SArchie Cobbs  *
16763949bee8SArchie Cobbs  * Suppose link i has bandwidth b_i (in tens of bytes per milisecond) and
16773949bee8SArchie Cobbs  * latency l_i (in miliseconds). Consider the function function f_i(t)
16783949bee8SArchie Cobbs  * which is equal to the number of bytes that will have arrived at
16793949bee8SArchie Cobbs  * the peer after t miliseconds if we start writing continuously at
16803949bee8SArchie Cobbs  * time t = 0. Then f_i(t) = b_i * (t - l_i) = ((b_i * t) - (l_i * b_i).
16813949bee8SArchie Cobbs  * That is, f_i(t) is a line with slope b_i and y-intersect -(l_i * b_i).
16823949bee8SArchie Cobbs  * Note that the y-intersect is always <= zero because latency can't be
16833949bee8SArchie Cobbs  * negative.  Note also that really the function is f_i(t) except when
16843949bee8SArchie Cobbs  * f_i(t) is negative, in which case the function is zero.  To take
16853949bee8SArchie Cobbs  * care of this, let Q_i(t) = { if (f_i(t) > 0) return 1; else return 0; }.
16863949bee8SArchie Cobbs  * So the actual number of bytes that will have arrived at the peer after
16873949bee8SArchie Cobbs  * t miliseconds is f_i(t) * Q_i(t).
16883949bee8SArchie Cobbs  *
16893949bee8SArchie Cobbs  * At any given time, each link has some additional latency a_i >= 0
16903949bee8SArchie Cobbs  * due to previously written fragment(s) which are still in the queue.
16913949bee8SArchie Cobbs  * This value is easily computed from the time since last transmission,
16923949bee8SArchie Cobbs  * the previous latency value, the number of bytes written, and the
16933949bee8SArchie Cobbs  * link's bandwidth.
16943949bee8SArchie Cobbs  *
16953949bee8SArchie Cobbs  * Assume that l_i includes any a_i already, and that the links are
16963949bee8SArchie Cobbs  * sorted by latency, so that l_i <= l_{i+1}.
16973949bee8SArchie Cobbs  *
16983949bee8SArchie Cobbs  * Let N be the total number of bytes in the current frame we are sending.
16993949bee8SArchie Cobbs  *
17003949bee8SArchie Cobbs  * Suppose we were to start writing bytes at time t = 0 on all links
17013949bee8SArchie Cobbs  * simultaneously, which is the most we can possibly do.  Then let
17023949bee8SArchie Cobbs  * F(t) be equal to the total number of bytes received by the peer
17033949bee8SArchie Cobbs  * after t miliseconds. Then F(t) = Sum_i (f_i(t) * Q_i(t)).
17043949bee8SArchie Cobbs  *
17053949bee8SArchie Cobbs  * Our goal is simply this: fragment the frame across the links such
17063949bee8SArchie Cobbs  * that the peer is able to reconstruct the completed frame as soon as
17073949bee8SArchie Cobbs  * possible, i.e., at the least possible value of t. Call this value t_0.
17083949bee8SArchie Cobbs  *
17093949bee8SArchie Cobbs  * Then it follows that F(t_0) = N. Our strategy is first to find the value
17103949bee8SArchie Cobbs  * of t_0, and then deduce how many bytes to write to each link.
17113949bee8SArchie Cobbs  *
17123949bee8SArchie Cobbs  * Rewriting F(t_0):
17133949bee8SArchie Cobbs  *
17143949bee8SArchie Cobbs  *   t_0 = ( N + Sum_i ( l_i * b_i * Q_i(t_0) ) ) / Sum_i ( b_i * Q_i(t_0) )
17153949bee8SArchie Cobbs  *
17163949bee8SArchie Cobbs  * Now, we note that Q_i(t) is constant for l_i <= t <= l_{i+1}. t_0 will
17173949bee8SArchie Cobbs  * lie in one of these ranges.  To find it, we just need to find the i such
17183949bee8SArchie Cobbs  * that F(l_i) <= N <= F(l_{i+1}).  Then we compute all the constant values
17193949bee8SArchie Cobbs  * for Q_i() in this range, plug in the remaining values, solving for t_0.
17203949bee8SArchie Cobbs  *
17213949bee8SArchie Cobbs  * Once t_0 is known, then the number of bytes to send on link i is
17223949bee8SArchie Cobbs  * just f_i(t_0) * Q_i(t_0).
17233949bee8SArchie Cobbs  *
17243949bee8SArchie Cobbs  * In other words, we start allocating bytes to the links one at a time.
17253949bee8SArchie Cobbs  * We keep adding links until the frame is completely sent.  Some links
17263949bee8SArchie Cobbs  * may not get any bytes because their latency is too high.
17273949bee8SArchie Cobbs  *
17283949bee8SArchie Cobbs  * Is all this work really worth the trouble?  Depends on the situation.
17293949bee8SArchie Cobbs  * The bigger the ratio of computer speed to link speed, and the more
17303949bee8SArchie Cobbs  * important total bundle latency is (e.g., for interactive response time),
17313949bee8SArchie Cobbs  * the more it's worth it.  There is however the cost of calling this
17323949bee8SArchie Cobbs  * function for every frame.  The running time is O(n^2) where n is the
17333949bee8SArchie Cobbs  * number of links that receive a non-zero number of bytes.
17343949bee8SArchie Cobbs  *
17353949bee8SArchie Cobbs  * Since latency is measured in miliseconds, the "resolution" of this
17363949bee8SArchie Cobbs  * algorithm is one milisecond.
17373949bee8SArchie Cobbs  *
17383949bee8SArchie Cobbs  * To avoid this algorithm altogether, configure all links to have the
17393949bee8SArchie Cobbs  * same latency and bandwidth.
17403949bee8SArchie Cobbs  */
17413949bee8SArchie Cobbs static void
17423949bee8SArchie Cobbs ng_ppp_mp_strategy(node_p node, int len, int *distrib)
17433949bee8SArchie Cobbs {
174430400f03SJulian Elischer 	const priv_p priv = NG_NODE_PRIVATE(node);
17453949bee8SArchie Cobbs 	int latency[NG_PPP_MAX_LINKS];
17463949bee8SArchie Cobbs 	int sortByLatency[NG_PPP_MAX_LINKS];
1747a9b3dca5SArchie Cobbs 	int activeLinkNum;
17483949bee8SArchie Cobbs 	int t0, total, topSum, botSum;
17493949bee8SArchie Cobbs 	struct timeval now;
17503949bee8SArchie Cobbs 	int i, numFragments;
17513949bee8SArchie Cobbs 
17523949bee8SArchie Cobbs 	/* If only one link, this gets real easy */
17533949bee8SArchie Cobbs 	if (priv->numActiveLinks == 1) {
17543949bee8SArchie Cobbs 		distrib[0] = len;
17553949bee8SArchie Cobbs 		return;
17563949bee8SArchie Cobbs 	}
17573949bee8SArchie Cobbs 
17583949bee8SArchie Cobbs 	/* Get current time */
1759a9b3dca5SArchie Cobbs 	getmicrouptime(&now);
17603949bee8SArchie Cobbs 
17613949bee8SArchie Cobbs 	/* Compute latencies for each link at this point in time */
17623949bee8SArchie Cobbs 	for (activeLinkNum = 0;
17633949bee8SArchie Cobbs 	    activeLinkNum < priv->numActiveLinks; activeLinkNum++) {
1764a9b3dca5SArchie Cobbs 		struct ng_ppp_link *alink;
17653949bee8SArchie Cobbs 		struct timeval diff;
17663949bee8SArchie Cobbs 		int xmitBytes;
17673949bee8SArchie Cobbs 
17683949bee8SArchie Cobbs 		/* Start with base latency value */
1769a9b3dca5SArchie Cobbs 		alink = &priv->links[priv->activeLinks[activeLinkNum]];
1770a9b3dca5SArchie Cobbs 		latency[activeLinkNum] = alink->conf.latency;
17713949bee8SArchie Cobbs 		sortByLatency[activeLinkNum] = activeLinkNum;	/* see below */
17723949bee8SArchie Cobbs 
17733949bee8SArchie Cobbs 		/* Any additional latency? */
1774a9b3dca5SArchie Cobbs 		if (alink->bytesInQueue == 0)
17753949bee8SArchie Cobbs 			continue;
17763949bee8SArchie Cobbs 
17773949bee8SArchie Cobbs 		/* Compute time delta since last write */
17783949bee8SArchie Cobbs 		diff = now;
1779a9b3dca5SArchie Cobbs 		timevalsub(&diff, &alink->lastWrite);
17803949bee8SArchie Cobbs 		if (now.tv_sec < 0 || diff.tv_sec >= 10) {	/* sanity */
1781a9b3dca5SArchie Cobbs 			alink->bytesInQueue = 0;
17823949bee8SArchie Cobbs 			continue;
17833949bee8SArchie Cobbs 		}
17843949bee8SArchie Cobbs 
17853949bee8SArchie Cobbs 		/* How many bytes could have transmitted since last write? */
1786a9b3dca5SArchie Cobbs 		xmitBytes = (alink->conf.bandwidth * diff.tv_sec)
1787a9b3dca5SArchie Cobbs 		    + (alink->conf.bandwidth * (diff.tv_usec / 1000)) / 100;
1788a9b3dca5SArchie Cobbs 		alink->bytesInQueue -= xmitBytes;
1789a9b3dca5SArchie Cobbs 		if (alink->bytesInQueue < 0)
1790a9b3dca5SArchie Cobbs 			alink->bytesInQueue = 0;
17913949bee8SArchie Cobbs 		else
17923949bee8SArchie Cobbs 			latency[activeLinkNum] +=
1793a9b3dca5SArchie Cobbs 			    (100 * alink->bytesInQueue) / alink->conf.bandwidth;
17943949bee8SArchie Cobbs 	}
17953949bee8SArchie Cobbs 
1796a9b3dca5SArchie Cobbs 	/* Sort active links by latency */
17973949bee8SArchie Cobbs 	compareLatencies = latency;
17983949bee8SArchie Cobbs 	qsort(sortByLatency,
17993949bee8SArchie Cobbs 	    priv->numActiveLinks, sizeof(*sortByLatency), ng_ppp_intcmp);
18003949bee8SArchie Cobbs 	compareLatencies = NULL;
18013949bee8SArchie Cobbs 
18023949bee8SArchie Cobbs 	/* Find the interval we need (add links in sortByLatency[] order) */
18033949bee8SArchie Cobbs 	for (numFragments = 1;
18043949bee8SArchie Cobbs 	    numFragments < priv->numActiveLinks; numFragments++) {
18053949bee8SArchie Cobbs 		for (total = i = 0; i < numFragments; i++) {
18063949bee8SArchie Cobbs 			int flowTime;
18073949bee8SArchie Cobbs 
18083949bee8SArchie Cobbs 			flowTime = latency[sortByLatency[numFragments]]
18093949bee8SArchie Cobbs 			    - latency[sortByLatency[i]];
1810a9b3dca5SArchie Cobbs 			total += ((flowTime * priv->links[
1811a9b3dca5SArchie Cobbs 			    priv->activeLinks[sortByLatency[i]]].conf.bandwidth)
18123949bee8SArchie Cobbs 			    	+ 99) / 100;
18133949bee8SArchie Cobbs 		}
18143949bee8SArchie Cobbs 		if (total >= len)
18153949bee8SArchie Cobbs 			break;
18163949bee8SArchie Cobbs 	}
18173949bee8SArchie Cobbs 
18183949bee8SArchie Cobbs 	/* Solve for t_0 in that interval */
18193949bee8SArchie Cobbs 	for (topSum = botSum = i = 0; i < numFragments; i++) {
1820a9b3dca5SArchie Cobbs 		int bw = priv->links[
1821a9b3dca5SArchie Cobbs 		    priv->activeLinks[sortByLatency[i]]].conf.bandwidth;
18223949bee8SArchie Cobbs 
18233949bee8SArchie Cobbs 		topSum += latency[sortByLatency[i]] * bw;	/* / 100 */
18243949bee8SArchie Cobbs 		botSum += bw;					/* / 100 */
18253949bee8SArchie Cobbs 	}
18263949bee8SArchie Cobbs 	t0 = ((len * 100) + topSum + botSum / 2) / botSum;
18273949bee8SArchie Cobbs 
18283949bee8SArchie Cobbs 	/* Compute f_i(t_0) all i */
18293949bee8SArchie Cobbs 	bzero(distrib, priv->numActiveLinks * sizeof(*distrib));
18303949bee8SArchie Cobbs 	for (total = i = 0; i < numFragments; i++) {
1831a9b3dca5SArchie Cobbs 		int bw = priv->links[
1832a9b3dca5SArchie Cobbs 		    priv->activeLinks[sortByLatency[i]]].conf.bandwidth;
18333949bee8SArchie Cobbs 
18343949bee8SArchie Cobbs 		distrib[sortByLatency[i]] =
18353949bee8SArchie Cobbs 		    (bw * (t0 - latency[sortByLatency[i]]) + 50) / 100;
18363949bee8SArchie Cobbs 		total += distrib[sortByLatency[i]];
18373949bee8SArchie Cobbs 	}
18383949bee8SArchie Cobbs 
1839fb1fc8abSArchie Cobbs 	/* Deal with any rounding error */
1840fb1fc8abSArchie Cobbs 	if (total < len) {
1841a9b3dca5SArchie Cobbs 		struct ng_ppp_link *fastLink =
1842a9b3dca5SArchie Cobbs 		    &priv->links[priv->activeLinks[sortByLatency[0]]];
18433949bee8SArchie Cobbs 		int fast = 0;
18443949bee8SArchie Cobbs 
1845fb1fc8abSArchie Cobbs 		/* Find the fastest link */
18463949bee8SArchie Cobbs 		for (i = 1; i < numFragments; i++) {
1847a9b3dca5SArchie Cobbs 			struct ng_ppp_link *const link =
1848a9b3dca5SArchie Cobbs 			    &priv->links[priv->activeLinks[sortByLatency[i]]];
1849a9b3dca5SArchie Cobbs 
1850a9b3dca5SArchie Cobbs 			if (link->conf.bandwidth > fastLink->conf.bandwidth) {
18513949bee8SArchie Cobbs 				fast = i;
1852a9b3dca5SArchie Cobbs 				fastLink = link;
1853a9b3dca5SArchie Cobbs 			}
18543949bee8SArchie Cobbs 		}
18553949bee8SArchie Cobbs 		distrib[sortByLatency[fast]] += len - total;
1856fb1fc8abSArchie Cobbs 	} else while (total > len) {
1857a9b3dca5SArchie Cobbs 		struct ng_ppp_link *slowLink =
1858a9b3dca5SArchie Cobbs 		    &priv->links[priv->activeLinks[sortByLatency[0]]];
1859fb1fc8abSArchie Cobbs 		int delta, slow = 0;
18603949bee8SArchie Cobbs 
1861fb1fc8abSArchie Cobbs 		/* Find the slowest link that still has bytes to remove */
1862fb1fc8abSArchie Cobbs 		for (i = 1; i < numFragments; i++) {
1863a9b3dca5SArchie Cobbs 			struct ng_ppp_link *const link =
1864a9b3dca5SArchie Cobbs 			    &priv->links[priv->activeLinks[sortByLatency[i]]];
1865a9b3dca5SArchie Cobbs 
1866fb1fc8abSArchie Cobbs 			if (distrib[sortByLatency[slow]] == 0
1867fb1fc8abSArchie Cobbs 			  || (distrib[sortByLatency[i]] > 0
1868a9b3dca5SArchie Cobbs 			    && link->conf.bandwidth <
1869a9b3dca5SArchie Cobbs 			      slowLink->conf.bandwidth)) {
1870fb1fc8abSArchie Cobbs 				slow = i;
1871a9b3dca5SArchie Cobbs 				slowLink = link;
1872a9b3dca5SArchie Cobbs 			}
1873fb1fc8abSArchie Cobbs 		}
1874fb1fc8abSArchie Cobbs 		delta = total - len;
1875fb1fc8abSArchie Cobbs 		if (delta > distrib[sortByLatency[slow]])
1876fb1fc8abSArchie Cobbs 			delta = distrib[sortByLatency[slow]];
1877fb1fc8abSArchie Cobbs 		distrib[sortByLatency[slow]] -= delta;
1878fb1fc8abSArchie Cobbs 		total -= delta;
18793949bee8SArchie Cobbs 	}
18803949bee8SArchie Cobbs }
18813949bee8SArchie Cobbs 
18823949bee8SArchie Cobbs /*
18833949bee8SArchie Cobbs  * Compare two integers
18843949bee8SArchie Cobbs  */
18853949bee8SArchie Cobbs static int
18863949bee8SArchie Cobbs ng_ppp_intcmp(const void *v1, const void *v2)
18873949bee8SArchie Cobbs {
18883949bee8SArchie Cobbs 	const int index1 = *((const int *) v1);
18893949bee8SArchie Cobbs 	const int index2 = *((const int *) v2);
18903949bee8SArchie Cobbs 
18913949bee8SArchie Cobbs 	return compareLatencies[index1] - compareLatencies[index2];
18923949bee8SArchie Cobbs }
18933949bee8SArchie Cobbs 
18943949bee8SArchie Cobbs /*
18953949bee8SArchie Cobbs  * Prepend a possibly compressed PPP protocol number in front of a frame
18963949bee8SArchie Cobbs  */
18973949bee8SArchie Cobbs static struct mbuf *
18983949bee8SArchie Cobbs ng_ppp_addproto(struct mbuf *m, int proto, int compOK)
18993949bee8SArchie Cobbs {
1900d690a6e7SArchie Cobbs 	if (compOK && PROT_COMPRESSABLE(proto)) {
1901d690a6e7SArchie Cobbs 		u_char pbyte = (u_char)proto;
19023949bee8SArchie Cobbs 
1903d690a6e7SArchie Cobbs 		return ng_ppp_prepend(m, &pbyte, 1);
1904d690a6e7SArchie Cobbs 	} else {
1905d690a6e7SArchie Cobbs 		u_int16_t pword = htons((u_int16_t)proto);
1906d690a6e7SArchie Cobbs 
1907d690a6e7SArchie Cobbs 		return ng_ppp_prepend(m, &pword, 2);
1908d690a6e7SArchie Cobbs 	}
1909d690a6e7SArchie Cobbs }
1910d690a6e7SArchie Cobbs 
1911d690a6e7SArchie Cobbs /*
1912d690a6e7SArchie Cobbs  * Prepend some bytes to an mbuf
1913d690a6e7SArchie Cobbs  */
1914d690a6e7SArchie Cobbs static struct mbuf *
1915d690a6e7SArchie Cobbs ng_ppp_prepend(struct mbuf *m, const void *buf, int len)
1916d690a6e7SArchie Cobbs {
1917d690a6e7SArchie Cobbs 	M_PREPEND(m, len, M_NOWAIT);
1918d690a6e7SArchie Cobbs 	if (m == NULL || (m->m_len < len && (m = m_pullup(m, len)) == NULL))
19194cf49a43SJulian Elischer 		return (NULL);
1920d690a6e7SArchie Cobbs 	bcopy(buf, mtod(m, u_char *), len);
19213949bee8SArchie Cobbs 	return (m);
19223949bee8SArchie Cobbs }
19233949bee8SArchie Cobbs 
19243949bee8SArchie Cobbs /*
19253949bee8SArchie Cobbs  * Update private information that is derived from other private information
19263949bee8SArchie Cobbs  */
19273949bee8SArchie Cobbs static void
19283949bee8SArchie Cobbs ng_ppp_update(node_p node, int newConf)
19293949bee8SArchie Cobbs {
193030400f03SJulian Elischer 	const priv_p priv = NG_NODE_PRIVATE(node);
19313949bee8SArchie Cobbs 	int i;
19323949bee8SArchie Cobbs 
19333949bee8SArchie Cobbs 	/* Update active status for VJ Compression */
19343949bee8SArchie Cobbs 	priv->vjCompHooked = priv->hooks[HOOK_INDEX_VJC_IP] != NULL
19353949bee8SArchie Cobbs 	    && priv->hooks[HOOK_INDEX_VJC_COMP] != NULL
19363949bee8SArchie Cobbs 	    && priv->hooks[HOOK_INDEX_VJC_UNCOMP] != NULL
19373949bee8SArchie Cobbs 	    && priv->hooks[HOOK_INDEX_VJC_VJIP] != NULL;
19383949bee8SArchie Cobbs 
19393949bee8SArchie Cobbs 	/* Increase latency for each link an amount equal to one MP header */
19403949bee8SArchie Cobbs 	if (newConf) {
19413949bee8SArchie Cobbs 		for (i = 0; i < NG_PPP_MAX_LINKS; i++) {
19423949bee8SArchie Cobbs 			int hdrBytes;
19433949bee8SArchie Cobbs 
1944a9b3dca5SArchie Cobbs 			hdrBytes = (priv->links[i].conf.enableACFComp ? 0 : 2)
1945a9b3dca5SArchie Cobbs 			    + (priv->links[i].conf.enableProtoComp ? 1 : 2)
19463949bee8SArchie Cobbs 			    + (priv->conf.xmitShortSeq ? 2 : 4);
1947a9b3dca5SArchie Cobbs 			priv->links[i].conf.latency +=
1948a9b3dca5SArchie Cobbs 			    ((hdrBytes * priv->links[i].conf.bandwidth) + 50)
19493949bee8SArchie Cobbs 				/ 100;
19503949bee8SArchie Cobbs 		}
19513949bee8SArchie Cobbs 	}
19523949bee8SArchie Cobbs 
19533949bee8SArchie Cobbs 	/* Update list of active links */
19543949bee8SArchie Cobbs 	bzero(&priv->activeLinks, sizeof(priv->activeLinks));
19553949bee8SArchie Cobbs 	priv->numActiveLinks = 0;
19563949bee8SArchie Cobbs 	priv->allLinksEqual = 1;
19573949bee8SArchie Cobbs 	for (i = 0; i < NG_PPP_MAX_LINKS; i++) {
1958a9b3dca5SArchie Cobbs 		struct ng_ppp_link *const link = &priv->links[i];
19590e11d0f3SArchie Cobbs 
1960a9b3dca5SArchie Cobbs 		/* Is link active? */
1961a9b3dca5SArchie Cobbs 		if (link->conf.enableLink && link->hook != NULL) {
1962a9b3dca5SArchie Cobbs 			struct ng_ppp_link *link0;
1963a9b3dca5SArchie Cobbs 
1964a9b3dca5SArchie Cobbs 			/* Add link to list of active links */
19653949bee8SArchie Cobbs 			priv->activeLinks[priv->numActiveLinks++] = i;
1966a9b3dca5SArchie Cobbs 			link0 = &priv->links[priv->activeLinks[0]];
1967a9b3dca5SArchie Cobbs 
1968a9b3dca5SArchie Cobbs 			/* Determine if all links are still equal */
1969a9b3dca5SArchie Cobbs 			if (link->conf.latency != link0->conf.latency
1970a9b3dca5SArchie Cobbs 			  || link->conf.bandwidth != link0->conf.bandwidth)
19713949bee8SArchie Cobbs 				priv->allLinksEqual = 0;
1972a9b3dca5SArchie Cobbs 
1973a9b3dca5SArchie Cobbs 			/* Initialize rec'd sequence number */
1974a9b3dca5SArchie Cobbs 			if (link->seq == MP_NOSEQ) {
1975a9b3dca5SArchie Cobbs 				link->seq = (link == link0) ?
1976a9b3dca5SArchie Cobbs 				    MP_INITIAL_SEQ : link0->seq;
19773949bee8SArchie Cobbs 			}
1978a9b3dca5SArchie Cobbs 		} else
1979a9b3dca5SArchie Cobbs 			link->seq = MP_NOSEQ;
19803949bee8SArchie Cobbs 	}
19813949bee8SArchie Cobbs 
1982a9b3dca5SArchie Cobbs 	/* Update MP state as multi-link is active or not */
1983a9b3dca5SArchie Cobbs 	if (priv->conf.enableMultilink && priv->numActiveLinks > 0)
1984a9b3dca5SArchie Cobbs 		ng_ppp_start_frag_timer(node);
1985a9b3dca5SArchie Cobbs 	else {
1986a9b3dca5SArchie Cobbs 		ng_ppp_stop_frag_timer(node);
1987a9b3dca5SArchie Cobbs 		ng_ppp_frag_reset(node);
1988a9b3dca5SArchie Cobbs 		priv->xseq = MP_INITIAL_SEQ;
1989a9b3dca5SArchie Cobbs 		priv->mseq = MP_INITIAL_SEQ;
1990a9b3dca5SArchie Cobbs 		for (i = 0; i < NG_PPP_MAX_LINKS; i++) {
1991a9b3dca5SArchie Cobbs 			struct ng_ppp_link *const link = &priv->links[i];
1992a9b3dca5SArchie Cobbs 
1993a9b3dca5SArchie Cobbs 			bzero(&link->lastWrite, sizeof(link->lastWrite));
1994a9b3dca5SArchie Cobbs 			link->bytesInQueue = 0;
1995a9b3dca5SArchie Cobbs 			link->seq = MP_NOSEQ;
1996a9b3dca5SArchie Cobbs 		}
19973949bee8SArchie Cobbs 	}
19983949bee8SArchie Cobbs }
19993949bee8SArchie Cobbs 
20003949bee8SArchie Cobbs /*
20013949bee8SArchie Cobbs  * Determine if a new configuration would represent a valid change
20023949bee8SArchie Cobbs  * from the current configuration and link activity status.
20033949bee8SArchie Cobbs  */
20043949bee8SArchie Cobbs static int
2005a9b3dca5SArchie Cobbs ng_ppp_config_valid(node_p node, const struct ng_ppp_node_conf *newConf)
20063949bee8SArchie Cobbs {
200730400f03SJulian Elischer 	const priv_p priv = NG_NODE_PRIVATE(node);
20083949bee8SArchie Cobbs 	int i, newNumLinksActive;
20093949bee8SArchie Cobbs 
20103949bee8SArchie Cobbs 	/* Check per-link config and count how many links would be active */
20113949bee8SArchie Cobbs 	for (newNumLinksActive = i = 0; i < NG_PPP_MAX_LINKS; i++) {
2012a9b3dca5SArchie Cobbs 		if (newConf->links[i].enableLink && priv->links[i].hook != NULL)
2013e149c4e2SArchie Cobbs 			newNumLinksActive++;
2014e149c4e2SArchie Cobbs 		if (!newConf->links[i].enableLink)
2015e149c4e2SArchie Cobbs 			continue;
20163949bee8SArchie Cobbs 		if (newConf->links[i].mru < MP_MIN_LINK_MRU)
20173949bee8SArchie Cobbs 			return (0);
20183949bee8SArchie Cobbs 		if (newConf->links[i].bandwidth == 0)
20193949bee8SArchie Cobbs 			return (0);
20203949bee8SArchie Cobbs 		if (newConf->links[i].bandwidth > NG_PPP_MAX_BANDWIDTH)
20213949bee8SArchie Cobbs 			return (0);
20223949bee8SArchie Cobbs 		if (newConf->links[i].latency > NG_PPP_MAX_LATENCY)
20233949bee8SArchie Cobbs 			return (0);
20243949bee8SArchie Cobbs 	}
20253949bee8SArchie Cobbs 
20263949bee8SArchie Cobbs 	/* Check bundle parameters */
2027a9b3dca5SArchie Cobbs 	if (newConf->bund.enableMultilink && newConf->bund.mrru < MP_MIN_MRRU)
20283949bee8SArchie Cobbs 		return (0);
20293949bee8SArchie Cobbs 
20303949bee8SArchie Cobbs 	/* Disallow changes to multi-link configuration while MP is active */
20313949bee8SArchie Cobbs 	if (priv->numActiveLinks > 0 && newNumLinksActive > 0) {
2032a9b3dca5SArchie Cobbs 		if (!priv->conf.enableMultilink
2033a9b3dca5SArchie Cobbs 				!= !newConf->bund.enableMultilink
2034a9b3dca5SArchie Cobbs 		    || !priv->conf.xmitShortSeq != !newConf->bund.xmitShortSeq
2035a9b3dca5SArchie Cobbs 		    || !priv->conf.recvShortSeq != !newConf->bund.recvShortSeq)
20363949bee8SArchie Cobbs 			return (0);
20373949bee8SArchie Cobbs 	}
20383949bee8SArchie Cobbs 
2039e149c4e2SArchie Cobbs 	/* At most one link can be active unless multi-link is enabled */
2040a9b3dca5SArchie Cobbs 	if (!newConf->bund.enableMultilink && newNumLinksActive > 1)
2041e149c4e2SArchie Cobbs 		return (0);
2042e149c4e2SArchie Cobbs 
2043e149c4e2SArchie Cobbs 	/* Configuration change would be valid */
20443949bee8SArchie Cobbs 	return (1);
20453949bee8SArchie Cobbs }
20463949bee8SArchie Cobbs 
20473949bee8SArchie Cobbs /*
20483949bee8SArchie Cobbs  * Free all entries in the fragment queue
20493949bee8SArchie Cobbs  */
20503949bee8SArchie Cobbs static void
2051a9b3dca5SArchie Cobbs ng_ppp_frag_reset(node_p node)
20523949bee8SArchie Cobbs {
205330400f03SJulian Elischer 	const priv_p priv = NG_NODE_PRIVATE(node);
20541e7a9f72SArchie Cobbs 	struct ng_ppp_frag *qent, *qnext;
20553949bee8SArchie Cobbs 
20565f90cac7SKirk McKusick 	for (qent = TAILQ_FIRST(&priv->frags); qent; qent = qnext) {
20575f90cac7SKirk McKusick 		qnext = TAILQ_NEXT(qent, f_qent);
2058069154d5SJulian Elischer 		NG_FREE_M(qent->data);
2059069154d5SJulian Elischer 		NG_FREE_META(qent->meta);
20609c8c302fSJulian Elischer 		FREE(qent, M_NETGRAPH_PPP);
20613949bee8SArchie Cobbs 	}
20625f90cac7SKirk McKusick 	TAILQ_INIT(&priv->frags);
2063a9b3dca5SArchie Cobbs 	priv->qlen = 0;
2064a9b3dca5SArchie Cobbs }
2065a9b3dca5SArchie Cobbs 
2066a9b3dca5SArchie Cobbs /*
2067a9b3dca5SArchie Cobbs  * Start fragment queue timer
2068a9b3dca5SArchie Cobbs  */
2069a9b3dca5SArchie Cobbs static void
2070a9b3dca5SArchie Cobbs ng_ppp_start_frag_timer(node_p node)
2071a9b3dca5SArchie Cobbs {
207230400f03SJulian Elischer 	const priv_p priv = NG_NODE_PRIVATE(node);
2073a9b3dca5SArchie Cobbs 
2074a9b3dca5SArchie Cobbs 	if (!priv->timerActive) {
2075a9b3dca5SArchie Cobbs 		priv->fragTimer = timeout(ng_ppp_frag_timeout,
2076a9b3dca5SArchie Cobbs 		    node, MP_FRAGTIMER_INTERVAL);
2077a9b3dca5SArchie Cobbs 		priv->timerActive = 1;
207830400f03SJulian Elischer 		NG_NODE_REF(node);
2079a9b3dca5SArchie Cobbs 	}
2080a9b3dca5SArchie Cobbs }
2081a9b3dca5SArchie Cobbs 
2082a9b3dca5SArchie Cobbs /*
2083a9b3dca5SArchie Cobbs  * Stop fragment queue timer
2084a9b3dca5SArchie Cobbs  */
2085a9b3dca5SArchie Cobbs static void
2086a9b3dca5SArchie Cobbs ng_ppp_stop_frag_timer(node_p node)
2087a9b3dca5SArchie Cobbs {
208830400f03SJulian Elischer 	const priv_p priv = NG_NODE_PRIVATE(node);
2089a9b3dca5SArchie Cobbs 
2090a9b3dca5SArchie Cobbs 	if (priv->timerActive) {
2091a9b3dca5SArchie Cobbs 		untimeout(ng_ppp_frag_timeout, node, priv->fragTimer);
2092a9b3dca5SArchie Cobbs 		priv->timerActive = 0;
209330400f03SJulian Elischer 		KASSERT(node->nd_refs > 1,
20946e551fb6SDavid E. O'Brien 		    ("%s: nd_refs=%d", __func__, node->nd_refs));
209530400f03SJulian Elischer 		NG_NODE_UNREF(node);
2096a9b3dca5SArchie Cobbs 	}
20974cf49a43SJulian Elischer }
20984cf49a43SJulian Elischer 
2099