6 * Copyright (c) 1996-1999 Whistle Communications, Inc.
9 * Subject to the following obligations and disclaimer of warranty, use and
10 * redistribution of this software, in source or object code forms, with or
11 * without modifications are expressly permitted by Whistle Communications;
12 * provided, however, that:
13 * 1. Any and all reproductions of the source or object code must include the
14 * copyright notice above and the following disclaimer of warranties; and
15 * 2. No rights are granted, in any manner or form, to use Whistle
16 * Communications, Inc. trademarks, including the mark "WHISTLE
17 * COMMUNICATIONS" on advertising, endorsements, or otherwise except as
18 * such appears in the above copyright notice or in the software.
20 * THIS SOFTWARE IS BEING PROVIDED BY WHISTLE COMMUNICATIONS "AS IS", AND
21 * TO THE MAXIMUM EXTENT PERMITTED BY LAW, WHISTLE COMMUNICATIONS MAKES NO
22 * REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, REGARDING THIS SOFTWARE,
23 * INCLUDING WITHOUT LIMITATION, ANY AND ALL IMPLIED WARRANTIES OF
24 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT.
25 * WHISTLE COMMUNICATIONS DOES NOT WARRANT, GUARANTEE, OR MAKE ANY
26 * REPRESENTATIONS REGARDING THE USE OF, OR THE RESULTS OF THE USE OF THIS
27 * SOFTWARE IN TERMS OF ITS CORRECTNESS, ACCURACY, RELIABILITY OR OTHERWISE.
28 * IN NO EVENT SHALL WHISTLE COMMUNICATIONS BE LIABLE FOR ANY DAMAGES
29 * RESULTING FROM OR ARISING OUT OF ANY USE OF THIS SOFTWARE, INCLUDING
30 * WITHOUT LIMITATION, ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
31 * PUNITIVE, OR CONSEQUENTIAL DAMAGES, PROCUREMENT OF SUBSTITUTE GOODS OR
32 * SERVICES, LOSS OF USE, DATA OR PROFITS, HOWEVER CAUSED AND UNDER ANY
33 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
35 * THIS SOFTWARE, EVEN IF WHISTLE COMMUNICATIONS IS ADVISED OF THE POSSIBILITY
38 * Author: Julian Elischer <julian@freebsd.org>
40 * $FreeBSD: src/sys/netgraph/ng_frame_relay.c,v 1.25 2006/01/14 21:49:31 glebius Exp $
41 * $Whistle: ng_frame_relay.c,v 1.20 1999/11/01 09:24:51 julian Exp $
45 * This node implements the frame relay protocol, not including
46 * the LMI line management. This means basically keeping track
47 * of which DLCI's are active, doing frame (de)multiplexing, etc.
49 * It has a 'downstream' hook that goes to the line, and a
50 * hook for each DLCI (eg, 'dlci16').
53 #include <sys/param.h>
54 #include <sys/systm.h>
55 #include <sys/kernel.h>
56 #include <sys/errno.h>
57 #include <sys/malloc.h>
59 #include <sys/syslog.h>
60 #include <sys/ctype.h>
62 #include <netgraph7/ng_message.h>
63 #include <netgraph7/netgraph.h>
64 #include "ng_frame_relay.h"
67 * Line info, and status per channel.
69 struct ctxinfo
{ /* one per active hook */
71 #define CHAN_VALID 0x01 /* assigned to a channel */
72 #define CHAN_ACTIVE 0x02 /* bottom level active */
73 int dlci
; /* the dlci assigned to this context */
74 hook_p hook
; /* if there's a hook assigned.. */
77 #define MAX_CT 16 /* # of dlci's active at a time (POWER OF 2!) */
79 int unit
; /* which card are we? */
80 int datahooks
; /* number of data hooks attached */
81 node_p node
; /* netgraph node */
82 int addrlen
; /* address header length */
83 int flags
; /* state */
85 u_char remote_seq
; /* sequence number the remote sent */
86 u_char local_seq
; /* sequence number the remote rcvd */
87 u_short ALT
[1024]; /* map DLCIs to CTX */
88 #define CTX_VALID 0x8000 /* this bit means it's a valid CTX */
89 #define CTX_VALUE (MAX_CT - 1) /* mask for context part */
90 struct ctxinfo channel
[MAX_CT
];
91 struct ctxinfo downstream
;
93 typedef struct frmrel_softc
*sc_p
;
95 #define BYTEX_EA 0x01 /* End Address. Always 0 on byte1 */
96 #define BYTE1_C_R 0x02
97 #define BYTE2_FECN 0x08 /* forwards congestion notification */
98 #define BYTE2_BECN 0x04 /* Backward congestion notification */
99 #define BYTE2_DE 0x02 /* Discard elligability */
100 #define LASTBYTE_D_C 0x02 /* last byte is dl_core or dlci info */
102 /* Used to do headers */
103 static const struct segment
{
114 #define SHIFTIN(segment, byte, dlci) \
116 (dlci) <<= (segment)->width; \
118 (((byte) & (segment)->mask) >> (segment)->shift); \
121 #define SHIFTOUT(segment, byte, dlci) \
123 (byte) |= (((dlci) << (segment)->shift) & (segment)->mask); \
124 (dlci) >>= (segment)->width; \
127 /* Netgraph methods */
128 static ng_constructor_t ngfrm_constructor
;
129 static ng_shutdown_t ngfrm_shutdown
;
130 static ng_newhook_t ngfrm_newhook
;
131 static ng_rcvdata_t ngfrm_rcvdata
;
132 static ng_disconnect_t ngfrm_disconnect
;
134 /* Other internal functions */
135 static int ngfrm_decode(node_p node
, item_p item
);
136 static int ngfrm_addrlen(char *hdr
);
137 static int ngfrm_allocate_CTX(sc_p sc
, int dlci
);
140 static struct ng_type typestruct
= {
141 .version
= NG_ABI_VERSION
,
142 .name
= NG_FRAMERELAY_NODE_TYPE
,
143 .constructor
= ngfrm_constructor
,
144 .shutdown
= ngfrm_shutdown
,
145 .newhook
= ngfrm_newhook
,
146 .rcvdata
= ngfrm_rcvdata
,
147 .disconnect
= ngfrm_disconnect
,
149 NETGRAPH_INIT(framerelay
, &typestruct
);
152 * Given a DLCI, return the index of the context table entry for it,
153 * Allocating a new one if needs be, or -1 if none available.
156 ngfrm_allocate_CTX(sc_p sc
, int dlci
)
158 u_int ctxnum
= -1; /* what ctx number we are using */
159 volatile struct ctxinfo
*CTXp
= NULL
;
161 /* Sanity check the dlci value */
165 /* Check to see if we already have an entry for this DLCI */
167 if ((ctxnum
= sc
->ALT
[dlci
] & CTX_VALUE
) < MAX_CT
) {
168 CTXp
= sc
->channel
+ ctxnum
;
171 sc
->ALT
[dlci
] = 0; /* paranoid but... */
176 * If the index has no valid entry yet, then we need to allocate a
180 for (ctxnum
= 0; ctxnum
< MAX_CT
; ctxnum
++) {
182 * If the VALID flag is empty it is unused
184 if ((sc
->channel
[ctxnum
].flags
& CHAN_VALID
) == 0) {
185 bzero(sc
->channel
+ ctxnum
,
186 sizeof(struct ctxinfo
));
187 CTXp
= sc
->channel
+ ctxnum
;
188 sc
->ALT
[dlci
] = ctxnum
| CTX_VALID
;
189 sc
->channel
[ctxnum
].dlci
= dlci
;
190 sc
->channel
[ctxnum
].flags
= CHAN_VALID
;
197 * If we still don't have a CTX pointer, then we never found a free
198 * spot so give up now..
201 log(LOG_ERR
, "No CTX available for dlci %d\n", dlci
);
211 ngfrm_constructor(node_p node
)
215 sc
= kmalloc(sizeof(*sc
), M_NETGRAPH
, M_WAITOK
| M_NULLOK
| M_ZERO
);
218 sc
->addrlen
= 2; /* default */
220 /* Link the node and our private info */
221 NG_NODE_SET_PRIVATE(node
, sc
);
229 * We allow hooks called "debug", "downstream" and dlci[0-1023]
230 * The hook's private info points to our stash of info about that
231 * channel. A NULL pointer is debug and a DLCI of -1 means downstream.
234 ngfrm_newhook(node_p node
, hook_p hook
, const char *name
)
236 const sc_p sc
= NG_NODE_PRIVATE(node
);
242 /* Check if it's our friend the control hook */
243 if (strcmp(name
, NG_FRAMERELAY_HOOK_DEBUG
) == 0) {
244 NG_HOOK_SET_PRIVATE(hook
, NULL
); /* paranoid */
249 * All other hooks either start with 'dlci' and have a decimal
250 * trailing channel number up to 4 digits, or are the downstream
253 if (strncmp(name
, NG_FRAMERELAY_HOOK_DLCI
,
254 strlen(NG_FRAMERELAY_HOOK_DLCI
)) != 0) {
256 /* It must be the downstream connection */
257 if (strcmp(name
, NG_FRAMERELAY_HOOK_DOWNSTREAM
) != 0)
260 /* Make sure we haven't already got one (paranoid) */
261 if (sc
->downstream
.hook
)
265 NG_HOOK_SET_PRIVATE(hook
, &sc
->downstream
);
266 sc
->downstream
.hook
= hook
;
267 sc
->downstream
.dlci
= -1;
268 sc
->downstream
.flags
|= CHAN_ACTIVE
;
273 /* Must be a dlci hook at this point */
274 cp
= name
+ strlen(NG_FRAMERELAY_HOOK_DLCI
);
275 if (!isdigit(*cp
) || (cp
[0] == '0' && cp
[1] != '\0'))
277 dlci
= (int)strtoul(cp
, &eptr
, 10);
278 if (*eptr
!= '\0' || dlci
< 0 || dlci
> 1023)
282 * We have a dlci, now either find it, or allocate it. It's possible
283 * that we might have seen packets for it already and made an entry
286 ctxnum
= ngfrm_allocate_CTX(sc
, dlci
);
291 * Be paranoid: if it's got a hook already, that dlci is in use .
292 * Generic code can not catch all the synonyms (e.g. dlci016 vs
295 if (sc
->channel
[ctxnum
].hook
!= NULL
)
299 * Put our hooks into it (pun not intended)
301 sc
->channel
[ctxnum
].flags
|= CHAN_ACTIVE
;
302 NG_HOOK_SET_PRIVATE(hook
, sc
->channel
+ ctxnum
);
303 sc
->channel
[ctxnum
].hook
= hook
;
309 * Count up the size of the address header if we don't already know
312 ngfrm_addrlen(char *hdr
)
314 if (hdr
[0] & BYTEX_EA
)
316 if (hdr
[1] & BYTEX_EA
)
318 if (hdr
[2] & BYTEX_EA
)
320 if (hdr
[3] & BYTEX_EA
)
326 * Receive data packet
329 ngfrm_rcvdata(hook_p hook
, item_p item
)
331 struct ctxinfo
*const ctxp
= NG_HOOK_PRIVATE(hook
);
332 struct mbuf
*m
= NULL
;
339 /* Data doesn't come in from just anywhere (e.g debug hook) */
345 /* If coming from downstream, decode it to a channel */
348 return (ngfrm_decode(NG_HOOK_NODE(hook
), item
));
351 /* Derive the softc we will need */
352 sc
= NG_NODE_PRIVATE(NG_HOOK_NODE(hook
));
354 /* If there is no live channel, throw it away */
355 if ((sc
->downstream
.hook
== NULL
)
356 || ((ctxp
->flags
& CHAN_ACTIVE
) == 0)) {
361 /* Store the DLCI on the front of the packet */
364 alen
= 2; /* default value for transmit */
365 M_PREPEND(m
, alen
, M_NOWAIT
);
370 data
= mtod(m
, char *);
373 * Shift the lowest bits into the address field untill we are done.
374 * First byte is MSBits of addr so work backwards.
378 data
[0] = data
[1] = '\0';
379 SHIFTOUT(makeup
+ 1, data
[1], dlci
);
380 SHIFTOUT(makeup
+ 0, data
[0], dlci
);
384 data
[0] = data
[1] = data
[2] = '\0';
385 SHIFTOUT(makeup
+ 3, data
[2], dlci
); /* 3 and 2 is correct */
386 SHIFTOUT(makeup
+ 1, data
[1], dlci
);
387 SHIFTOUT(makeup
+ 0, data
[0], dlci
);
391 data
[0] = data
[1] = data
[2] = data
[3] = '\0';
392 SHIFTOUT(makeup
+ 3, data
[3], dlci
);
393 SHIFTOUT(makeup
+ 2, data
[2], dlci
);
394 SHIFTOUT(makeup
+ 1, data
[1], dlci
);
395 SHIFTOUT(makeup
+ 0, data
[0], dlci
);
403 NG_FWD_NEW_DATA(error
, item
, sc
->downstream
.hook
, m
);
413 * Decode an incoming frame coming from the switch
416 ngfrm_decode(node_p node
, item_p item
)
418 const sc_p sc
= NG_NODE_PRIVATE(node
);
427 if (m
->m_len
< 4 && (m
= m_pullup(m
, 4)) == NULL
) {
431 data
= mtod(m
, char *);
432 if ((alen
= sc
->addrlen
) == 0) {
433 sc
->addrlen
= alen
= ngfrm_addrlen(data
);
437 SHIFTIN(makeup
+ 0, data
[0], dlci
);
438 SHIFTIN(makeup
+ 1, data
[1], dlci
);
441 SHIFTIN(makeup
+ 0, data
[0], dlci
);
442 SHIFTIN(makeup
+ 1, data
[1], dlci
);
443 SHIFTIN(makeup
+ 3, data
[2], dlci
); /* 3 and 2 is correct */
446 SHIFTIN(makeup
+ 0, data
[0], dlci
);
447 SHIFTIN(makeup
+ 1, data
[1], dlci
);
448 SHIFTIN(makeup
+ 2, data
[2], dlci
);
449 SHIFTIN(makeup
+ 3, data
[3], dlci
);
460 ctxnum
= sc
->ALT
[dlci
];
461 if ((ctxnum
& CTX_VALID
) && sc
->channel
[ctxnum
&= CTX_VALUE
].hook
) {
464 NG_FWD_NEW_DATA(error
, item
, sc
->channel
[ctxnum
].hook
, m
);
479 ngfrm_shutdown(node_p node
)
481 const sc_p sc
= NG_NODE_PRIVATE(node
);
483 NG_NODE_SET_PRIVATE(node
, NULL
);
484 kfree(sc
, M_NETGRAPH
);
492 * Invalidate the private data associated with this dlci.
493 * For this type, removal of the last link resets tries to destroy the node.
496 ngfrm_disconnect(hook_p hook
)
498 const sc_p sc
= NG_NODE_PRIVATE(NG_HOOK_NODE(hook
));
499 struct ctxinfo
*const cp
= NG_HOOK_PRIVATE(hook
);
502 /* If it's a regular dlci hook, then free resources etc.. */
511 if ((NG_NODE_NUMHOOKS(NG_HOOK_NODE(hook
)) == 0)
512 && (NG_NODE_IS_VALID(NG_HOOK_NODE(hook
))))
513 ng_rmnode_self(NG_HOOK_NODE(hook
));