1c398230bSWarner Losh /*-
2901fadf7SArchie Cobbs * Copyright (c) 2001-2002 Packet Design, LLC.
3901fadf7SArchie Cobbs * All rights reserved.
4901fadf7SArchie Cobbs *
5901fadf7SArchie Cobbs * Subject to the following obligations and disclaimer of warranty,
6901fadf7SArchie Cobbs * use and redistribution of this software, in source or object code
7901fadf7SArchie Cobbs * forms, with or without modifications are expressly permitted by
8901fadf7SArchie Cobbs * Packet Design; provided, however, that:
9901fadf7SArchie Cobbs *
10901fadf7SArchie Cobbs * (i) Any and all reproductions of the source or object code
11901fadf7SArchie Cobbs * must include the copyright notice above and the following
12901fadf7SArchie Cobbs * disclaimer of warranties; and
13901fadf7SArchie Cobbs * (ii) No rights are granted, in any manner or form, to use
14901fadf7SArchie Cobbs * Packet Design trademarks, including the mark "PACKET DESIGN"
15901fadf7SArchie Cobbs * on advertising, endorsements, or otherwise except as such
16901fadf7SArchie Cobbs * appears in the above copyright notice or in the software.
17901fadf7SArchie Cobbs *
18901fadf7SArchie Cobbs * THIS SOFTWARE IS BEING PROVIDED BY PACKET DESIGN "AS IS", AND
19901fadf7SArchie Cobbs * TO THE MAXIMUM EXTENT PERMITTED BY LAW, PACKET DESIGN MAKES NO
20901fadf7SArchie Cobbs * REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, REGARDING
21901fadf7SArchie Cobbs * THIS SOFTWARE, INCLUDING WITHOUT LIMITATION, ANY AND ALL IMPLIED
22901fadf7SArchie Cobbs * WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE,
23901fadf7SArchie Cobbs * OR NON-INFRINGEMENT. PACKET DESIGN DOES NOT WARRANT, GUARANTEE,
24901fadf7SArchie Cobbs * OR MAKE ANY REPRESENTATIONS REGARDING THE USE OF, OR THE RESULTS
25901fadf7SArchie Cobbs * OF THE USE OF THIS SOFTWARE IN TERMS OF ITS CORRECTNESS, ACCURACY,
26901fadf7SArchie Cobbs * RELIABILITY OR OTHERWISE. IN NO EVENT SHALL PACKET DESIGN BE
27901fadf7SArchie Cobbs * LIABLE FOR ANY DAMAGES RESULTING FROM OR ARISING OUT OF ANY USE
28901fadf7SArchie Cobbs * OF THIS SOFTWARE, INCLUDING WITHOUT LIMITATION, ANY DIRECT,
29901fadf7SArchie Cobbs * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, PUNITIVE, OR CONSEQUENTIAL
30901fadf7SArchie Cobbs * DAMAGES, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES, LOSS OF
31901fadf7SArchie Cobbs * USE, DATA OR PROFITS, HOWEVER CAUSED AND UNDER ANY THEORY OF
32901fadf7SArchie Cobbs * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
33901fadf7SArchie Cobbs * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
34901fadf7SArchie Cobbs * THE USE OF THIS SOFTWARE, EVEN IF PACKET DESIGN IS ADVISED OF
35901fadf7SArchie Cobbs * THE POSSIBILITY OF SUCH DAMAGE.
36901fadf7SArchie Cobbs *
37901fadf7SArchie Cobbs * Author: Archie Cobbs <archie@freebsd.org>
38901fadf7SArchie Cobbs */
39901fadf7SArchie Cobbs
40901fadf7SArchie Cobbs /*
41901fadf7SArchie Cobbs * L2TP netgraph node type.
42901fadf7SArchie Cobbs *
43901fadf7SArchie Cobbs * This node type implements the lower layer of the
44901fadf7SArchie Cobbs * L2TP protocol as specified in RFC 2661.
45901fadf7SArchie Cobbs */
46901fadf7SArchie Cobbs
47901fadf7SArchie Cobbs #include <sys/param.h>
48901fadf7SArchie Cobbs #include <sys/systm.h>
49901fadf7SArchie Cobbs #include <sys/kernel.h>
50901fadf7SArchie Cobbs #include <sys/time.h>
51901fadf7SArchie Cobbs #include <sys/conf.h>
52901fadf7SArchie Cobbs #include <sys/mbuf.h>
53901fadf7SArchie Cobbs #include <sys/malloc.h>
54901fadf7SArchie Cobbs #include <sys/errno.h>
55ae04d304SGleb Smirnoff #include <sys/epoch.h>
5686fea6beSBosko Milekic #include <sys/libkern.h>
57901fadf7SArchie Cobbs
58ae04d304SGleb Smirnoff #include <net/vnet.h>
59ae04d304SGleb Smirnoff
60901fadf7SArchie Cobbs #include <netgraph/ng_message.h>
61901fadf7SArchie Cobbs #include <netgraph/netgraph.h>
62901fadf7SArchie Cobbs #include <netgraph/ng_parse.h>
63901fadf7SArchie Cobbs #include <netgraph/ng_l2tp.h>
64901fadf7SArchie Cobbs
65901fadf7SArchie Cobbs #ifdef NG_SEPARATE_MALLOC
66d745c852SEd Schouten static MALLOC_DEFINE(M_NETGRAPH_L2TP, "netgraph_l2tp", "netgraph l2tp node");
67901fadf7SArchie Cobbs #else
68901fadf7SArchie Cobbs #define M_NETGRAPH_L2TP M_NETGRAPH
69901fadf7SArchie Cobbs #endif
70901fadf7SArchie Cobbs
71901fadf7SArchie Cobbs /* L2TP header format (first 2 bytes only) */
72901fadf7SArchie Cobbs #define L2TP_HDR_CTRL 0x8000 /* control packet */
73901fadf7SArchie Cobbs #define L2TP_HDR_LEN 0x4000 /* has length field */
74901fadf7SArchie Cobbs #define L2TP_HDR_SEQ 0x0800 /* has ns, nr fields */
75901fadf7SArchie Cobbs #define L2TP_HDR_OFF 0x0200 /* has offset field */
76901fadf7SArchie Cobbs #define L2TP_HDR_PRIO 0x0100 /* give priority */
77901fadf7SArchie Cobbs #define L2TP_HDR_VERS_MASK 0x000f /* version field mask */
78901fadf7SArchie Cobbs #define L2TP_HDR_VERSION 0x0002 /* version field */
79901fadf7SArchie Cobbs
80901fadf7SArchie Cobbs /* Bits that must be zero or one in first two bytes of header */
81901fadf7SArchie Cobbs #define L2TP_CTRL_0BITS 0x030d /* ctrl: must be 0 */
82901fadf7SArchie Cobbs #define L2TP_CTRL_1BITS 0xc802 /* ctrl: must be 1 */
83901fadf7SArchie Cobbs #define L2TP_DATA_0BITS 0x800d /* data: must be 0 */
84901fadf7SArchie Cobbs #define L2TP_DATA_1BITS 0x0002 /* data: must be 1 */
85901fadf7SArchie Cobbs
86901fadf7SArchie Cobbs /* Standard xmit ctrl and data header bits */
87901fadf7SArchie Cobbs #define L2TP_CTRL_HDR (L2TP_HDR_CTRL | L2TP_HDR_LEN \
88901fadf7SArchie Cobbs | L2TP_HDR_SEQ | L2TP_HDR_VERSION)
89901fadf7SArchie Cobbs #define L2TP_DATA_HDR (L2TP_HDR_VERSION) /* optional: len, seq */
90901fadf7SArchie Cobbs
91901fadf7SArchie Cobbs /* Some hard coded values */
9252b9b77fSAlexander Motin #define L2TP_MAX_XWIN 128 /* my max xmit window */
93901fadf7SArchie Cobbs #define L2TP_MAX_REXMIT 5 /* default max rexmit */
94901fadf7SArchie Cobbs #define L2TP_MAX_REXMIT_TO 30 /* default rexmit to */
95901fadf7SArchie Cobbs #define L2TP_DELAYED_ACK ((hz + 19) / 20) /* delayed ack: 50 ms */
96901fadf7SArchie Cobbs
97901fadf7SArchie Cobbs /* Default data sequence number configuration for new sessions */
98901fadf7SArchie Cobbs #define L2TP_CONTROL_DSEQ 1 /* we are the lns */
99901fadf7SArchie Cobbs #define L2TP_ENABLE_DSEQ 1 /* enable data seq # */
100901fadf7SArchie Cobbs
101901fadf7SArchie Cobbs /* Compare sequence numbers using circular math */
102e5d72e64SGleb Smirnoff #define L2TP_SEQ_DIFF(x, y) ((int16_t)((x) - (y)))
103901fadf7SArchie Cobbs
1044e759763SAlexander Motin #define SESSHASHSIZE 0x0020
1054e759763SAlexander Motin #define SESSHASH(x) (((x) ^ ((x) >> 8)) & (SESSHASHSIZE - 1))
1064e759763SAlexander Motin
1074e759763SAlexander Motin /* Hook private data (data session hooks only) */
1084e759763SAlexander Motin struct ng_l2tp_hook_private {
1094e759763SAlexander Motin struct ng_l2tp_sess_config conf; /* hook/session config */
1104e759763SAlexander Motin struct ng_l2tp_session_stats stats; /* per sessions statistics */
1114e759763SAlexander Motin hook_p hook; /* hook reference */
1124e759763SAlexander Motin u_int16_t ns; /* data ns sequence number */
1134e759763SAlexander Motin u_int16_t nr; /* data nr sequence number */
1144e759763SAlexander Motin LIST_ENTRY(ng_l2tp_hook_private) sessions;
1154e759763SAlexander Motin };
1164e759763SAlexander Motin typedef struct ng_l2tp_hook_private *hookpriv_p;
1174e759763SAlexander Motin
118901fadf7SArchie Cobbs /*
119901fadf7SArchie Cobbs * Sequence number state
120901fadf7SArchie Cobbs *
121901fadf7SArchie Cobbs * Invariants:
122901fadf7SArchie Cobbs * - If cwnd < ssth, we're doing slow start, otherwise congestion avoidance
123901fadf7SArchie Cobbs * - The number of unacknowledged xmit packets is (ns - rack) <= seq->wmax
124901fadf7SArchie Cobbs * - The first (ns - rack) mbuf's in xwin[] array are copies of these
125901fadf7SArchie Cobbs * unacknowledged packets; the remainder of xwin[] consists first of
126901fadf7SArchie Cobbs * zero or more further untransmitted packets in the transmit queue
127901fadf7SArchie Cobbs * - We try to keep the peer's receive window as full as possible.
128901fadf7SArchie Cobbs * Therefore, (i < cwnd && xwin[i] != NULL) implies (ns - rack) > i.
129901fadf7SArchie Cobbs * - rack_timer is running iff (ns - rack) > 0 (unack'd xmit'd pkts)
130901fadf7SArchie Cobbs * - If xack != nr, there are unacknowledged recv packet(s) (delayed ack)
131901fadf7SArchie Cobbs * - xack_timer is running iff xack != nr (unack'd rec'd pkts)
132901fadf7SArchie Cobbs */
133901fadf7SArchie Cobbs struct l2tp_seq {
134901fadf7SArchie Cobbs u_int16_t ns; /* next xmit seq we send */
135901fadf7SArchie Cobbs u_int16_t nr; /* next recv seq we expect */
136af63939cSAlexander Motin u_int16_t inproc; /* packet is in processing */
137901fadf7SArchie Cobbs u_int16_t rack; /* last 'nr' we rec'd */
138901fadf7SArchie Cobbs u_int16_t xack; /* last 'nr' we sent */
139901fadf7SArchie Cobbs u_int16_t wmax; /* peer's max recv window */
140901fadf7SArchie Cobbs u_int16_t cwnd; /* current congestion window */
141901fadf7SArchie Cobbs u_int16_t ssth; /* slow start threshold */
142901fadf7SArchie Cobbs u_int16_t acks; /* # consecutive acks rec'd */
143901fadf7SArchie Cobbs u_int16_t rexmits; /* # retransmits sent */
144901fadf7SArchie Cobbs struct callout rack_timer; /* retransmit timer */
145901fadf7SArchie Cobbs struct callout xack_timer; /* delayed ack timer */
146901fadf7SArchie Cobbs struct mbuf *xwin[L2TP_MAX_XWIN]; /* transmit window */
147702f9895SAlexander Motin struct mtx mtx; /* seq mutex */
148901fadf7SArchie Cobbs };
149901fadf7SArchie Cobbs
150901fadf7SArchie Cobbs /* Node private data */
151901fadf7SArchie Cobbs struct ng_l2tp_private {
152901fadf7SArchie Cobbs node_p node; /* back pointer to node */
153901fadf7SArchie Cobbs hook_p ctrl; /* hook to upper layers */
154901fadf7SArchie Cobbs hook_p lower; /* hook to lower layers */
155901fadf7SArchie Cobbs struct ng_l2tp_config conf; /* node configuration */
156901fadf7SArchie Cobbs struct ng_l2tp_stats stats; /* node statistics */
157901fadf7SArchie Cobbs struct l2tp_seq seq; /* ctrl sequence number state */
158901fadf7SArchie Cobbs ng_ID_t ftarget; /* failure message target */
1594e759763SAlexander Motin LIST_HEAD(, ng_l2tp_hook_private) sesshash[SESSHASHSIZE];
160901fadf7SArchie Cobbs };
161901fadf7SArchie Cobbs typedef struct ng_l2tp_private *priv_p;
162901fadf7SArchie Cobbs
163901fadf7SArchie Cobbs /* Netgraph node methods */
164901fadf7SArchie Cobbs static ng_constructor_t ng_l2tp_constructor;
165901fadf7SArchie Cobbs static ng_rcvmsg_t ng_l2tp_rcvmsg;
166901fadf7SArchie Cobbs static ng_shutdown_t ng_l2tp_shutdown;
167901fadf7SArchie Cobbs static ng_newhook_t ng_l2tp_newhook;
168901fadf7SArchie Cobbs static ng_rcvdata_t ng_l2tp_rcvdata;
169bf741e4dSAlexander Motin static ng_rcvdata_t ng_l2tp_rcvdata_lower;
170bf741e4dSAlexander Motin static ng_rcvdata_t ng_l2tp_rcvdata_ctrl;
171901fadf7SArchie Cobbs static ng_disconnect_t ng_l2tp_disconnect;
172901fadf7SArchie Cobbs
173901fadf7SArchie Cobbs /* Internal functions */
174901fadf7SArchie Cobbs static int ng_l2tp_xmit_ctrl(priv_p priv, struct mbuf *m, u_int16_t ns);
175901fadf7SArchie Cobbs
176901fadf7SArchie Cobbs static void ng_l2tp_seq_init(priv_p priv);
1771e031324SBjoern A. Zeeb static int ng_l2tp_seq_set(priv_p priv,
1781e031324SBjoern A. Zeeb const struct ng_l2tp_seq_config *conf);
179901fadf7SArchie Cobbs static int ng_l2tp_seq_adjust(priv_p priv,
180901fadf7SArchie Cobbs const struct ng_l2tp_config *conf);
181901fadf7SArchie Cobbs static void ng_l2tp_seq_reset(priv_p priv);
182901fadf7SArchie Cobbs static void ng_l2tp_seq_failure(priv_p priv);
183901fadf7SArchie Cobbs static void ng_l2tp_seq_recv_nr(priv_p priv, u_int16_t nr);
184ae04d304SGleb Smirnoff static void ng_l2tp_seq_xack_timeout(void *);
185ae04d304SGleb Smirnoff static void ng_l2tp_seq_rack_timeout(void *);
186901fadf7SArchie Cobbs
1874e759763SAlexander Motin static hookpriv_p ng_l2tp_find_session(priv_p privp, u_int16_t sid);
188901fadf7SArchie Cobbs static ng_fn_eachhook ng_l2tp_reset_session;
189901fadf7SArchie Cobbs
1901e031324SBjoern A. Zeeb /* Parse type for struct ng_l2tp_seq_config. */
1911e031324SBjoern A. Zeeb static const struct ng_parse_struct_field
1921e031324SBjoern A. Zeeb ng_l2tp_seq_config_fields[] = NG_L2TP_SEQ_CONFIG_TYPE_INFO;
1931e031324SBjoern A. Zeeb static const struct ng_parse_type ng_l2tp_seq_config_type = {
1941e031324SBjoern A. Zeeb &ng_parse_struct_type,
1951e031324SBjoern A. Zeeb &ng_l2tp_seq_config_fields
1961e031324SBjoern A. Zeeb };
1971e031324SBjoern A. Zeeb
198901fadf7SArchie Cobbs /* Parse type for struct ng_l2tp_config */
199901fadf7SArchie Cobbs static const struct ng_parse_struct_field
200901fadf7SArchie Cobbs ng_l2tp_config_type_fields[] = NG_L2TP_CONFIG_TYPE_INFO;
201901fadf7SArchie Cobbs static const struct ng_parse_type ng_l2tp_config_type = {
202901fadf7SArchie Cobbs &ng_parse_struct_type,
203901fadf7SArchie Cobbs &ng_l2tp_config_type_fields,
204901fadf7SArchie Cobbs };
205901fadf7SArchie Cobbs
206901fadf7SArchie Cobbs /* Parse type for struct ng_l2tp_sess_config */
207901fadf7SArchie Cobbs static const struct ng_parse_struct_field
208901fadf7SArchie Cobbs ng_l2tp_sess_config_type_fields[] = NG_L2TP_SESS_CONFIG_TYPE_INFO;
209901fadf7SArchie Cobbs static const struct ng_parse_type ng_l2tp_sess_config_type = {
210901fadf7SArchie Cobbs &ng_parse_struct_type,
211901fadf7SArchie Cobbs &ng_l2tp_sess_config_type_fields,
212901fadf7SArchie Cobbs };
213901fadf7SArchie Cobbs
214901fadf7SArchie Cobbs /* Parse type for struct ng_l2tp_stats */
215901fadf7SArchie Cobbs static const struct ng_parse_struct_field
216901fadf7SArchie Cobbs ng_l2tp_stats_type_fields[] = NG_L2TP_STATS_TYPE_INFO;
2172c9027fcSArchie Cobbs static const struct ng_parse_type ng_l2tp_stats_type = {
218901fadf7SArchie Cobbs &ng_parse_struct_type,
219901fadf7SArchie Cobbs &ng_l2tp_stats_type_fields
220901fadf7SArchie Cobbs };
221901fadf7SArchie Cobbs
2224807330cSBjoern A. Zeeb /* Parse type for struct ng_l2tp_session_stats. */
2234807330cSBjoern A. Zeeb static const struct ng_parse_struct_field
2244807330cSBjoern A. Zeeb ng_l2tp_session_stats_type_fields[] = NG_L2TP_SESSION_STATS_TYPE_INFO;
2254807330cSBjoern A. Zeeb static const struct ng_parse_type ng_l2tp_session_stats_type = {
2264807330cSBjoern A. Zeeb &ng_parse_struct_type,
2274807330cSBjoern A. Zeeb &ng_l2tp_session_stats_type_fields
2284807330cSBjoern A. Zeeb };
2294807330cSBjoern A. Zeeb
230901fadf7SArchie Cobbs /* List of commands and how to convert arguments to/from ASCII */
231901fadf7SArchie Cobbs static const struct ng_cmdlist ng_l2tp_cmdlist[] = {
232901fadf7SArchie Cobbs {
233901fadf7SArchie Cobbs NGM_L2TP_COOKIE,
234901fadf7SArchie Cobbs NGM_L2TP_SET_CONFIG,
235901fadf7SArchie Cobbs "setconfig",
236901fadf7SArchie Cobbs &ng_l2tp_config_type,
237901fadf7SArchie Cobbs NULL
238901fadf7SArchie Cobbs },
239901fadf7SArchie Cobbs {
240901fadf7SArchie Cobbs NGM_L2TP_COOKIE,
241901fadf7SArchie Cobbs NGM_L2TP_GET_CONFIG,
242901fadf7SArchie Cobbs "getconfig",
243901fadf7SArchie Cobbs NULL,
244901fadf7SArchie Cobbs &ng_l2tp_config_type
245901fadf7SArchie Cobbs },
246901fadf7SArchie Cobbs {
247901fadf7SArchie Cobbs NGM_L2TP_COOKIE,
248901fadf7SArchie Cobbs NGM_L2TP_SET_SESS_CONFIG,
249901fadf7SArchie Cobbs "setsessconfig",
250901fadf7SArchie Cobbs &ng_l2tp_sess_config_type,
251901fadf7SArchie Cobbs NULL
252901fadf7SArchie Cobbs },
253901fadf7SArchie Cobbs {
254901fadf7SArchie Cobbs NGM_L2TP_COOKIE,
255901fadf7SArchie Cobbs NGM_L2TP_GET_SESS_CONFIG,
256901fadf7SArchie Cobbs "getsessconfig",
257901fadf7SArchie Cobbs &ng_parse_hint16_type,
258901fadf7SArchie Cobbs &ng_l2tp_sess_config_type
259901fadf7SArchie Cobbs },
260901fadf7SArchie Cobbs {
261901fadf7SArchie Cobbs NGM_L2TP_COOKIE,
262901fadf7SArchie Cobbs NGM_L2TP_GET_STATS,
263901fadf7SArchie Cobbs "getstats",
264901fadf7SArchie Cobbs NULL,
2652c9027fcSArchie Cobbs &ng_l2tp_stats_type
266901fadf7SArchie Cobbs },
267901fadf7SArchie Cobbs {
268901fadf7SArchie Cobbs NGM_L2TP_COOKIE,
269901fadf7SArchie Cobbs NGM_L2TP_CLR_STATS,
270901fadf7SArchie Cobbs "clrstats",
271901fadf7SArchie Cobbs NULL,
272901fadf7SArchie Cobbs NULL
273901fadf7SArchie Cobbs },
274901fadf7SArchie Cobbs {
275901fadf7SArchie Cobbs NGM_L2TP_COOKIE,
276901fadf7SArchie Cobbs NGM_L2TP_GETCLR_STATS,
277901fadf7SArchie Cobbs "getclrstats",
278901fadf7SArchie Cobbs NULL,
2792c9027fcSArchie Cobbs &ng_l2tp_stats_type
280901fadf7SArchie Cobbs },
281901fadf7SArchie Cobbs {
282901fadf7SArchie Cobbs NGM_L2TP_COOKIE,
2834807330cSBjoern A. Zeeb NGM_L2TP_GET_SESSION_STATS,
2844807330cSBjoern A. Zeeb "getsessstats",
2854807330cSBjoern A. Zeeb &ng_parse_int16_type,
2864807330cSBjoern A. Zeeb &ng_l2tp_session_stats_type
2874807330cSBjoern A. Zeeb },
2884807330cSBjoern A. Zeeb {
2894807330cSBjoern A. Zeeb NGM_L2TP_COOKIE,
2904807330cSBjoern A. Zeeb NGM_L2TP_CLR_SESSION_STATS,
2914807330cSBjoern A. Zeeb "clrsessstats",
2924807330cSBjoern A. Zeeb &ng_parse_int16_type,
2934807330cSBjoern A. Zeeb NULL
2944807330cSBjoern A. Zeeb },
2954807330cSBjoern A. Zeeb {
2964807330cSBjoern A. Zeeb NGM_L2TP_COOKIE,
2974807330cSBjoern A. Zeeb NGM_L2TP_GETCLR_SESSION_STATS,
2984807330cSBjoern A. Zeeb "getclrsessstats",
2994807330cSBjoern A. Zeeb &ng_parse_int16_type,
3004807330cSBjoern A. Zeeb &ng_l2tp_session_stats_type
3014807330cSBjoern A. Zeeb },
3024807330cSBjoern A. Zeeb {
3034807330cSBjoern A. Zeeb NGM_L2TP_COOKIE,
304901fadf7SArchie Cobbs NGM_L2TP_ACK_FAILURE,
305901fadf7SArchie Cobbs "ackfailure",
306901fadf7SArchie Cobbs NULL,
307901fadf7SArchie Cobbs NULL
308901fadf7SArchie Cobbs },
3091e031324SBjoern A. Zeeb {
3101e031324SBjoern A. Zeeb NGM_L2TP_COOKIE,
3111e031324SBjoern A. Zeeb NGM_L2TP_SET_SEQ,
3121e031324SBjoern A. Zeeb "setsequence",
3131e031324SBjoern A. Zeeb &ng_l2tp_seq_config_type,
3141e031324SBjoern A. Zeeb NULL
3151e031324SBjoern A. Zeeb },
316901fadf7SArchie Cobbs { 0 }
317901fadf7SArchie Cobbs };
318901fadf7SArchie Cobbs
319901fadf7SArchie Cobbs /* Node type descriptor */
320901fadf7SArchie Cobbs static struct ng_type ng_l2tp_typestruct = {
321f8aae777SJulian Elischer .version = NG_ABI_VERSION,
322f8aae777SJulian Elischer .name = NG_L2TP_NODE_TYPE,
323f8aae777SJulian Elischer .constructor = ng_l2tp_constructor,
324f8aae777SJulian Elischer .rcvmsg = ng_l2tp_rcvmsg,
325f8aae777SJulian Elischer .shutdown = ng_l2tp_shutdown,
326f8aae777SJulian Elischer .newhook = ng_l2tp_newhook,
327f8aae777SJulian Elischer .rcvdata = ng_l2tp_rcvdata,
328f8aae777SJulian Elischer .disconnect = ng_l2tp_disconnect,
329f8aae777SJulian Elischer .cmdlist = ng_l2tp_cmdlist,
330901fadf7SArchie Cobbs };
331901fadf7SArchie Cobbs NETGRAPH_INIT(l2tp, &ng_l2tp_typestruct);
332901fadf7SArchie Cobbs
3330a76c63dSGleb Smirnoff /* Sequence number state locking & sanity checking */
334901fadf7SArchie Cobbs #ifdef INVARIANTS
3350a76c63dSGleb Smirnoff static void ng_l2tp_seq_check(struct l2tp_seq *seq);
3360a76c63dSGleb Smirnoff #define SEQ_LOCK(seq) do { \
3370a76c63dSGleb Smirnoff mtx_lock(&(seq)->mtx); \
3380a76c63dSGleb Smirnoff ng_l2tp_seq_check(seq); \
3390a76c63dSGleb Smirnoff } while (0)
3400a76c63dSGleb Smirnoff #define SEQ_UNLOCK(seq) do { \
3410a76c63dSGleb Smirnoff ng_l2tp_seq_check(seq); \
3420a76c63dSGleb Smirnoff mtx_unlock(&(seq)->mtx); \
3430a76c63dSGleb Smirnoff } while (0)
344901fadf7SArchie Cobbs #else
3450a76c63dSGleb Smirnoff #define SEQ_LOCK(seq) mtx_lock(&(seq)->mtx)
3460a76c63dSGleb Smirnoff #define SEQ_UNLOCK(seq) mtx_unlock(&(seq)->mtx)
347901fadf7SArchie Cobbs #endif
3480a76c63dSGleb Smirnoff #define SEQ_LOCK_ASSERT(seq) mtx_assert(&(seq)->mtx, MA_OWNED)
349901fadf7SArchie Cobbs
350901fadf7SArchie Cobbs /* Whether to use m_copypacket() or m_dup() */
351901fadf7SArchie Cobbs #define L2TP_COPY_MBUF m_copypacket
352901fadf7SArchie Cobbs
353bf741e4dSAlexander Motin #define ERROUT(x) do { error = (x); goto done; } while (0)
354bf741e4dSAlexander Motin
355901fadf7SArchie Cobbs /************************************************************************
356901fadf7SArchie Cobbs NETGRAPH NODE STUFF
357901fadf7SArchie Cobbs ************************************************************************/
358901fadf7SArchie Cobbs
359901fadf7SArchie Cobbs /*
360901fadf7SArchie Cobbs * Node type constructor
361901fadf7SArchie Cobbs */
362901fadf7SArchie Cobbs static int
ng_l2tp_constructor(node_p node)363901fadf7SArchie Cobbs ng_l2tp_constructor(node_p node)
364901fadf7SArchie Cobbs {
365901fadf7SArchie Cobbs priv_p priv;
3664e759763SAlexander Motin int i;
367901fadf7SArchie Cobbs
368901fadf7SArchie Cobbs /* Allocate private structure */
369674d86bfSGleb Smirnoff priv = malloc(sizeof(*priv), M_NETGRAPH_L2TP, M_WAITOK | M_ZERO);
370901fadf7SArchie Cobbs NG_NODE_SET_PRIVATE(node, priv);
371901fadf7SArchie Cobbs priv->node = node;
372901fadf7SArchie Cobbs
373901fadf7SArchie Cobbs /* Apply a semi-reasonable default configuration */
374901fadf7SArchie Cobbs priv->conf.peer_win = 1;
375901fadf7SArchie Cobbs priv->conf.rexmit_max = L2TP_MAX_REXMIT;
376901fadf7SArchie Cobbs priv->conf.rexmit_max_to = L2TP_MAX_REXMIT_TO;
377901fadf7SArchie Cobbs
378901fadf7SArchie Cobbs /* Initialize sequence number state */
379901fadf7SArchie Cobbs ng_l2tp_seq_init(priv);
380901fadf7SArchie Cobbs
3814e759763SAlexander Motin for (i = 0; i < SESSHASHSIZE; i++)
3824e759763SAlexander Motin LIST_INIT(&priv->sesshash[i]);
3834e759763SAlexander Motin
384901fadf7SArchie Cobbs /* Done */
385901fadf7SArchie Cobbs return (0);
386901fadf7SArchie Cobbs }
387901fadf7SArchie Cobbs
388901fadf7SArchie Cobbs /*
389901fadf7SArchie Cobbs * Give our OK for a hook to be added.
390901fadf7SArchie Cobbs */
391901fadf7SArchie Cobbs static int
ng_l2tp_newhook(node_p node,hook_p hook,const char * name)392901fadf7SArchie Cobbs ng_l2tp_newhook(node_p node, hook_p hook, const char *name)
393901fadf7SArchie Cobbs {
394901fadf7SArchie Cobbs const priv_p priv = NG_NODE_PRIVATE(node);
395901fadf7SArchie Cobbs
396901fadf7SArchie Cobbs /* Check hook name */
397901fadf7SArchie Cobbs if (strcmp(name, NG_L2TP_HOOK_CTRL) == 0) {
398901fadf7SArchie Cobbs if (priv->ctrl != NULL)
399901fadf7SArchie Cobbs return (EISCONN);
400901fadf7SArchie Cobbs priv->ctrl = hook;
401bf741e4dSAlexander Motin NG_HOOK_SET_RCVDATA(hook, ng_l2tp_rcvdata_ctrl);
402901fadf7SArchie Cobbs } else if (strcmp(name, NG_L2TP_HOOK_LOWER) == 0) {
403901fadf7SArchie Cobbs if (priv->lower != NULL)
404901fadf7SArchie Cobbs return (EISCONN);
405901fadf7SArchie Cobbs priv->lower = hook;
406bf741e4dSAlexander Motin NG_HOOK_SET_RCVDATA(hook, ng_l2tp_rcvdata_lower);
407901fadf7SArchie Cobbs } else {
408901fadf7SArchie Cobbs static const char hexdig[16] = "0123456789abcdef";
409901fadf7SArchie Cobbs u_int16_t session_id;
410901fadf7SArchie Cobbs hookpriv_p hpriv;
4114e759763SAlexander Motin uint16_t hash;
412901fadf7SArchie Cobbs const char *hex;
413901fadf7SArchie Cobbs int i;
414901fadf7SArchie Cobbs int j;
415901fadf7SArchie Cobbs
416901fadf7SArchie Cobbs /* Parse hook name to get session ID */
417901fadf7SArchie Cobbs if (strncmp(name, NG_L2TP_HOOK_SESSION_P,
418901fadf7SArchie Cobbs sizeof(NG_L2TP_HOOK_SESSION_P) - 1) != 0)
419901fadf7SArchie Cobbs return (EINVAL);
420901fadf7SArchie Cobbs hex = name + sizeof(NG_L2TP_HOOK_SESSION_P) - 1;
421901fadf7SArchie Cobbs for (session_id = i = 0; i < 4; i++) {
422901fadf7SArchie Cobbs for (j = 0; j < 16 && hex[i] != hexdig[j]; j++);
423901fadf7SArchie Cobbs if (j == 16)
424901fadf7SArchie Cobbs return (EINVAL);
425901fadf7SArchie Cobbs session_id = (session_id << 4) | j;
426901fadf7SArchie Cobbs }
427901fadf7SArchie Cobbs if (hex[i] != '\0')
428901fadf7SArchie Cobbs return (EINVAL);
429901fadf7SArchie Cobbs
430901fadf7SArchie Cobbs /* Create hook private structure */
431e11e3f18SDag-Erling Smørgrav hpriv = malloc(sizeof(*hpriv),
432e11e3f18SDag-Erling Smørgrav M_NETGRAPH_L2TP, M_NOWAIT | M_ZERO);
433901fadf7SArchie Cobbs if (hpriv == NULL)
434901fadf7SArchie Cobbs return (ENOMEM);
435280d6bd7SAlexander Motin hpriv->conf.session_id = session_id;
436901fadf7SArchie Cobbs hpriv->conf.control_dseq = L2TP_CONTROL_DSEQ;
437901fadf7SArchie Cobbs hpriv->conf.enable_dseq = L2TP_ENABLE_DSEQ;
4384e759763SAlexander Motin hpriv->hook = hook;
439901fadf7SArchie Cobbs NG_HOOK_SET_PRIVATE(hook, hpriv);
4404e759763SAlexander Motin hash = SESSHASH(hpriv->conf.session_id);
4414e759763SAlexander Motin LIST_INSERT_HEAD(&priv->sesshash[hash], hpriv, sessions);
442901fadf7SArchie Cobbs }
443901fadf7SArchie Cobbs
444901fadf7SArchie Cobbs /* Done */
445901fadf7SArchie Cobbs return (0);
446901fadf7SArchie Cobbs }
447901fadf7SArchie Cobbs
448901fadf7SArchie Cobbs /*
449901fadf7SArchie Cobbs * Receive a control message.
450901fadf7SArchie Cobbs */
451901fadf7SArchie Cobbs static int
ng_l2tp_rcvmsg(node_p node,item_p item,hook_p lasthook)452901fadf7SArchie Cobbs ng_l2tp_rcvmsg(node_p node, item_p item, hook_p lasthook)
453901fadf7SArchie Cobbs {
454901fadf7SArchie Cobbs const priv_p priv = NG_NODE_PRIVATE(node);
455901fadf7SArchie Cobbs struct ng_mesg *resp = NULL;
456901fadf7SArchie Cobbs struct ng_mesg *msg;
457901fadf7SArchie Cobbs int error = 0;
458901fadf7SArchie Cobbs
459901fadf7SArchie Cobbs NGI_GET_MSG(item, msg);
460901fadf7SArchie Cobbs switch (msg->header.typecookie) {
461901fadf7SArchie Cobbs case NGM_L2TP_COOKIE:
462901fadf7SArchie Cobbs switch (msg->header.cmd) {
463901fadf7SArchie Cobbs case NGM_L2TP_SET_CONFIG:
464901fadf7SArchie Cobbs {
465901fadf7SArchie Cobbs struct ng_l2tp_config *const conf =
466901fadf7SArchie Cobbs (struct ng_l2tp_config *)msg->data;
467901fadf7SArchie Cobbs
468901fadf7SArchie Cobbs /* Check for invalid or illegal config */
469901fadf7SArchie Cobbs if (msg->header.arglen != sizeof(*conf)) {
470901fadf7SArchie Cobbs error = EINVAL;
471901fadf7SArchie Cobbs break;
472901fadf7SArchie Cobbs }
473901fadf7SArchie Cobbs conf->enabled = !!conf->enabled;
474901fadf7SArchie Cobbs conf->match_id = !!conf->match_id;
475901fadf7SArchie Cobbs if (priv->conf.enabled
476901fadf7SArchie Cobbs && ((priv->conf.tunnel_id != 0
477901fadf7SArchie Cobbs && conf->tunnel_id != priv->conf.tunnel_id)
478901fadf7SArchie Cobbs || ((priv->conf.peer_id != 0
479901fadf7SArchie Cobbs && conf->peer_id != priv->conf.peer_id)))) {
480901fadf7SArchie Cobbs error = EBUSY;
481901fadf7SArchie Cobbs break;
482901fadf7SArchie Cobbs }
483901fadf7SArchie Cobbs
484901fadf7SArchie Cobbs /* Save calling node as failure target */
485901fadf7SArchie Cobbs priv->ftarget = NGI_RETADDR(item);
486901fadf7SArchie Cobbs
487901fadf7SArchie Cobbs /* Adjust sequence number state */
488901fadf7SArchie Cobbs if ((error = ng_l2tp_seq_adjust(priv, conf)) != 0)
489901fadf7SArchie Cobbs break;
490901fadf7SArchie Cobbs
491901fadf7SArchie Cobbs /* Update node's config */
492901fadf7SArchie Cobbs priv->conf = *conf;
493901fadf7SArchie Cobbs break;
494901fadf7SArchie Cobbs }
495901fadf7SArchie Cobbs case NGM_L2TP_GET_CONFIG:
496901fadf7SArchie Cobbs {
497901fadf7SArchie Cobbs struct ng_l2tp_config *conf;
498901fadf7SArchie Cobbs
499901fadf7SArchie Cobbs NG_MKRESPONSE(resp, msg, sizeof(*conf), M_NOWAIT);
500901fadf7SArchie Cobbs if (resp == NULL) {
501901fadf7SArchie Cobbs error = ENOMEM;
502901fadf7SArchie Cobbs break;
503901fadf7SArchie Cobbs }
504901fadf7SArchie Cobbs conf = (struct ng_l2tp_config *)resp->data;
505901fadf7SArchie Cobbs *conf = priv->conf;
506901fadf7SArchie Cobbs break;
507901fadf7SArchie Cobbs }
508901fadf7SArchie Cobbs case NGM_L2TP_SET_SESS_CONFIG:
509901fadf7SArchie Cobbs {
510901fadf7SArchie Cobbs struct ng_l2tp_sess_config *const conf =
511901fadf7SArchie Cobbs (struct ng_l2tp_sess_config *)msg->data;
512901fadf7SArchie Cobbs hookpriv_p hpriv;
513901fadf7SArchie Cobbs
5141e031324SBjoern A. Zeeb /* Check for invalid or illegal config. */
515901fadf7SArchie Cobbs if (msg->header.arglen != sizeof(*conf)) {
516901fadf7SArchie Cobbs error = EINVAL;
517901fadf7SArchie Cobbs break;
518901fadf7SArchie Cobbs }
519901fadf7SArchie Cobbs
520901fadf7SArchie Cobbs /* Find matching hook */
5214e759763SAlexander Motin hpriv = ng_l2tp_find_session(priv, conf->session_id);
5224e759763SAlexander Motin if (hpriv == NULL) {
523901fadf7SArchie Cobbs error = ENOENT;
524901fadf7SArchie Cobbs break;
525901fadf7SArchie Cobbs }
526901fadf7SArchie Cobbs
527901fadf7SArchie Cobbs /* Update hook's config */
528901fadf7SArchie Cobbs hpriv->conf = *conf;
529901fadf7SArchie Cobbs break;
530901fadf7SArchie Cobbs }
531901fadf7SArchie Cobbs case NGM_L2TP_GET_SESS_CONFIG:
532901fadf7SArchie Cobbs {
533901fadf7SArchie Cobbs struct ng_l2tp_sess_config *conf;
534901fadf7SArchie Cobbs u_int16_t session_id;
535901fadf7SArchie Cobbs hookpriv_p hpriv;
536901fadf7SArchie Cobbs
537901fadf7SArchie Cobbs /* Get session ID */
538901fadf7SArchie Cobbs if (msg->header.arglen != sizeof(session_id)) {
539901fadf7SArchie Cobbs error = EINVAL;
540901fadf7SArchie Cobbs break;
541901fadf7SArchie Cobbs }
542901fadf7SArchie Cobbs memcpy(&session_id, msg->data, 2);
543901fadf7SArchie Cobbs
544901fadf7SArchie Cobbs /* Find matching hook */
5454e759763SAlexander Motin hpriv = ng_l2tp_find_session(priv, session_id);
5464e759763SAlexander Motin if (hpriv == NULL) {
547901fadf7SArchie Cobbs error = ENOENT;
548901fadf7SArchie Cobbs break;
549901fadf7SArchie Cobbs }
550901fadf7SArchie Cobbs
551901fadf7SArchie Cobbs /* Send response */
552901fadf7SArchie Cobbs NG_MKRESPONSE(resp, msg, sizeof(hpriv->conf), M_NOWAIT);
553901fadf7SArchie Cobbs if (resp == NULL) {
554901fadf7SArchie Cobbs error = ENOMEM;
555901fadf7SArchie Cobbs break;
556901fadf7SArchie Cobbs }
557901fadf7SArchie Cobbs conf = (struct ng_l2tp_sess_config *)resp->data;
558901fadf7SArchie Cobbs *conf = hpriv->conf;
559901fadf7SArchie Cobbs break;
560901fadf7SArchie Cobbs }
561901fadf7SArchie Cobbs case NGM_L2TP_GET_STATS:
562901fadf7SArchie Cobbs case NGM_L2TP_CLR_STATS:
563901fadf7SArchie Cobbs case NGM_L2TP_GETCLR_STATS:
564901fadf7SArchie Cobbs {
565901fadf7SArchie Cobbs if (msg->header.cmd != NGM_L2TP_CLR_STATS) {
566901fadf7SArchie Cobbs NG_MKRESPONSE(resp, msg,
567901fadf7SArchie Cobbs sizeof(priv->stats), M_NOWAIT);
568901fadf7SArchie Cobbs if (resp == NULL) {
569901fadf7SArchie Cobbs error = ENOMEM;
570901fadf7SArchie Cobbs break;
571901fadf7SArchie Cobbs }
572901fadf7SArchie Cobbs memcpy(resp->data,
573901fadf7SArchie Cobbs &priv->stats, sizeof(priv->stats));
574901fadf7SArchie Cobbs }
575901fadf7SArchie Cobbs if (msg->header.cmd != NGM_L2TP_GET_STATS)
576901fadf7SArchie Cobbs memset(&priv->stats, 0, sizeof(priv->stats));
577901fadf7SArchie Cobbs break;
578901fadf7SArchie Cobbs }
5794807330cSBjoern A. Zeeb case NGM_L2TP_GET_SESSION_STATS:
5804807330cSBjoern A. Zeeb case NGM_L2TP_CLR_SESSION_STATS:
5814807330cSBjoern A. Zeeb case NGM_L2TP_GETCLR_SESSION_STATS:
5824807330cSBjoern A. Zeeb {
5834807330cSBjoern A. Zeeb uint16_t session_id;
5844807330cSBjoern A. Zeeb hookpriv_p hpriv;
5854807330cSBjoern A. Zeeb
5864807330cSBjoern A. Zeeb /* Get session ID. */
5874807330cSBjoern A. Zeeb if (msg->header.arglen != sizeof(session_id)) {
5884807330cSBjoern A. Zeeb error = EINVAL;
5894807330cSBjoern A. Zeeb break;
5904807330cSBjoern A. Zeeb }
5914807330cSBjoern A. Zeeb bcopy(msg->data, &session_id, sizeof(uint16_t));
5924807330cSBjoern A. Zeeb
5934807330cSBjoern A. Zeeb /* Find matching hook. */
5944e759763SAlexander Motin hpriv = ng_l2tp_find_session(priv, session_id);
5954e759763SAlexander Motin if (hpriv == NULL) {
5964807330cSBjoern A. Zeeb error = ENOENT;
5974807330cSBjoern A. Zeeb break;
5984807330cSBjoern A. Zeeb }
5994807330cSBjoern A. Zeeb
6004807330cSBjoern A. Zeeb if (msg->header.cmd != NGM_L2TP_CLR_SESSION_STATS) {
6014807330cSBjoern A. Zeeb NG_MKRESPONSE(resp, msg,
6024807330cSBjoern A. Zeeb sizeof(hpriv->stats), M_NOWAIT);
6034807330cSBjoern A. Zeeb if (resp == NULL) {
6044807330cSBjoern A. Zeeb error = ENOMEM;
6054807330cSBjoern A. Zeeb break;
6064807330cSBjoern A. Zeeb }
6074807330cSBjoern A. Zeeb bcopy(&hpriv->stats, resp->data,
6084807330cSBjoern A. Zeeb sizeof(hpriv->stats));
6094807330cSBjoern A. Zeeb }
6104807330cSBjoern A. Zeeb if (msg->header.cmd != NGM_L2TP_GET_SESSION_STATS)
6114807330cSBjoern A. Zeeb bzero(&hpriv->stats, sizeof(hpriv->stats));
6124807330cSBjoern A. Zeeb break;
6134807330cSBjoern A. Zeeb }
6141e031324SBjoern A. Zeeb case NGM_L2TP_SET_SEQ:
6151e031324SBjoern A. Zeeb {
6161e031324SBjoern A. Zeeb struct ng_l2tp_seq_config *const conf =
6171e031324SBjoern A. Zeeb (struct ng_l2tp_seq_config *)msg->data;
6181e031324SBjoern A. Zeeb
6191e031324SBjoern A. Zeeb /* Check for invalid or illegal seq config. */
6201e031324SBjoern A. Zeeb if (msg->header.arglen != sizeof(*conf)) {
6211e031324SBjoern A. Zeeb error = EINVAL;
6221e031324SBjoern A. Zeeb break;
6231e031324SBjoern A. Zeeb }
6241e031324SBjoern A. Zeeb conf->ns = htons(conf->ns);
6251e031324SBjoern A. Zeeb conf->nr = htons(conf->nr);
6261e031324SBjoern A. Zeeb conf->rack = htons(conf->rack);
6271e031324SBjoern A. Zeeb conf->xack = htons(conf->xack);
6281e031324SBjoern A. Zeeb
6291e031324SBjoern A. Zeeb /* Set sequence numbers. */
6301e031324SBjoern A. Zeeb error = ng_l2tp_seq_set(priv, conf);
6311e031324SBjoern A. Zeeb break;
6321e031324SBjoern A. Zeeb }
633901fadf7SArchie Cobbs default:
634901fadf7SArchie Cobbs error = EINVAL;
635901fadf7SArchie Cobbs break;
636901fadf7SArchie Cobbs }
637901fadf7SArchie Cobbs break;
638901fadf7SArchie Cobbs default:
639901fadf7SArchie Cobbs error = EINVAL;
640901fadf7SArchie Cobbs break;
641901fadf7SArchie Cobbs }
642901fadf7SArchie Cobbs
643901fadf7SArchie Cobbs /* Done */
644901fadf7SArchie Cobbs NG_RESPOND_MSG(error, node, item, resp);
645901fadf7SArchie Cobbs NG_FREE_MSG(msg);
646901fadf7SArchie Cobbs return (error);
647901fadf7SArchie Cobbs }
648901fadf7SArchie Cobbs
649901fadf7SArchie Cobbs /*
650901fadf7SArchie Cobbs * Destroy node
651901fadf7SArchie Cobbs */
652901fadf7SArchie Cobbs static int
ng_l2tp_shutdown(node_p node)653901fadf7SArchie Cobbs ng_l2tp_shutdown(node_p node)
654901fadf7SArchie Cobbs {
655901fadf7SArchie Cobbs const priv_p priv = NG_NODE_PRIVATE(node);
656901fadf7SArchie Cobbs struct l2tp_seq *const seq = &priv->seq;
657901fadf7SArchie Cobbs
658901fadf7SArchie Cobbs /* Reset sequence number state */
6590a76c63dSGleb Smirnoff SEQ_LOCK(seq);
660901fadf7SArchie Cobbs ng_l2tp_seq_reset(priv);
6610a76c63dSGleb Smirnoff SEQ_UNLOCK(seq);
662901fadf7SArchie Cobbs
663901fadf7SArchie Cobbs /* Free private data if neither timer is running */
664ae04d304SGleb Smirnoff callout_drain(&seq->rack_timer);
665ae04d304SGleb Smirnoff callout_drain(&seq->xack_timer);
6660ef8db8fSGleb Smirnoff
667702f9895SAlexander Motin mtx_destroy(&seq->mtx);
668702f9895SAlexander Motin
6691ede983cSDag-Erling Smørgrav free(priv, M_NETGRAPH_L2TP);
670901fadf7SArchie Cobbs
671901fadf7SArchie Cobbs /* Unref node */
672901fadf7SArchie Cobbs NG_NODE_UNREF(node);
673901fadf7SArchie Cobbs return (0);
674901fadf7SArchie Cobbs }
675901fadf7SArchie Cobbs
676901fadf7SArchie Cobbs /*
677901fadf7SArchie Cobbs * Hook disconnection
678901fadf7SArchie Cobbs */
679901fadf7SArchie Cobbs static int
ng_l2tp_disconnect(hook_p hook)680901fadf7SArchie Cobbs ng_l2tp_disconnect(hook_p hook)
681901fadf7SArchie Cobbs {
682901fadf7SArchie Cobbs const node_p node = NG_HOOK_NODE(hook);
683901fadf7SArchie Cobbs const priv_p priv = NG_NODE_PRIVATE(node);
684901fadf7SArchie Cobbs
685901fadf7SArchie Cobbs /* Zero out hook pointer */
686901fadf7SArchie Cobbs if (hook == priv->ctrl)
687901fadf7SArchie Cobbs priv->ctrl = NULL;
688901fadf7SArchie Cobbs else if (hook == priv->lower)
689901fadf7SArchie Cobbs priv->lower = NULL;
690901fadf7SArchie Cobbs else {
6914e759763SAlexander Motin const hookpriv_p hpriv = NG_HOOK_PRIVATE(hook);
6924e759763SAlexander Motin LIST_REMOVE(hpriv, sessions);
6931ede983cSDag-Erling Smørgrav free(hpriv, M_NETGRAPH_L2TP);
694901fadf7SArchie Cobbs NG_HOOK_SET_PRIVATE(hook, NULL);
695901fadf7SArchie Cobbs }
696901fadf7SArchie Cobbs
697901fadf7SArchie Cobbs /* Go away if no longer connected to anything */
698901fadf7SArchie Cobbs if (NG_NODE_NUMHOOKS(node) == 0 && NG_NODE_IS_VALID(node))
699901fadf7SArchie Cobbs ng_rmnode_self(node);
700901fadf7SArchie Cobbs return (0);
701901fadf7SArchie Cobbs }
702901fadf7SArchie Cobbs
703901fadf7SArchie Cobbs /*************************************************************************
704901fadf7SArchie Cobbs INTERNAL FUNCTIONS
705901fadf7SArchie Cobbs *************************************************************************/
706901fadf7SArchie Cobbs
707901fadf7SArchie Cobbs /*
708280d6bd7SAlexander Motin * Find the hook with a given session ID.
709901fadf7SArchie Cobbs */
7104e759763SAlexander Motin static hookpriv_p
ng_l2tp_find_session(priv_p privp,u_int16_t sid)7114e759763SAlexander Motin ng_l2tp_find_session(priv_p privp, u_int16_t sid)
712901fadf7SArchie Cobbs {
7134e759763SAlexander Motin uint16_t hash = SESSHASH(sid);
7144e759763SAlexander Motin hookpriv_p hpriv = NULL;
715901fadf7SArchie Cobbs
7164e759763SAlexander Motin LIST_FOREACH(hpriv, &privp->sesshash[hash], sessions) {
7174e759763SAlexander Motin if (hpriv->conf.session_id == sid)
7184e759763SAlexander Motin break;
7194e759763SAlexander Motin }
7204e759763SAlexander Motin
7214e759763SAlexander Motin return (hpriv);
722901fadf7SArchie Cobbs }
723901fadf7SArchie Cobbs
724901fadf7SArchie Cobbs /*
725901fadf7SArchie Cobbs * Reset a hook's session state.
726901fadf7SArchie Cobbs */
727901fadf7SArchie Cobbs static int
ng_l2tp_reset_session(hook_p hook,void * arg)728901fadf7SArchie Cobbs ng_l2tp_reset_session(hook_p hook, void *arg)
729901fadf7SArchie Cobbs {
730901fadf7SArchie Cobbs const hookpriv_p hpriv = NG_HOOK_PRIVATE(hook);
731901fadf7SArchie Cobbs
732901fadf7SArchie Cobbs if (hpriv != NULL) {
733901fadf7SArchie Cobbs hpriv->conf.control_dseq = 0;
734901fadf7SArchie Cobbs hpriv->conf.enable_dseq = 0;
735b0239937SAlexander Motin bzero(&hpriv->stats, sizeof(struct ng_l2tp_session_stats));
736901fadf7SArchie Cobbs hpriv->nr = 0;
737901fadf7SArchie Cobbs hpriv->ns = 0;
738901fadf7SArchie Cobbs }
739901fadf7SArchie Cobbs return (-1);
740901fadf7SArchie Cobbs }
741901fadf7SArchie Cobbs
742901fadf7SArchie Cobbs /*
743901fadf7SArchie Cobbs * Handle an incoming frame from below.
744901fadf7SArchie Cobbs */
745901fadf7SArchie Cobbs static int
ng_l2tp_rcvdata_lower(hook_p h,item_p item)746bf741e4dSAlexander Motin ng_l2tp_rcvdata_lower(hook_p h, item_p item)
747901fadf7SArchie Cobbs {
748901fadf7SArchie Cobbs static const u_int16_t req_bits[2][2] = {
749901fadf7SArchie Cobbs { L2TP_DATA_0BITS, L2TP_DATA_1BITS },
750901fadf7SArchie Cobbs { L2TP_CTRL_0BITS, L2TP_CTRL_1BITS },
751901fadf7SArchie Cobbs };
752bf741e4dSAlexander Motin const node_p node = NG_HOOK_NODE(h);
753901fadf7SArchie Cobbs const priv_p priv = NG_NODE_PRIVATE(node);
754901fadf7SArchie Cobbs hookpriv_p hpriv = NULL;
755901fadf7SArchie Cobbs hook_p hook = NULL;
756901fadf7SArchie Cobbs struct mbuf *m;
757280d6bd7SAlexander Motin u_int16_t tid, sid;
758901fadf7SArchie Cobbs u_int16_t hdr;
759280d6bd7SAlexander Motin u_int16_t ns, nr;
760901fadf7SArchie Cobbs int is_ctrl;
761901fadf7SArchie Cobbs int error;
7624807330cSBjoern A. Zeeb int len, plen;
763901fadf7SArchie Cobbs
764bf741e4dSAlexander Motin /* If not configured, reject */
765bf741e4dSAlexander Motin if (!priv->conf.enabled) {
766bf741e4dSAlexander Motin NG_FREE_ITEM(item);
767bf741e4dSAlexander Motin ERROUT(ENXIO);
768bf741e4dSAlexander Motin }
769bf741e4dSAlexander Motin
770901fadf7SArchie Cobbs /* Grab mbuf */
771901fadf7SArchie Cobbs NGI_GET_M(item, m);
772901fadf7SArchie Cobbs
7734807330cSBjoern A. Zeeb /* Remember full packet length; needed for per session accounting. */
7744807330cSBjoern A. Zeeb plen = m->m_pkthdr.len;
7754807330cSBjoern A. Zeeb
776901fadf7SArchie Cobbs /* Update stats */
777901fadf7SArchie Cobbs priv->stats.recvPackets++;
7784807330cSBjoern A. Zeeb priv->stats.recvOctets += plen;
779901fadf7SArchie Cobbs
780901fadf7SArchie Cobbs /* Get initial header */
781901fadf7SArchie Cobbs if (m->m_pkthdr.len < 6) {
782901fadf7SArchie Cobbs priv->stats.recvRunts++;
783901fadf7SArchie Cobbs NG_FREE_ITEM(item);
784901fadf7SArchie Cobbs NG_FREE_M(m);
785bf741e4dSAlexander Motin ERROUT(EINVAL);
786901fadf7SArchie Cobbs }
787901fadf7SArchie Cobbs if (m->m_len < 2 && (m = m_pullup(m, 2)) == NULL) {
788901fadf7SArchie Cobbs priv->stats.memoryFailures++;
789901fadf7SArchie Cobbs NG_FREE_ITEM(item);
790bf741e4dSAlexander Motin ERROUT(EINVAL);
791901fadf7SArchie Cobbs }
792148ac1daSAlexander Motin hdr = (mtod(m, uint8_t *)[0] << 8) + mtod(m, uint8_t *)[1];
793901fadf7SArchie Cobbs m_adj(m, 2);
794901fadf7SArchie Cobbs
795901fadf7SArchie Cobbs /* Check required header bits and minimum length */
796901fadf7SArchie Cobbs is_ctrl = (hdr & L2TP_HDR_CTRL) != 0;
797901fadf7SArchie Cobbs if ((hdr & req_bits[is_ctrl][0]) != 0
798901fadf7SArchie Cobbs || (~hdr & req_bits[is_ctrl][1]) != 0) {
799901fadf7SArchie Cobbs priv->stats.recvInvalid++;
800901fadf7SArchie Cobbs NG_FREE_ITEM(item);
801901fadf7SArchie Cobbs NG_FREE_M(m);
802bf741e4dSAlexander Motin ERROUT(EINVAL);
803901fadf7SArchie Cobbs }
804901fadf7SArchie Cobbs if (m->m_pkthdr.len < 4 /* tunnel, session id */
805901fadf7SArchie Cobbs + (2 * ((hdr & L2TP_HDR_LEN) != 0)) /* length field */
806901fadf7SArchie Cobbs + (4 * ((hdr & L2TP_HDR_SEQ) != 0)) /* seq # fields */
807901fadf7SArchie Cobbs + (2 * ((hdr & L2TP_HDR_OFF) != 0))) { /* offset field */
808901fadf7SArchie Cobbs priv->stats.recvRunts++;
809901fadf7SArchie Cobbs NG_FREE_ITEM(item);
810901fadf7SArchie Cobbs NG_FREE_M(m);
811bf741e4dSAlexander Motin ERROUT(EINVAL);
812901fadf7SArchie Cobbs }
813901fadf7SArchie Cobbs
814901fadf7SArchie Cobbs /* Get and validate length field if present */
815901fadf7SArchie Cobbs if ((hdr & L2TP_HDR_LEN) != 0) {
816901fadf7SArchie Cobbs if (m->m_len < 2 && (m = m_pullup(m, 2)) == NULL) {
817901fadf7SArchie Cobbs priv->stats.memoryFailures++;
818901fadf7SArchie Cobbs NG_FREE_ITEM(item);
819bf741e4dSAlexander Motin ERROUT(EINVAL);
820901fadf7SArchie Cobbs }
821148ac1daSAlexander Motin len = (mtod(m, uint8_t *)[0] << 8) + mtod(m, uint8_t *)[1] - 4;
822901fadf7SArchie Cobbs m_adj(m, 2);
823901fadf7SArchie Cobbs if (len < 0 || len > m->m_pkthdr.len) {
824901fadf7SArchie Cobbs priv->stats.recvInvalid++;
825901fadf7SArchie Cobbs NG_FREE_ITEM(item);
826901fadf7SArchie Cobbs NG_FREE_M(m);
827bf741e4dSAlexander Motin ERROUT(EINVAL);
828901fadf7SArchie Cobbs }
829901fadf7SArchie Cobbs if (len < m->m_pkthdr.len) /* trim extra bytes */
830901fadf7SArchie Cobbs m_adj(m, -(m->m_pkthdr.len - len));
831901fadf7SArchie Cobbs }
832901fadf7SArchie Cobbs
833901fadf7SArchie Cobbs /* Get tunnel ID and session ID */
834901fadf7SArchie Cobbs if (m->m_len < 4 && (m = m_pullup(m, 4)) == NULL) {
835901fadf7SArchie Cobbs priv->stats.memoryFailures++;
836901fadf7SArchie Cobbs NG_FREE_ITEM(item);
837bf741e4dSAlexander Motin ERROUT(EINVAL);
838901fadf7SArchie Cobbs }
839280d6bd7SAlexander Motin tid = (mtod(m, u_int8_t *)[0] << 8) + mtod(m, u_int8_t *)[1];
840280d6bd7SAlexander Motin sid = (mtod(m, u_int8_t *)[2] << 8) + mtod(m, u_int8_t *)[3];
841901fadf7SArchie Cobbs m_adj(m, 4);
842901fadf7SArchie Cobbs
843901fadf7SArchie Cobbs /* Check tunnel ID */
844280d6bd7SAlexander Motin if (tid != priv->conf.tunnel_id &&
845280d6bd7SAlexander Motin (priv->conf.match_id || tid != 0)) {
846901fadf7SArchie Cobbs priv->stats.recvWrongTunnel++;
847901fadf7SArchie Cobbs NG_FREE_ITEM(item);
848901fadf7SArchie Cobbs NG_FREE_M(m);
849bf741e4dSAlexander Motin ERROUT(EADDRNOTAVAIL);
850901fadf7SArchie Cobbs }
851901fadf7SArchie Cobbs
852901fadf7SArchie Cobbs /* Check session ID (for data packets only) */
853901fadf7SArchie Cobbs if ((hdr & L2TP_HDR_CTRL) == 0) {
854280d6bd7SAlexander Motin hpriv = ng_l2tp_find_session(priv, sid);
8554e759763SAlexander Motin if (hpriv == NULL) {
856901fadf7SArchie Cobbs priv->stats.recvUnknownSID++;
857901fadf7SArchie Cobbs NG_FREE_ITEM(item);
858901fadf7SArchie Cobbs NG_FREE_M(m);
859bf741e4dSAlexander Motin ERROUT(ENOTCONN);
860901fadf7SArchie Cobbs }
8614e759763SAlexander Motin hook = hpriv->hook;
862901fadf7SArchie Cobbs }
863901fadf7SArchie Cobbs
864901fadf7SArchie Cobbs /* Get Ns, Nr fields if present */
865901fadf7SArchie Cobbs if ((hdr & L2TP_HDR_SEQ) != 0) {
866901fadf7SArchie Cobbs if (m->m_len < 4 && (m = m_pullup(m, 4)) == NULL) {
867901fadf7SArchie Cobbs priv->stats.memoryFailures++;
868901fadf7SArchie Cobbs NG_FREE_ITEM(item);
869bf741e4dSAlexander Motin ERROUT(EINVAL);
870901fadf7SArchie Cobbs }
871280d6bd7SAlexander Motin ns = (mtod(m, u_int8_t *)[0] << 8) + mtod(m, u_int8_t *)[1];
872280d6bd7SAlexander Motin nr = (mtod(m, u_int8_t *)[2] << 8) + mtod(m, u_int8_t *)[3];
873901fadf7SArchie Cobbs m_adj(m, 4);
874280d6bd7SAlexander Motin } else
875280d6bd7SAlexander Motin ns = nr = 0;
876901fadf7SArchie Cobbs
877901fadf7SArchie Cobbs /* Strip offset padding if present */
878901fadf7SArchie Cobbs if ((hdr & L2TP_HDR_OFF) != 0) {
879901fadf7SArchie Cobbs u_int16_t offset;
880901fadf7SArchie Cobbs
881901fadf7SArchie Cobbs /* Get length of offset padding */
882901fadf7SArchie Cobbs if (m->m_len < 2 && (m = m_pullup(m, 2)) == NULL) {
883901fadf7SArchie Cobbs priv->stats.memoryFailures++;
884901fadf7SArchie Cobbs NG_FREE_ITEM(item);
885bf741e4dSAlexander Motin ERROUT(EINVAL);
886901fadf7SArchie Cobbs }
887280d6bd7SAlexander Motin offset = (mtod(m, u_int8_t *)[0] << 8) + mtod(m, u_int8_t *)[1];
888901fadf7SArchie Cobbs
889901fadf7SArchie Cobbs /* Trim offset padding */
890ddb72294SBjoern A. Zeeb if ((2+offset) > m->m_pkthdr.len) {
891901fadf7SArchie Cobbs priv->stats.recvInvalid++;
892901fadf7SArchie Cobbs NG_FREE_ITEM(item);
893901fadf7SArchie Cobbs NG_FREE_M(m);
894bf741e4dSAlexander Motin ERROUT(EINVAL);
895901fadf7SArchie Cobbs }
896ddb72294SBjoern A. Zeeb m_adj(m, 2+offset);
897901fadf7SArchie Cobbs }
898901fadf7SArchie Cobbs
899901fadf7SArchie Cobbs /* Handle control packets */
900901fadf7SArchie Cobbs if ((hdr & L2TP_HDR_CTRL) != 0) {
901af63939cSAlexander Motin struct l2tp_seq *const seq = &priv->seq;
902901fadf7SArchie Cobbs
9030a76c63dSGleb Smirnoff SEQ_LOCK(seq);
9040a76c63dSGleb Smirnoff
905901fadf7SArchie Cobbs /* Handle receive ack sequence number Nr */
906901fadf7SArchie Cobbs ng_l2tp_seq_recv_nr(priv, nr);
907901fadf7SArchie Cobbs
908901fadf7SArchie Cobbs /* Discard ZLB packets */
909901fadf7SArchie Cobbs if (m->m_pkthdr.len == 0) {
9100a76c63dSGleb Smirnoff SEQ_UNLOCK(seq);
911901fadf7SArchie Cobbs priv->stats.recvZLBs++;
912901fadf7SArchie Cobbs NG_FREE_ITEM(item);
913901fadf7SArchie Cobbs NG_FREE_M(m);
914bf741e4dSAlexander Motin ERROUT(0);
915901fadf7SArchie Cobbs }
916901fadf7SArchie Cobbs
917901fadf7SArchie Cobbs /*
918af63939cSAlexander Motin * If not what we expect or we are busy, drop packet and
919af63939cSAlexander Motin * send an immediate ZLB ack.
920901fadf7SArchie Cobbs */
921af63939cSAlexander Motin if (ns != seq->nr || seq->inproc) {
922af63939cSAlexander Motin if (L2TP_SEQ_DIFF(ns, seq->nr) <= 0)
923af63939cSAlexander Motin priv->stats.recvDuplicates++;
924af63939cSAlexander Motin else
925af63939cSAlexander Motin priv->stats.recvOutOfOrder++;
926af63939cSAlexander Motin ng_l2tp_xmit_ctrl(priv, NULL, seq->ns);
927af63939cSAlexander Motin NG_FREE_ITEM(item);
928af63939cSAlexander Motin NG_FREE_M(m);
929af63939cSAlexander Motin ERROUT(0);
930af63939cSAlexander Motin }
931af63939cSAlexander Motin
932af63939cSAlexander Motin /* Prepend session ID to packet. */
933eb1b1807SGleb Smirnoff M_PREPEND(m, 2, M_NOWAIT);
934901fadf7SArchie Cobbs if (m == NULL) {
9350a76c63dSGleb Smirnoff SEQ_UNLOCK(seq);
936901fadf7SArchie Cobbs priv->stats.memoryFailures++;
937901fadf7SArchie Cobbs NG_FREE_ITEM(item);
938bf741e4dSAlexander Motin ERROUT(ENOBUFS);
939901fadf7SArchie Cobbs }
940280d6bd7SAlexander Motin mtod(m, u_int8_t *)[0] = sid >> 8;
941280d6bd7SAlexander Motin mtod(m, u_int8_t *)[1] = sid & 0xff;
942901fadf7SArchie Cobbs
9430a76c63dSGleb Smirnoff /*
9440a76c63dSGleb Smirnoff * Until we deliver this packet we can't receive next one as
9450a76c63dSGleb Smirnoff * we have no information for sending ack.
9460a76c63dSGleb Smirnoff */
9470a76c63dSGleb Smirnoff seq->inproc = 1;
9480a76c63dSGleb Smirnoff SEQ_UNLOCK(seq);
9490a76c63dSGleb Smirnoff
950901fadf7SArchie Cobbs /* Deliver packet to upper layers */
951901fadf7SArchie Cobbs NG_FWD_NEW_DATA(error, item, priv->ctrl, m);
952af63939cSAlexander Motin
9530a76c63dSGleb Smirnoff SEQ_LOCK(seq);
954af63939cSAlexander Motin /* Ready to process next packet. */
955af63939cSAlexander Motin seq->inproc = 0;
956af63939cSAlexander Motin
957af63939cSAlexander Motin /* If packet was successfully delivered send ack. */
958af63939cSAlexander Motin if (error == 0) {
959af63939cSAlexander Motin /* Update recv sequence number */
960af63939cSAlexander Motin seq->nr++;
961af63939cSAlexander Motin /* Start receive ack timer, if not already running */
962af63939cSAlexander Motin if (!callout_active(&seq->xack_timer)) {
963ae04d304SGleb Smirnoff callout_reset(&seq->xack_timer,
964af63939cSAlexander Motin L2TP_DELAYED_ACK, ng_l2tp_seq_xack_timeout,
965ae04d304SGleb Smirnoff node);
966af63939cSAlexander Motin }
967af63939cSAlexander Motin }
9680a76c63dSGleb Smirnoff SEQ_UNLOCK(seq);
969af63939cSAlexander Motin
970bf741e4dSAlexander Motin ERROUT(error);
971901fadf7SArchie Cobbs }
972901fadf7SArchie Cobbs
9734807330cSBjoern A. Zeeb /* Per session packet, account it. */
9744807330cSBjoern A. Zeeb hpriv->stats.recvPackets++;
9754807330cSBjoern A. Zeeb hpriv->stats.recvOctets += plen;
9764807330cSBjoern A. Zeeb
977901fadf7SArchie Cobbs /* Follow peer's lead in data sequencing, if configured to do so */
978901fadf7SArchie Cobbs if (!hpriv->conf.control_dseq)
979901fadf7SArchie Cobbs hpriv->conf.enable_dseq = ((hdr & L2TP_HDR_SEQ) != 0);
980901fadf7SArchie Cobbs
981901fadf7SArchie Cobbs /* Handle data sequence numbers if present and enabled */
982901fadf7SArchie Cobbs if ((hdr & L2TP_HDR_SEQ) != 0) {
983901fadf7SArchie Cobbs if (hpriv->conf.enable_dseq
984901fadf7SArchie Cobbs && L2TP_SEQ_DIFF(ns, hpriv->nr) < 0) {
985901fadf7SArchie Cobbs NG_FREE_ITEM(item); /* duplicate or out of order */
986901fadf7SArchie Cobbs NG_FREE_M(m);
987901fadf7SArchie Cobbs priv->stats.recvDataDrops++;
988bf741e4dSAlexander Motin ERROUT(0);
989901fadf7SArchie Cobbs }
990901fadf7SArchie Cobbs hpriv->nr = ns + 1;
991901fadf7SArchie Cobbs }
992901fadf7SArchie Cobbs
993901fadf7SArchie Cobbs /* Drop empty data packets */
994901fadf7SArchie Cobbs if (m->m_pkthdr.len == 0) {
995901fadf7SArchie Cobbs NG_FREE_ITEM(item);
996901fadf7SArchie Cobbs NG_FREE_M(m);
997bf741e4dSAlexander Motin ERROUT(0);
998901fadf7SArchie Cobbs }
999901fadf7SArchie Cobbs
1000901fadf7SArchie Cobbs /* Deliver data */
1001901fadf7SArchie Cobbs NG_FWD_NEW_DATA(error, item, hook, m);
1002bf741e4dSAlexander Motin done:
1003901fadf7SArchie Cobbs return (error);
1004901fadf7SArchie Cobbs }
1005901fadf7SArchie Cobbs
1006901fadf7SArchie Cobbs /*
1007901fadf7SArchie Cobbs * Handle an outgoing control frame.
1008901fadf7SArchie Cobbs */
1009901fadf7SArchie Cobbs static int
ng_l2tp_rcvdata_ctrl(hook_p hook,item_p item)1010bf741e4dSAlexander Motin ng_l2tp_rcvdata_ctrl(hook_p hook, item_p item)
1011901fadf7SArchie Cobbs {
1012bf741e4dSAlexander Motin const node_p node = NG_HOOK_NODE(hook);
1013901fadf7SArchie Cobbs const priv_p priv = NG_NODE_PRIVATE(node);
1014901fadf7SArchie Cobbs struct l2tp_seq *const seq = &priv->seq;
1015901fadf7SArchie Cobbs struct mbuf *m;
1016bf741e4dSAlexander Motin int error;
1017901fadf7SArchie Cobbs int i;
1018702f9895SAlexander Motin u_int16_t ns;
1019901fadf7SArchie Cobbs
1020bf741e4dSAlexander Motin /* If not configured, reject */
1021bf741e4dSAlexander Motin if (!priv->conf.enabled) {
1022bf741e4dSAlexander Motin NG_FREE_ITEM(item);
1023bf741e4dSAlexander Motin ERROUT(ENXIO);
1024bf741e4dSAlexander Motin }
1025bf741e4dSAlexander Motin
1026901fadf7SArchie Cobbs /* Grab mbuf and discard other stuff XXX */
1027901fadf7SArchie Cobbs NGI_GET_M(item, m);
1028901fadf7SArchie Cobbs NG_FREE_ITEM(item);
1029901fadf7SArchie Cobbs
1030901fadf7SArchie Cobbs /* Packet should have session ID prepended */
1031901fadf7SArchie Cobbs if (m->m_pkthdr.len < 2) {
1032901fadf7SArchie Cobbs priv->stats.xmitInvalid++;
1033901fadf7SArchie Cobbs m_freem(m);
1034bf741e4dSAlexander Motin ERROUT(EINVAL);
1035901fadf7SArchie Cobbs }
1036901fadf7SArchie Cobbs
1037901fadf7SArchie Cobbs /* Check max length */
1038901fadf7SArchie Cobbs if (m->m_pkthdr.len >= 0x10000 - 14) {
1039901fadf7SArchie Cobbs priv->stats.xmitTooBig++;
1040901fadf7SArchie Cobbs m_freem(m);
1041bf741e4dSAlexander Motin ERROUT(EOVERFLOW);
1042901fadf7SArchie Cobbs }
1043901fadf7SArchie Cobbs
10440a76c63dSGleb Smirnoff SEQ_LOCK(seq);
1045702f9895SAlexander Motin
1046901fadf7SArchie Cobbs /* Find next empty slot in transmit queue */
1047901fadf7SArchie Cobbs for (i = 0; i < L2TP_MAX_XWIN && seq->xwin[i] != NULL; i++);
1048901fadf7SArchie Cobbs if (i == L2TP_MAX_XWIN) {
10490a76c63dSGleb Smirnoff SEQ_UNLOCK(seq);
1050901fadf7SArchie Cobbs priv->stats.xmitDrops++;
1051901fadf7SArchie Cobbs m_freem(m);
1052bf741e4dSAlexander Motin ERROUT(ENOBUFS);
1053901fadf7SArchie Cobbs }
1054901fadf7SArchie Cobbs seq->xwin[i] = m;
1055901fadf7SArchie Cobbs
1056901fadf7SArchie Cobbs /* If peer's receive window is already full, nothing else to do */
1057702f9895SAlexander Motin if (i >= seq->cwnd) {
10580a76c63dSGleb Smirnoff SEQ_UNLOCK(seq);
1059bf741e4dSAlexander Motin ERROUT(0);
1060702f9895SAlexander Motin }
1061901fadf7SArchie Cobbs
1062901fadf7SArchie Cobbs /* Start retransmit timer if not already running */
1063206fa244SAlexander Motin if (!callout_active(&seq->rack_timer))
1064ae04d304SGleb Smirnoff callout_reset(&seq->rack_timer, hz, ng_l2tp_seq_rack_timeout,
1065ae04d304SGleb Smirnoff node);
1066901fadf7SArchie Cobbs
1067702f9895SAlexander Motin ns = seq->ns++;
1068702f9895SAlexander Motin
1069901fadf7SArchie Cobbs /* Copy packet */
1070eb1b1807SGleb Smirnoff if ((m = L2TP_COPY_MBUF(m, M_NOWAIT)) == NULL) {
10710a76c63dSGleb Smirnoff SEQ_UNLOCK(seq);
1072901fadf7SArchie Cobbs priv->stats.memoryFailures++;
1073bf741e4dSAlexander Motin ERROUT(ENOBUFS);
1074901fadf7SArchie Cobbs }
1075901fadf7SArchie Cobbs
1076901fadf7SArchie Cobbs /* Send packet and increment xmit sequence number */
1077702f9895SAlexander Motin error = ng_l2tp_xmit_ctrl(priv, m, ns);
1078bf741e4dSAlexander Motin done:
1079bf741e4dSAlexander Motin return (error);
1080901fadf7SArchie Cobbs }
1081901fadf7SArchie Cobbs
1082901fadf7SArchie Cobbs /*
1083901fadf7SArchie Cobbs * Handle an outgoing data frame.
1084901fadf7SArchie Cobbs */
1085901fadf7SArchie Cobbs static int
ng_l2tp_rcvdata(hook_p hook,item_p item)1086bf741e4dSAlexander Motin ng_l2tp_rcvdata(hook_p hook, item_p item)
1087901fadf7SArchie Cobbs {
1088bf741e4dSAlexander Motin const priv_p priv = NG_NODE_PRIVATE(NG_HOOK_NODE(hook));
1089bf741e4dSAlexander Motin const hookpriv_p hpriv = NG_HOOK_PRIVATE(hook);
1090901fadf7SArchie Cobbs struct mbuf *m;
1091148ac1daSAlexander Motin uint8_t *p;
1092901fadf7SArchie Cobbs u_int16_t hdr;
1093901fadf7SArchie Cobbs int error;
1094148ac1daSAlexander Motin int i = 2;
1095901fadf7SArchie Cobbs
1096bf741e4dSAlexander Motin /* If not configured, reject */
1097bf741e4dSAlexander Motin if (!priv->conf.enabled) {
1098bf741e4dSAlexander Motin NG_FREE_ITEM(item);
1099bf741e4dSAlexander Motin ERROUT(ENXIO);
1100bf741e4dSAlexander Motin }
1101bf741e4dSAlexander Motin
1102901fadf7SArchie Cobbs /* Get mbuf */
1103901fadf7SArchie Cobbs NGI_GET_M(item, m);
1104901fadf7SArchie Cobbs
1105901fadf7SArchie Cobbs /* Check max length */
1106901fadf7SArchie Cobbs if (m->m_pkthdr.len >= 0x10000 - 12) {
1107901fadf7SArchie Cobbs priv->stats.xmitDataTooBig++;
1108901fadf7SArchie Cobbs NG_FREE_ITEM(item);
1109901fadf7SArchie Cobbs NG_FREE_M(m);
1110bf741e4dSAlexander Motin ERROUT(EOVERFLOW);
1111901fadf7SArchie Cobbs }
1112901fadf7SArchie Cobbs
1113901fadf7SArchie Cobbs /* Prepend L2TP header */
1114901fadf7SArchie Cobbs M_PREPEND(m, 6
1115901fadf7SArchie Cobbs + (2 * (hpriv->conf.include_length != 0))
1116901fadf7SArchie Cobbs + (4 * (hpriv->conf.enable_dseq != 0)),
1117eb1b1807SGleb Smirnoff M_NOWAIT);
1118901fadf7SArchie Cobbs if (m == NULL) {
1119901fadf7SArchie Cobbs priv->stats.memoryFailures++;
1120901fadf7SArchie Cobbs NG_FREE_ITEM(item);
1121bf741e4dSAlexander Motin ERROUT(ENOBUFS);
1122901fadf7SArchie Cobbs }
1123148ac1daSAlexander Motin p = mtod(m, uint8_t *);
1124901fadf7SArchie Cobbs hdr = L2TP_DATA_HDR;
1125901fadf7SArchie Cobbs if (hpriv->conf.include_length) {
1126901fadf7SArchie Cobbs hdr |= L2TP_HDR_LEN;
1127148ac1daSAlexander Motin p[i++] = m->m_pkthdr.len >> 8;
1128148ac1daSAlexander Motin p[i++] = m->m_pkthdr.len & 0xff;
1129901fadf7SArchie Cobbs }
1130148ac1daSAlexander Motin p[i++] = priv->conf.peer_id >> 8;
1131148ac1daSAlexander Motin p[i++] = priv->conf.peer_id & 0xff;
1132148ac1daSAlexander Motin p[i++] = hpriv->conf.peer_id >> 8;
1133148ac1daSAlexander Motin p[i++] = hpriv->conf.peer_id & 0xff;
1134901fadf7SArchie Cobbs if (hpriv->conf.enable_dseq) {
1135901fadf7SArchie Cobbs hdr |= L2TP_HDR_SEQ;
1136148ac1daSAlexander Motin p[i++] = hpriv->ns >> 8;
1137148ac1daSAlexander Motin p[i++] = hpriv->ns & 0xff;
1138148ac1daSAlexander Motin p[i++] = hpriv->nr >> 8;
1139148ac1daSAlexander Motin p[i++] = hpriv->nr & 0xff;
1140901fadf7SArchie Cobbs hpriv->ns++;
1141901fadf7SArchie Cobbs }
1142148ac1daSAlexander Motin p[0] = hdr >> 8;
1143148ac1daSAlexander Motin p[1] = hdr & 0xff;
1144901fadf7SArchie Cobbs
11454807330cSBjoern A. Zeeb /* Update per session stats. */
11464807330cSBjoern A. Zeeb hpriv->stats.xmitPackets++;
11474807330cSBjoern A. Zeeb hpriv->stats.xmitOctets += m->m_pkthdr.len;
11484807330cSBjoern A. Zeeb
114934d16c64SAlexander Motin /* And the global one. */
115034d16c64SAlexander Motin priv->stats.xmitPackets++;
115134d16c64SAlexander Motin priv->stats.xmitOctets += m->m_pkthdr.len;
115234d16c64SAlexander Motin
1153901fadf7SArchie Cobbs /* Send packet */
1154901fadf7SArchie Cobbs NG_FWD_NEW_DATA(error, item, priv->lower, m);
1155bf741e4dSAlexander Motin done:
1156901fadf7SArchie Cobbs return (error);
1157901fadf7SArchie Cobbs }
1158901fadf7SArchie Cobbs
1159901fadf7SArchie Cobbs /*
1160901fadf7SArchie Cobbs * Send a message to our controlling node that we've failed.
1161901fadf7SArchie Cobbs */
1162901fadf7SArchie Cobbs static void
ng_l2tp_seq_failure(priv_p priv)1163901fadf7SArchie Cobbs ng_l2tp_seq_failure(priv_p priv)
1164901fadf7SArchie Cobbs {
1165901fadf7SArchie Cobbs struct ng_mesg *msg;
1166901fadf7SArchie Cobbs int error;
1167901fadf7SArchie Cobbs
1168901fadf7SArchie Cobbs NG_MKMESSAGE(msg, NGM_L2TP_COOKIE, NGM_L2TP_ACK_FAILURE, 0, M_NOWAIT);
1169901fadf7SArchie Cobbs if (msg == NULL)
1170901fadf7SArchie Cobbs return;
1171facfd889SArchie Cobbs NG_SEND_MSG_ID(error, priv->node, msg, priv->ftarget, 0);
1172901fadf7SArchie Cobbs }
1173901fadf7SArchie Cobbs
1174901fadf7SArchie Cobbs /************************************************************************
1175901fadf7SArchie Cobbs SEQUENCE NUMBER HANDLING
1176901fadf7SArchie Cobbs ************************************************************************/
1177901fadf7SArchie Cobbs
1178901fadf7SArchie Cobbs /*
1179901fadf7SArchie Cobbs * Initialize sequence number state.
1180901fadf7SArchie Cobbs */
1181901fadf7SArchie Cobbs static void
ng_l2tp_seq_init(priv_p priv)1182901fadf7SArchie Cobbs ng_l2tp_seq_init(priv_p priv)
1183901fadf7SArchie Cobbs {
1184901fadf7SArchie Cobbs struct l2tp_seq *const seq = &priv->seq;
1185901fadf7SArchie Cobbs
1186901fadf7SArchie Cobbs KASSERT(priv->conf.peer_win >= 1,
11877e2b43eeSDavid E. O'Brien ("%s: peer_win is zero", __func__));
1188901fadf7SArchie Cobbs memset(seq, 0, sizeof(*seq));
1189901fadf7SArchie Cobbs seq->cwnd = 1;
1190901fadf7SArchie Cobbs seq->wmax = priv->conf.peer_win;
1191901fadf7SArchie Cobbs if (seq->wmax > L2TP_MAX_XWIN)
1192901fadf7SArchie Cobbs seq->wmax = L2TP_MAX_XWIN;
1193901fadf7SArchie Cobbs seq->ssth = seq->wmax;
1194702f9895SAlexander Motin mtx_init(&seq->mtx, "ng_l2tp", NULL, MTX_DEF);
119589042ff7SGleb Smirnoff callout_init_mtx(&seq->rack_timer, &seq->mtx, CALLOUT_RETURNUNLOCKED);
119689042ff7SGleb Smirnoff callout_init_mtx(&seq->xack_timer, &seq->mtx, CALLOUT_RETURNUNLOCKED);
1197901fadf7SArchie Cobbs }
1198901fadf7SArchie Cobbs
1199901fadf7SArchie Cobbs /*
12001e031324SBjoern A. Zeeb * Set sequence number state as given from user.
12011e031324SBjoern A. Zeeb */
12021e031324SBjoern A. Zeeb static int
ng_l2tp_seq_set(priv_p priv,const struct ng_l2tp_seq_config * conf)12031e031324SBjoern A. Zeeb ng_l2tp_seq_set(priv_p priv, const struct ng_l2tp_seq_config *conf)
12041e031324SBjoern A. Zeeb {
12051e031324SBjoern A. Zeeb struct l2tp_seq *const seq = &priv->seq;
12061e031324SBjoern A. Zeeb
12071e031324SBjoern A. Zeeb /* If node is enabled, deny update to sequence numbers. */
12081e031324SBjoern A. Zeeb if (priv->conf.enabled)
12091e031324SBjoern A. Zeeb return (EBUSY);
12101e031324SBjoern A. Zeeb
12111e031324SBjoern A. Zeeb /* We only can handle the simple cases. */
12121e031324SBjoern A. Zeeb if (conf->xack != conf->nr || conf->ns != conf->rack)
12131e031324SBjoern A. Zeeb return (EINVAL);
12141e031324SBjoern A. Zeeb
12151e031324SBjoern A. Zeeb /* Set ns,nr,rack,xack parameters. */
12161e031324SBjoern A. Zeeb seq->ns = conf->ns;
12171e031324SBjoern A. Zeeb seq->nr = conf->nr;
12181e031324SBjoern A. Zeeb seq->rack = conf->rack;
12191e031324SBjoern A. Zeeb seq->xack = conf->xack;
12201e031324SBjoern A. Zeeb
12211e031324SBjoern A. Zeeb return (0);
12221e031324SBjoern A. Zeeb }
12231e031324SBjoern A. Zeeb
12241e031324SBjoern A. Zeeb /*
1225901fadf7SArchie Cobbs * Adjust sequence number state accordingly after reconfiguration.
1226901fadf7SArchie Cobbs */
1227901fadf7SArchie Cobbs static int
ng_l2tp_seq_adjust(priv_p priv,const struct ng_l2tp_config * conf)1228901fadf7SArchie Cobbs ng_l2tp_seq_adjust(priv_p priv, const struct ng_l2tp_config *conf)
1229901fadf7SArchie Cobbs {
1230901fadf7SArchie Cobbs struct l2tp_seq *const seq = &priv->seq;
1231901fadf7SArchie Cobbs u_int16_t new_wmax;
12320a76c63dSGleb Smirnoff int error = 0;
1233901fadf7SArchie Cobbs
12340a76c63dSGleb Smirnoff SEQ_LOCK(seq);
1235901fadf7SArchie Cobbs /* If disabling node, reset state sequence number */
1236901fadf7SArchie Cobbs if (!conf->enabled) {
1237901fadf7SArchie Cobbs ng_l2tp_seq_reset(priv);
12380a76c63dSGleb Smirnoff SEQ_UNLOCK(seq);
1239901fadf7SArchie Cobbs return (0);
1240901fadf7SArchie Cobbs }
1241901fadf7SArchie Cobbs
1242901fadf7SArchie Cobbs /* Adjust peer's max recv window; it can only increase */
1243901fadf7SArchie Cobbs new_wmax = conf->peer_win;
1244901fadf7SArchie Cobbs if (new_wmax > L2TP_MAX_XWIN)
1245901fadf7SArchie Cobbs new_wmax = L2TP_MAX_XWIN;
1246901fadf7SArchie Cobbs if (new_wmax == 0)
12470a76c63dSGleb Smirnoff ERROUT(EINVAL);
1248901fadf7SArchie Cobbs if (new_wmax < seq->wmax)
12490a76c63dSGleb Smirnoff ERROUT(EBUSY);
1250901fadf7SArchie Cobbs seq->wmax = new_wmax;
1251901fadf7SArchie Cobbs
12520a76c63dSGleb Smirnoff done:
12530a76c63dSGleb Smirnoff SEQ_UNLOCK(seq);
12540a76c63dSGleb Smirnoff return (error);
1255901fadf7SArchie Cobbs }
1256901fadf7SArchie Cobbs
1257901fadf7SArchie Cobbs /*
1258901fadf7SArchie Cobbs * Reset sequence number state.
1259901fadf7SArchie Cobbs */
1260901fadf7SArchie Cobbs static void
ng_l2tp_seq_reset(priv_p priv)1261901fadf7SArchie Cobbs ng_l2tp_seq_reset(priv_p priv)
1262901fadf7SArchie Cobbs {
1263901fadf7SArchie Cobbs struct l2tp_seq *const seq = &priv->seq;
1264901fadf7SArchie Cobbs int i;
1265901fadf7SArchie Cobbs
12660a76c63dSGleb Smirnoff SEQ_LOCK_ASSERT(seq);
1267901fadf7SArchie Cobbs
1268901fadf7SArchie Cobbs /* Stop timers */
1269ae04d304SGleb Smirnoff (void )callout_stop(&seq->rack_timer);
1270ae04d304SGleb Smirnoff (void )callout_stop(&seq->xack_timer);
1271901fadf7SArchie Cobbs
1272901fadf7SArchie Cobbs /* Free retransmit queue */
1273901fadf7SArchie Cobbs for (i = 0; i < L2TP_MAX_XWIN; i++) {
1274901fadf7SArchie Cobbs if (seq->xwin[i] == NULL)
1275901fadf7SArchie Cobbs break;
1276901fadf7SArchie Cobbs m_freem(seq->xwin[i]);
1277901fadf7SArchie Cobbs }
1278901fadf7SArchie Cobbs
1279901fadf7SArchie Cobbs /* Reset session hooks' sequence number states */
1280*6d5f002eSJohn Baldwin NG_NODE_FOREACH_HOOK(priv->node, ng_l2tp_reset_session, NULL);
1281901fadf7SArchie Cobbs
1282901fadf7SArchie Cobbs /* Reset node's sequence number state */
1283702f9895SAlexander Motin seq->ns = 0;
1284702f9895SAlexander Motin seq->nr = 0;
1285702f9895SAlexander Motin seq->rack = 0;
1286702f9895SAlexander Motin seq->xack = 0;
1287901fadf7SArchie Cobbs seq->wmax = L2TP_MAX_XWIN;
1288702f9895SAlexander Motin seq->cwnd = 1;
1289901fadf7SArchie Cobbs seq->ssth = seq->wmax;
1290702f9895SAlexander Motin seq->acks = 0;
1291702f9895SAlexander Motin seq->rexmits = 0;
1292702f9895SAlexander Motin bzero(seq->xwin, sizeof(seq->xwin));
1293901fadf7SArchie Cobbs }
1294901fadf7SArchie Cobbs
1295901fadf7SArchie Cobbs /*
1296901fadf7SArchie Cobbs * Handle receipt of an acknowledgement value (Nr) from peer.
1297901fadf7SArchie Cobbs */
1298901fadf7SArchie Cobbs static void
ng_l2tp_seq_recv_nr(priv_p priv,u_int16_t nr)1299901fadf7SArchie Cobbs ng_l2tp_seq_recv_nr(priv_p priv, u_int16_t nr)
1300901fadf7SArchie Cobbs {
1301901fadf7SArchie Cobbs struct l2tp_seq *const seq = &priv->seq;
1302702f9895SAlexander Motin struct mbuf *xwin[L2TP_MAX_XWIN]; /* partial local copy */
1303901fadf7SArchie Cobbs int nack;
1304702f9895SAlexander Motin int i, j;
1305702f9895SAlexander Motin uint16_t ns;
1306702f9895SAlexander Motin
13070a76c63dSGleb Smirnoff SEQ_LOCK_ASSERT(seq);
1308901fadf7SArchie Cobbs
1309901fadf7SArchie Cobbs /* Verify peer's ACK is in range */
13100a76c63dSGleb Smirnoff if ((nack = L2TP_SEQ_DIFF(nr, seq->rack)) <= 0)
1311901fadf7SArchie Cobbs return; /* duplicate ack */
1312901fadf7SArchie Cobbs if (L2TP_SEQ_DIFF(nr, seq->ns) > 0) {
1313901fadf7SArchie Cobbs priv->stats.recvBadAcks++; /* ack for packet not sent */
1314901fadf7SArchie Cobbs return;
1315901fadf7SArchie Cobbs }
1316901fadf7SArchie Cobbs KASSERT(nack <= L2TP_MAX_XWIN,
13177e2b43eeSDavid E. O'Brien ("%s: nack=%d > %d", __func__, nack, L2TP_MAX_XWIN));
1318901fadf7SArchie Cobbs
1319901fadf7SArchie Cobbs /* Update receive ack stats */
1320901fadf7SArchie Cobbs seq->rack = nr;
1321901fadf7SArchie Cobbs seq->rexmits = 0;
1322901fadf7SArchie Cobbs
1323901fadf7SArchie Cobbs /* Free acknowledged packets and shift up packets in the xmit queue */
1324901fadf7SArchie Cobbs for (i = 0; i < nack; i++)
1325901fadf7SArchie Cobbs m_freem(seq->xwin[i]);
1326901fadf7SArchie Cobbs memmove(seq->xwin, seq->xwin + nack,
1327901fadf7SArchie Cobbs (L2TP_MAX_XWIN - nack) * sizeof(*seq->xwin));
1328901fadf7SArchie Cobbs memset(seq->xwin + (L2TP_MAX_XWIN - nack), 0,
1329901fadf7SArchie Cobbs nack * sizeof(*seq->xwin));
1330901fadf7SArchie Cobbs
1331901fadf7SArchie Cobbs /*
1332901fadf7SArchie Cobbs * Do slow-start/congestion avoidance windowing algorithm described
1333901fadf7SArchie Cobbs * in RFC 2661, Appendix A. Here we handle a multiple ACK as if each
1334901fadf7SArchie Cobbs * ACK had arrived separately.
1335901fadf7SArchie Cobbs */
1336901fadf7SArchie Cobbs if (seq->cwnd < seq->wmax) {
1337901fadf7SArchie Cobbs /* Handle slow start phase */
1338901fadf7SArchie Cobbs if (seq->cwnd < seq->ssth) {
1339901fadf7SArchie Cobbs seq->cwnd += nack;
1340901fadf7SArchie Cobbs nack = 0;
1341901fadf7SArchie Cobbs if (seq->cwnd > seq->ssth) { /* into cg.av. phase */
1342901fadf7SArchie Cobbs nack = seq->cwnd - seq->ssth;
1343901fadf7SArchie Cobbs seq->cwnd = seq->ssth;
1344901fadf7SArchie Cobbs }
1345901fadf7SArchie Cobbs }
1346901fadf7SArchie Cobbs
1347901fadf7SArchie Cobbs /* Handle congestion avoidance phase */
1348901fadf7SArchie Cobbs if (seq->cwnd >= seq->ssth) {
1349901fadf7SArchie Cobbs seq->acks += nack;
1350901fadf7SArchie Cobbs while (seq->acks >= seq->cwnd) {
1351901fadf7SArchie Cobbs seq->acks -= seq->cwnd;
1352901fadf7SArchie Cobbs if (seq->cwnd < seq->wmax)
1353901fadf7SArchie Cobbs seq->cwnd++;
1354901fadf7SArchie Cobbs }
1355901fadf7SArchie Cobbs }
1356901fadf7SArchie Cobbs }
1357901fadf7SArchie Cobbs
1358901fadf7SArchie Cobbs /* Stop xmit timer */
1359206fa244SAlexander Motin if (callout_active(&seq->rack_timer))
1360ae04d304SGleb Smirnoff (void )callout_stop(&seq->rack_timer);
1361901fadf7SArchie Cobbs
1362901fadf7SArchie Cobbs /* If transmit queue is empty, we're done for now */
13630a76c63dSGleb Smirnoff if (seq->xwin[0] == NULL)
1364901fadf7SArchie Cobbs return;
1365901fadf7SArchie Cobbs
1366901fadf7SArchie Cobbs /* Start restransmit timer again */
1367ae04d304SGleb Smirnoff callout_reset(&seq->rack_timer, hz, ng_l2tp_seq_rack_timeout,
1368ae04d304SGleb Smirnoff priv->node);
1369901fadf7SArchie Cobbs
1370901fadf7SArchie Cobbs /*
1371901fadf7SArchie Cobbs * Send more packets, trying to keep peer's receive window full.
1372702f9895SAlexander Motin * Make copy of everything we need before lock release.
1373702f9895SAlexander Motin */
1374702f9895SAlexander Motin ns = seq->ns;
1375702f9895SAlexander Motin j = 0;
1376702f9895SAlexander Motin while ((i = L2TP_SEQ_DIFF(seq->ns, seq->rack)) < seq->cwnd
1377702f9895SAlexander Motin && seq->xwin[i] != NULL) {
1378702f9895SAlexander Motin xwin[j++] = seq->xwin[i];
1379702f9895SAlexander Motin seq->ns++;
1380702f9895SAlexander Motin }
1381702f9895SAlexander Motin
1382702f9895SAlexander Motin /*
1383702f9895SAlexander Motin * Send prepared.
1384901fadf7SArchie Cobbs * If there is a memory error, pretend packet was sent, as it
1385901fadf7SArchie Cobbs * will get retransmitted later anyway.
1386901fadf7SArchie Cobbs */
1387702f9895SAlexander Motin for (i = 0; i < j; i++) {
1388702f9895SAlexander Motin struct mbuf *m;
1389eb1b1807SGleb Smirnoff if ((m = L2TP_COPY_MBUF(xwin[i], M_NOWAIT)) == NULL)
1390901fadf7SArchie Cobbs priv->stats.memoryFailures++;
13910a76c63dSGleb Smirnoff else {
1392702f9895SAlexander Motin ng_l2tp_xmit_ctrl(priv, m, ns);
13930a76c63dSGleb Smirnoff SEQ_LOCK(seq);
13940a76c63dSGleb Smirnoff }
1395702f9895SAlexander Motin ns++;
1396901fadf7SArchie Cobbs }
1397901fadf7SArchie Cobbs }
1398901fadf7SArchie Cobbs
1399901fadf7SArchie Cobbs /*
1400901fadf7SArchie Cobbs * Handle an ack timeout. We have an outstanding ack that we
1401901fadf7SArchie Cobbs * were hoping to piggy-back, but haven't, so send a ZLB.
1402901fadf7SArchie Cobbs */
1403901fadf7SArchie Cobbs static void
ng_l2tp_seq_xack_timeout(void * arg)1404ae04d304SGleb Smirnoff ng_l2tp_seq_xack_timeout(void *arg)
1405901fadf7SArchie Cobbs {
1406ae04d304SGleb Smirnoff const node_p node = arg;
1407901fadf7SArchie Cobbs const priv_p priv = NG_NODE_PRIVATE(node);
1408ae04d304SGleb Smirnoff struct epoch_tracker et;
1409901fadf7SArchie Cobbs struct l2tp_seq *const seq = &priv->seq;
1410901fadf7SArchie Cobbs
141189042ff7SGleb Smirnoff SEQ_LOCK_ASSERT(seq);
141289042ff7SGleb Smirnoff MPASS(!callout_pending(&seq->xack_timer));
141389042ff7SGleb Smirnoff MPASS(callout_active(&seq->xack_timer));
1414901fadf7SArchie Cobbs
1415ae04d304SGleb Smirnoff NET_EPOCH_ENTER(et);
1416ae04d304SGleb Smirnoff CURVNET_SET(node->nd_vnet);
1417206fa244SAlexander Motin /* Send a ZLB */
1418901fadf7SArchie Cobbs ng_l2tp_xmit_ctrl(priv, NULL, seq->ns);
1419ae04d304SGleb Smirnoff CURVNET_RESTORE();
1420ae04d304SGleb Smirnoff NET_EPOCH_EXIT(et);
1421901fadf7SArchie Cobbs
1422206fa244SAlexander Motin /* callout_deactivate() is not needed here
1423ae04d304SGleb Smirnoff as callout_stop() was called by ng_l2tp_xmit_ctrl() */
1424901fadf7SArchie Cobbs }
1425901fadf7SArchie Cobbs
1426901fadf7SArchie Cobbs /*
1427901fadf7SArchie Cobbs * Handle a transmit timeout. The peer has failed to respond
1428901fadf7SArchie Cobbs * with an ack for our packet, so retransmit it.
1429901fadf7SArchie Cobbs */
1430901fadf7SArchie Cobbs static void
ng_l2tp_seq_rack_timeout(void * arg)1431ae04d304SGleb Smirnoff ng_l2tp_seq_rack_timeout(void *arg)
1432901fadf7SArchie Cobbs {
1433ae04d304SGleb Smirnoff const node_p node = arg;
1434901fadf7SArchie Cobbs const priv_p priv = NG_NODE_PRIVATE(node);
1435ae04d304SGleb Smirnoff struct epoch_tracker et;
1436901fadf7SArchie Cobbs struct l2tp_seq *const seq = &priv->seq;
1437901fadf7SArchie Cobbs struct mbuf *m;
1438901fadf7SArchie Cobbs u_int delay;
1439901fadf7SArchie Cobbs
144089042ff7SGleb Smirnoff SEQ_LOCK_ASSERT(seq);
144189042ff7SGleb Smirnoff MPASS(seq->xwin[0]);
144289042ff7SGleb Smirnoff MPASS(!callout_pending(&seq->rack_timer));
144389042ff7SGleb Smirnoff MPASS(callout_active(&seq->rack_timer));
1444e62e4b85SMark Johnston
1445ae04d304SGleb Smirnoff NET_EPOCH_ENTER(et);
1446ae04d304SGleb Smirnoff CURVNET_SET(node->nd_vnet);
1447ae04d304SGleb Smirnoff
1448901fadf7SArchie Cobbs priv->stats.xmitRetransmits++;
1449901fadf7SArchie Cobbs
1450901fadf7SArchie Cobbs /* Have we reached the retransmit limit? If so, notify owner. */
145140097c5dSAlexander Motin if (seq->rexmits++ >= priv->conf.rexmit_max)
1452901fadf7SArchie Cobbs ng_l2tp_seq_failure(priv);
1453901fadf7SArchie Cobbs
1454901fadf7SArchie Cobbs /* Restart timer, this time with an increased delay */
1455901fadf7SArchie Cobbs delay = (seq->rexmits > 12) ? (1 << 12) : (1 << seq->rexmits);
145640097c5dSAlexander Motin if (delay > priv->conf.rexmit_max_to)
145740097c5dSAlexander Motin delay = priv->conf.rexmit_max_to;
1458ae04d304SGleb Smirnoff callout_reset(&seq->rack_timer, hz * delay, ng_l2tp_seq_rack_timeout,
1459ae04d304SGleb Smirnoff node);
1460901fadf7SArchie Cobbs
1461901fadf7SArchie Cobbs /* Do slow-start/congestion algorithm windowing algorithm */
1462af63939cSAlexander Motin seq->ns = seq->rack;
1463901fadf7SArchie Cobbs seq->ssth = (seq->cwnd + 1) / 2;
1464901fadf7SArchie Cobbs seq->cwnd = 1;
1465901fadf7SArchie Cobbs seq->acks = 0;
1466901fadf7SArchie Cobbs
1467901fadf7SArchie Cobbs /* Retransmit oldest unack'd packet */
146830b7addfSGleb Smirnoff m = L2TP_COPY_MBUF(seq->xwin[0], M_NOWAIT);
14690a76c63dSGleb Smirnoff if (m == NULL) {
14700a76c63dSGleb Smirnoff SEQ_UNLOCK(seq);
1471901fadf7SArchie Cobbs priv->stats.memoryFailures++;
14720a76c63dSGleb Smirnoff } else
1473af63939cSAlexander Motin ng_l2tp_xmit_ctrl(priv, m, seq->ns++);
1474901fadf7SArchie Cobbs
1475ae04d304SGleb Smirnoff CURVNET_RESTORE();
1476ae04d304SGleb Smirnoff NET_EPOCH_EXIT(et);
1477ae04d304SGleb Smirnoff
1478206fa244SAlexander Motin /* callout_deactivate() is not needed here
1479206fa244SAlexander Motin as ng_callout() is getting called each time */
1480901fadf7SArchie Cobbs }
1481901fadf7SArchie Cobbs
1482901fadf7SArchie Cobbs /*
1483901fadf7SArchie Cobbs * Transmit a control stream packet, payload optional.
1484901fadf7SArchie Cobbs * The transmit sequence number is not incremented.
14850a76c63dSGleb Smirnoff * Requires seq lock, returns unlocked.
1486901fadf7SArchie Cobbs */
1487901fadf7SArchie Cobbs static int
ng_l2tp_xmit_ctrl(priv_p priv,struct mbuf * m,u_int16_t ns)1488901fadf7SArchie Cobbs ng_l2tp_xmit_ctrl(priv_p priv, struct mbuf *m, u_int16_t ns)
1489901fadf7SArchie Cobbs {
1490901fadf7SArchie Cobbs struct l2tp_seq *const seq = &priv->seq;
1491148ac1daSAlexander Motin uint8_t *p;
14920a76c63dSGleb Smirnoff uint16_t nr, session_id = 0;
1493901fadf7SArchie Cobbs int error;
1494901fadf7SArchie Cobbs
14950a76c63dSGleb Smirnoff SEQ_LOCK_ASSERT(seq);
1496702f9895SAlexander Motin
1497206fa244SAlexander Motin /* Stop ack timer: we're sending an ack with this packet.
1498206fa244SAlexander Motin Doing this before to keep state predictable after error. */
1499206fa244SAlexander Motin if (callout_active(&seq->xack_timer))
1500ae04d304SGleb Smirnoff (void )callout_stop(&seq->xack_timer);
1501206fa244SAlexander Motin
15020a76c63dSGleb Smirnoff nr = seq->xack = seq->nr;
1503206fa244SAlexander Motin
15040a76c63dSGleb Smirnoff SEQ_UNLOCK(seq);
1505702f9895SAlexander Motin
1506901fadf7SArchie Cobbs /* If no mbuf passed, send an empty packet (ZLB) */
1507901fadf7SArchie Cobbs if (m == NULL) {
1508901fadf7SArchie Cobbs /* Create a new mbuf for ZLB packet */
1509eb1b1807SGleb Smirnoff MGETHDR(m, M_NOWAIT, MT_DATA);
1510901fadf7SArchie Cobbs if (m == NULL) {
1511901fadf7SArchie Cobbs priv->stats.memoryFailures++;
1512901fadf7SArchie Cobbs return (ENOBUFS);
1513901fadf7SArchie Cobbs }
1514901fadf7SArchie Cobbs m->m_len = m->m_pkthdr.len = 12;
1515901fadf7SArchie Cobbs m->m_pkthdr.rcvif = NULL;
1516901fadf7SArchie Cobbs priv->stats.xmitZLBs++;
1517901fadf7SArchie Cobbs } else {
1518901fadf7SArchie Cobbs /* Strip off session ID */
1519901fadf7SArchie Cobbs if (m->m_len < 2 && (m = m_pullup(m, 2)) == NULL) {
1520901fadf7SArchie Cobbs priv->stats.memoryFailures++;
1521901fadf7SArchie Cobbs return (ENOBUFS);
1522901fadf7SArchie Cobbs }
1523280d6bd7SAlexander Motin session_id = (mtod(m, u_int8_t *)[0] << 8) + mtod(m, u_int8_t *)[1];
1524901fadf7SArchie Cobbs
1525901fadf7SArchie Cobbs /* Make room for L2TP header */
1526eb1b1807SGleb Smirnoff M_PREPEND(m, 10, M_NOWAIT); /* - 2 + 12 = 10 */
1527901fadf7SArchie Cobbs if (m == NULL) {
1528901fadf7SArchie Cobbs priv->stats.memoryFailures++;
1529901fadf7SArchie Cobbs return (ENOBUFS);
1530901fadf7SArchie Cobbs }
1531310dc5a4SBjoern A. Zeeb
1532310dc5a4SBjoern A. Zeeb /*
1533310dc5a4SBjoern A. Zeeb * The below requires 12 contiguous bytes for the L2TP header
1534310dc5a4SBjoern A. Zeeb * to be written into.
1535310dc5a4SBjoern A. Zeeb */
1536310dc5a4SBjoern A. Zeeb m = m_pullup(m, 12);
1537310dc5a4SBjoern A. Zeeb if (m == NULL) {
1538310dc5a4SBjoern A. Zeeb priv->stats.memoryFailures++;
1539310dc5a4SBjoern A. Zeeb return (ENOBUFS);
1540310dc5a4SBjoern A. Zeeb }
1541901fadf7SArchie Cobbs }
1542901fadf7SArchie Cobbs
1543901fadf7SArchie Cobbs /* Fill in L2TP header */
1544148ac1daSAlexander Motin p = mtod(m, u_int8_t *);
1545148ac1daSAlexander Motin p[0] = L2TP_CTRL_HDR >> 8;
1546148ac1daSAlexander Motin p[1] = L2TP_CTRL_HDR & 0xff;
1547148ac1daSAlexander Motin p[2] = m->m_pkthdr.len >> 8;
1548148ac1daSAlexander Motin p[3] = m->m_pkthdr.len & 0xff;
1549148ac1daSAlexander Motin p[4] = priv->conf.peer_id >> 8;
1550148ac1daSAlexander Motin p[5] = priv->conf.peer_id & 0xff;
1551148ac1daSAlexander Motin p[6] = session_id >> 8;
1552148ac1daSAlexander Motin p[7] = session_id & 0xff;
1553148ac1daSAlexander Motin p[8] = ns >> 8;
1554148ac1daSAlexander Motin p[9] = ns & 0xff;
15550a76c63dSGleb Smirnoff p[10] = nr >> 8;
15560a76c63dSGleb Smirnoff p[11] = nr & 0xff;
1557901fadf7SArchie Cobbs
1558901fadf7SArchie Cobbs /* Update sequence number info and stats */
1559901fadf7SArchie Cobbs priv->stats.xmitPackets++;
1560901fadf7SArchie Cobbs priv->stats.xmitOctets += m->m_pkthdr.len;
1561901fadf7SArchie Cobbs
1562901fadf7SArchie Cobbs /* Send packet */
15633ca24c28SJulian Elischer NG_SEND_DATA_ONLY(error, priv->lower, m);
1564901fadf7SArchie Cobbs return (error);
1565901fadf7SArchie Cobbs }
1566901fadf7SArchie Cobbs
1567901fadf7SArchie Cobbs #ifdef INVARIANTS
1568901fadf7SArchie Cobbs /*
1569901fadf7SArchie Cobbs * Sanity check sequence number state.
1570901fadf7SArchie Cobbs */
1571901fadf7SArchie Cobbs static void
ng_l2tp_seq_check(struct l2tp_seq * seq)1572901fadf7SArchie Cobbs ng_l2tp_seq_check(struct l2tp_seq *seq)
1573901fadf7SArchie Cobbs {
1574702f9895SAlexander Motin int self_unack, peer_unack;
1575901fadf7SArchie Cobbs int i;
1576901fadf7SArchie Cobbs
15777e2b43eeSDavid E. O'Brien #define CHECK(p) KASSERT((p), ("%s: not: %s", __func__, #p))
1578901fadf7SArchie Cobbs
15790a76c63dSGleb Smirnoff SEQ_LOCK_ASSERT(seq);
1580702f9895SAlexander Motin
1581702f9895SAlexander Motin self_unack = L2TP_SEQ_DIFF(seq->nr, seq->xack);
1582702f9895SAlexander Motin peer_unack = L2TP_SEQ_DIFF(seq->ns, seq->rack);
1583901fadf7SArchie Cobbs CHECK(seq->wmax <= L2TP_MAX_XWIN);
1584901fadf7SArchie Cobbs CHECK(seq->cwnd >= 1);
1585901fadf7SArchie Cobbs CHECK(seq->cwnd <= seq->wmax);
1586901fadf7SArchie Cobbs CHECK(seq->ssth >= 1);
1587901fadf7SArchie Cobbs CHECK(seq->ssth <= seq->wmax);
1588901fadf7SArchie Cobbs if (seq->cwnd < seq->ssth)
1589901fadf7SArchie Cobbs CHECK(seq->acks == 0);
1590901fadf7SArchie Cobbs else
1591901fadf7SArchie Cobbs CHECK(seq->acks <= seq->cwnd);
1592901fadf7SArchie Cobbs CHECK(self_unack >= 0);
1593901fadf7SArchie Cobbs CHECK(peer_unack >= 0);
1594901fadf7SArchie Cobbs CHECK(peer_unack <= seq->wmax);
1595206fa244SAlexander Motin CHECK((self_unack == 0) ^ callout_active(&seq->xack_timer));
1596206fa244SAlexander Motin CHECK((peer_unack == 0) ^ callout_active(&seq->rack_timer));
1597901fadf7SArchie Cobbs for (i = 0; i < peer_unack; i++)
1598901fadf7SArchie Cobbs CHECK(seq->xwin[i] != NULL);
1599901fadf7SArchie Cobbs for ( ; i < seq->cwnd; i++) /* verify peer's recv window full */
1600901fadf7SArchie Cobbs CHECK(seq->xwin[i] == NULL);
1601901fadf7SArchie Cobbs
1602901fadf7SArchie Cobbs #undef CHECK
1603901fadf7SArchie Cobbs }
1604901fadf7SArchie Cobbs #endif /* INVARIANTS */
1605