4 * This code REQUIRES 2.1.15 or higher/ NET3.038
7 * This module is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version
10 * 2 of the License, or (at your option) any later version.
13 * LAPB 001 Jonathan Naylor Started Coding
16 #include <linux/errno.h>
17 #include <linux/types.h>
18 #include <linux/socket.h>
20 #include <linux/kernel.h>
21 #include <linux/timer.h>
22 #include <linux/string.h>
23 #include <linux/sockios.h>
24 #include <linux/net.h>
25 #include <linux/inet.h>
26 #include <linux/skbuff.h>
28 #include <asm/uaccess.h>
29 #include <asm/system.h>
30 #include <linux/fcntl.h>
32 #include <linux/interrupt.h>
36 * This routine purges all the queues of frames.
38 void lapb_clear_queues(struct lapb_cb
*lapb
)
40 skb_queue_purge(&lapb
->write_queue
);
41 skb_queue_purge(&lapb
->ack_queue
);
45 * This routine purges the input queue of those frames that have been
46 * acknowledged. This replaces the boxes labelled "V(a) <- N(r)" on the
49 void lapb_frames_acked(struct lapb_cb
*lapb
, unsigned short nr
)
54 modulus
= (lapb
->mode
& LAPB_EXTENDED
) ? LAPB_EMODULUS
: LAPB_SMODULUS
;
57 * Remove all the ack-ed frames from the ack queue.
60 while (skb_peek(&lapb
->ack_queue
) && lapb
->va
!= nr
) {
61 skb
= skb_dequeue(&lapb
->ack_queue
);
63 lapb
->va
= (lapb
->va
+ 1) % modulus
;
67 void lapb_requeue_frames(struct lapb_cb
*lapb
)
69 struct sk_buff
*skb
, *skb_prev
= NULL
;
72 * Requeue all the un-ack-ed frames on the output queue to be picked
73 * up by lapb_kick called from the timer. This arrangement handles the
74 * possibility of an empty output queue.
76 while ((skb
= skb_dequeue(&lapb
->ack_queue
)) != NULL
) {
78 skb_queue_head(&lapb
->write_queue
, skb
);
80 skb_append(skb_prev
, skb
, &lapb
->write_queue
);
86 * Validate that the value of nr is between va and vs. Return true or
89 int lapb_validate_nr(struct lapb_cb
*lapb
, unsigned short nr
)
91 unsigned short vc
= lapb
->va
;
94 modulus
= (lapb
->mode
& LAPB_EXTENDED
) ? LAPB_EMODULUS
: LAPB_SMODULUS
;
96 while (vc
!= lapb
->vs
) {
99 vc
= (vc
+ 1) % modulus
;
102 return nr
== lapb
->vs
;
106 * This routine is the centralised routine for parsing the control
107 * information for the different frame formats.
109 int lapb_decode(struct lapb_cb
*lapb
, struct sk_buff
*skb
,
110 struct lapb_frame
*frame
)
112 frame
->type
= LAPB_ILLEGAL
;
115 printk(KERN_DEBUG
"lapb: (%p) S%d RX %02X %02X %02X\n",
116 lapb
->dev
, lapb
->state
,
117 skb
->data
[0], skb
->data
[1], skb
->data
[2]);
120 /* We always need to look at 2 bytes, sometimes we need
121 * to look at 3 and those cases are handled below.
123 if (!pskb_may_pull(skb
, 2))
126 if (lapb
->mode
& LAPB_MLP
) {
127 if (lapb
->mode
& LAPB_DCE
) {
128 if (skb
->data
[0] == LAPB_ADDR_D
)
129 frame
->cr
= LAPB_COMMAND
;
130 if (skb
->data
[0] == LAPB_ADDR_C
)
131 frame
->cr
= LAPB_RESPONSE
;
133 if (skb
->data
[0] == LAPB_ADDR_C
)
134 frame
->cr
= LAPB_COMMAND
;
135 if (skb
->data
[0] == LAPB_ADDR_D
)
136 frame
->cr
= LAPB_RESPONSE
;
139 if (lapb
->mode
& LAPB_DCE
) {
140 if (skb
->data
[0] == LAPB_ADDR_B
)
141 frame
->cr
= LAPB_COMMAND
;
142 if (skb
->data
[0] == LAPB_ADDR_A
)
143 frame
->cr
= LAPB_RESPONSE
;
145 if (skb
->data
[0] == LAPB_ADDR_A
)
146 frame
->cr
= LAPB_COMMAND
;
147 if (skb
->data
[0] == LAPB_ADDR_B
)
148 frame
->cr
= LAPB_RESPONSE
;
154 if (lapb
->mode
& LAPB_EXTENDED
) {
155 if (!(skb
->data
[0] & LAPB_S
)) {
156 if (!pskb_may_pull(skb
, 2))
159 * I frame - carries NR/NS/PF
161 frame
->type
= LAPB_I
;
162 frame
->ns
= (skb
->data
[0] >> 1) & 0x7F;
163 frame
->nr
= (skb
->data
[1] >> 1) & 0x7F;
164 frame
->pf
= skb
->data
[1] & LAPB_EPF
;
165 frame
->control
[0] = skb
->data
[0];
166 frame
->control
[1] = skb
->data
[1];
168 } else if ((skb
->data
[0] & LAPB_U
) == 1) {
169 if (!pskb_may_pull(skb
, 2))
172 * S frame - take out PF/NR
174 frame
->type
= skb
->data
[0] & 0x0F;
175 frame
->nr
= (skb
->data
[1] >> 1) & 0x7F;
176 frame
->pf
= skb
->data
[1] & LAPB_EPF
;
177 frame
->control
[0] = skb
->data
[0];
178 frame
->control
[1] = skb
->data
[1];
180 } else if ((skb
->data
[0] & LAPB_U
) == 3) {
182 * U frame - take out PF
184 frame
->type
= skb
->data
[0] & ~LAPB_SPF
;
185 frame
->pf
= skb
->data
[0] & LAPB_SPF
;
186 frame
->control
[0] = skb
->data
[0];
187 frame
->control
[1] = 0x00;
191 if (!(skb
->data
[0] & LAPB_S
)) {
193 * I frame - carries NR/NS/PF
195 frame
->type
= LAPB_I
;
196 frame
->ns
= (skb
->data
[0] >> 1) & 0x07;
197 frame
->nr
= (skb
->data
[0] >> 5) & 0x07;
198 frame
->pf
= skb
->data
[0] & LAPB_SPF
;
199 } else if ((skb
->data
[0] & LAPB_U
) == 1) {
201 * S frame - take out PF/NR
203 frame
->type
= skb
->data
[0] & 0x0F;
204 frame
->nr
= (skb
->data
[0] >> 5) & 0x07;
205 frame
->pf
= skb
->data
[0] & LAPB_SPF
;
206 } else if ((skb
->data
[0] & LAPB_U
) == 3) {
208 * U frame - take out PF
210 frame
->type
= skb
->data
[0] & ~LAPB_SPF
;
211 frame
->pf
= skb
->data
[0] & LAPB_SPF
;
214 frame
->control
[0] = skb
->data
[0];
223 * This routine is called when the HDLC layer internally generates a
224 * command or response for the remote machine ( eg. RR, UA etc. ).
225 * Only supervisory or unnumbered frames are processed, FRMRs are handled
226 * by lapb_transmit_frmr below.
228 void lapb_send_control(struct lapb_cb
*lapb
, int frametype
,
229 int poll_bit
, int type
)
234 if ((skb
= alloc_skb(LAPB_HEADER_LEN
+ 3, GFP_ATOMIC
)) == NULL
)
237 skb_reserve(skb
, LAPB_HEADER_LEN
+ 1);
239 if (lapb
->mode
& LAPB_EXTENDED
) {
240 if ((frametype
& LAPB_U
) == LAPB_U
) {
241 dptr
= skb_put(skb
, 1);
243 *dptr
|= poll_bit
? LAPB_SPF
: 0;
245 dptr
= skb_put(skb
, 2);
247 dptr
[1] = (lapb
->vr
<< 1);
248 dptr
[1] |= poll_bit
? LAPB_EPF
: 0;
251 dptr
= skb_put(skb
, 1);
253 *dptr
|= poll_bit
? LAPB_SPF
: 0;
254 if ((frametype
& LAPB_U
) == LAPB_S
) /* S frames carry NR */
255 *dptr
|= (lapb
->vr
<< 5);
258 lapb_transmit_buffer(lapb
, skb
, type
);
262 * This routine generates FRMRs based on information previously stored in
263 * the LAPB control block.
265 void lapb_transmit_frmr(struct lapb_cb
*lapb
)
270 if ((skb
= alloc_skb(LAPB_HEADER_LEN
+ 7, GFP_ATOMIC
)) == NULL
)
273 skb_reserve(skb
, LAPB_HEADER_LEN
+ 1);
275 if (lapb
->mode
& LAPB_EXTENDED
) {
276 dptr
= skb_put(skb
, 6);
278 *dptr
++ = lapb
->frmr_data
.control
[0];
279 *dptr
++ = lapb
->frmr_data
.control
[1];
280 *dptr
++ = (lapb
->vs
<< 1) & 0xFE;
281 *dptr
= (lapb
->vr
<< 1) & 0xFE;
282 if (lapb
->frmr_data
.cr
== LAPB_RESPONSE
)
285 *dptr
++ = lapb
->frmr_type
;
288 printk(KERN_DEBUG
"lapb: (%p) S%d TX FRMR %02X %02X %02X %02X %02X\n",
289 lapb
->dev
, lapb
->state
,
290 skb
->data
[1], skb
->data
[2], skb
->data
[3],
291 skb
->data
[4], skb
->data
[5]);
294 dptr
= skb_put(skb
, 4);
296 *dptr
++ = lapb
->frmr_data
.control
[0];
297 *dptr
= (lapb
->vs
<< 1) & 0x0E;
298 *dptr
|= (lapb
->vr
<< 5) & 0xE0;
299 if (lapb
->frmr_data
.cr
== LAPB_RESPONSE
)
302 *dptr
++ = lapb
->frmr_type
;
305 printk(KERN_DEBUG
"lapb: (%p) S%d TX FRMR %02X %02X %02X\n",
306 lapb
->dev
, lapb
->state
, skb
->data
[1],
307 skb
->data
[2], skb
->data
[3]);
311 lapb_transmit_buffer(lapb
, skb
, LAPB_RESPONSE
);