2 * X.25 Packet Layer release 002
4 * This is ALPHA test software. This code may break your machine,
5 * randomly fail to work with new releases, misbehave and/or generally
6 * screw up. It might even work.
8 * This code REQUIRES 2.1.15 or higher
11 * This module is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License
13 * as published by the Free Software Foundation; either version
14 * 2 of the License, or (at your option) any later version.
17 * X.25 001 Jonathan Naylor Started coding.
18 * X.25 002 Jonathan Naylor Centralised disconnection code.
19 * New timer architecture.
20 * 2000-03-20 Daniela Squassoni Disabling/enabling of facilities
22 * 2000-11-10 Henner Eisen Check and reset for out-of-sequence
26 #define pr_fmt(fmt) "X25: " fmt
28 #include <linux/slab.h>
29 #include <linux/errno.h>
30 #include <linux/kernel.h>
31 #include <linux/string.h>
32 #include <linux/skbuff.h>
34 #include <net/tcp_states.h>
37 static int x25_queue_rx_frame(struct sock
*sk
, struct sk_buff
*skb
, int more
)
39 struct sk_buff
*skbo
, *skbn
= skb
;
40 struct x25_sock
*x25
= x25_sk(sk
);
43 x25
->fraglen
+= skb
->len
;
44 skb_queue_tail(&x25
->fragment_queue
, skb
);
45 skb_set_owner_r(skb
, sk
);
49 if (!more
&& x25
->fraglen
> 0) { /* End of fragment */
50 int len
= x25
->fraglen
+ skb
->len
;
52 if ((skbn
= alloc_skb(len
, GFP_ATOMIC
)) == NULL
){
57 skb_queue_tail(&x25
->fragment_queue
, skb
);
59 skb_reset_transport_header(skbn
);
61 skbo
= skb_dequeue(&x25
->fragment_queue
);
62 skb_copy_from_linear_data(skbo
, skb_put(skbn
, skbo
->len
),
67 skb_dequeue(&x25
->fragment_queue
)) != NULL
) {
68 skb_pull(skbo
, (x25
->neighbour
->extended
) ?
69 X25_EXT_MIN_LEN
: X25_STD_MIN_LEN
);
70 skb_copy_from_linear_data(skbo
,
71 skb_put(skbn
, skbo
->len
),
79 skb_set_owner_r(skbn
, sk
);
80 skb_queue_tail(&sk
->sk_receive_queue
, skbn
);
81 if (!sock_flag(sk
, SOCK_DEAD
))
82 sk
->sk_data_ready(sk
);
88 * State machine for state 1, Awaiting Call Accepted State.
89 * The handling of the timer(s) is in file x25_timer.c.
90 * Handling of state 0 and connection release is in af_x25.c.
92 static int x25_state1_machine(struct sock
*sk
, struct sk_buff
*skb
, int frametype
)
94 struct x25_address source_addr
, dest_addr
;
96 struct x25_sock
*x25
= x25_sk(sk
);
99 case X25_CALL_ACCEPTED
: {
102 x25
->condition
= 0x00;
107 x25
->state
= X25_STATE_3
;
108 sk
->sk_state
= TCP_ESTABLISHED
;
110 * Parse the data in the frame.
112 if (!pskb_may_pull(skb
, X25_STD_MIN_LEN
))
114 skb_pull(skb
, X25_STD_MIN_LEN
);
116 len
= x25_parse_address_block(skb
, &source_addr
,
123 len
= x25_parse_facilities(skb
, &x25
->facilities
,
124 &x25
->dte_facilities
,
125 &x25
->vc_facil_mask
);
131 * Copy any Call User Data.
134 if (skb
->len
> X25_MAX_CUD_LEN
)
137 skb_copy_bits(skb
, 0, x25
->calluserdata
.cuddata
,
139 x25
->calluserdata
.cudlength
= skb
->len
;
141 if (!sock_flag(sk
, SOCK_DEAD
))
142 sk
->sk_state_change(sk
);
145 case X25_CLEAR_REQUEST
:
146 if (!pskb_may_pull(skb
, X25_STD_MIN_LEN
+ 2))
149 x25_write_internal(sk
, X25_CLEAR_CONFIRMATION
);
150 x25_disconnect(sk
, ECONNREFUSED
, skb
->data
[3], skb
->data
[4]);
160 x25_write_internal(sk
, X25_CLEAR_REQUEST
);
161 x25
->state
= X25_STATE_2
;
162 x25_start_t23timer(sk
);
167 * State machine for state 2, Awaiting Clear Confirmation State.
168 * The handling of the timer(s) is in file x25_timer.c
169 * Handling of state 0 and connection release is in af_x25.c.
171 static int x25_state2_machine(struct sock
*sk
, struct sk_buff
*skb
, int frametype
)
175 case X25_CLEAR_REQUEST
:
176 if (!pskb_may_pull(skb
, X25_STD_MIN_LEN
+ 2))
179 x25_write_internal(sk
, X25_CLEAR_CONFIRMATION
);
180 x25_disconnect(sk
, 0, skb
->data
[3], skb
->data
[4]);
183 case X25_CLEAR_CONFIRMATION
:
184 x25_disconnect(sk
, 0, 0, 0);
194 x25_write_internal(sk
, X25_CLEAR_REQUEST
);
195 x25_start_t23timer(sk
);
200 * State machine for state 3, Connected State.
201 * The handling of the timer(s) is in file x25_timer.c
202 * Handling of state 0 and connection release is in af_x25.c.
204 static int x25_state3_machine(struct sock
*sk
, struct sk_buff
*skb
, int frametype
, int ns
, int nr
, int q
, int d
, int m
)
208 struct x25_sock
*x25
= x25_sk(sk
);
210 modulus
= (x25
->neighbour
->extended
) ? X25_EMODULUS
: X25_SMODULUS
;
214 case X25_RESET_REQUEST
:
215 x25_write_internal(sk
, X25_RESET_CONFIRMATION
);
217 x25
->condition
= 0x00;
222 x25_requeue_frames(sk
);
225 case X25_CLEAR_REQUEST
:
226 if (!pskb_may_pull(skb
, X25_STD_MIN_LEN
+ 2))
229 x25_write_internal(sk
, X25_CLEAR_CONFIRMATION
);
230 x25_disconnect(sk
, 0, skb
->data
[3], skb
->data
[4]);
235 if (!x25_validate_nr(sk
, nr
)) {
236 x25_clear_queues(sk
);
237 x25_write_internal(sk
, X25_RESET_REQUEST
);
238 x25_start_t22timer(sk
);
239 x25
->condition
= 0x00;
244 x25
->state
= X25_STATE_4
;
246 x25_frames_acked(sk
, nr
);
247 if (frametype
== X25_RNR
) {
248 x25
->condition
|= X25_COND_PEER_RX_BUSY
;
250 x25
->condition
&= ~X25_COND_PEER_RX_BUSY
;
255 case X25_DATA
: /* XXX */
256 x25
->condition
&= ~X25_COND_PEER_RX_BUSY
;
257 if ((ns
!= x25
->vr
) || !x25_validate_nr(sk
, nr
)) {
258 x25_clear_queues(sk
);
259 x25_write_internal(sk
, X25_RESET_REQUEST
);
260 x25_start_t22timer(sk
);
261 x25
->condition
= 0x00;
266 x25
->state
= X25_STATE_4
;
269 x25_frames_acked(sk
, nr
);
271 if (x25_queue_rx_frame(sk
, skb
, m
) == 0) {
272 x25
->vr
= (x25
->vr
+ 1) % modulus
;
275 /* Should never happen */
276 x25_clear_queues(sk
);
277 x25_write_internal(sk
, X25_RESET_REQUEST
);
278 x25_start_t22timer(sk
);
279 x25
->condition
= 0x00;
284 x25
->state
= X25_STATE_4
;
287 if (atomic_read(&sk
->sk_rmem_alloc
) >
288 (sk
->sk_rcvbuf
>> 1))
289 x25
->condition
|= X25_COND_OWN_RX_BUSY
;
292 * If the window is full Ack it immediately, else
293 * start the holdback timer.
295 if (((x25
->vl
+ x25
->facilities
.winsize_in
) % modulus
) == x25
->vr
) {
296 x25
->condition
&= ~X25_COND_ACK_PENDING
;
298 x25_enquiry_response(sk
);
300 x25
->condition
|= X25_COND_ACK_PENDING
;
301 x25_start_t2timer(sk
);
305 case X25_INTERRUPT_CONFIRMATION
:
306 clear_bit(X25_INTERRUPT_FLAG
, &x25
->flags
);
310 if (sock_flag(sk
, SOCK_URGINLINE
))
311 queued
= !sock_queue_rcv_skb(sk
, skb
);
313 skb_set_owner_r(skb
, sk
);
314 skb_queue_tail(&x25
->interrupt_in_queue
, skb
);
318 x25_write_internal(sk
, X25_INTERRUPT_CONFIRMATION
);
322 pr_warn("unknown %02X in state 3\n", frametype
);
329 x25_write_internal(sk
, X25_CLEAR_REQUEST
);
330 x25
->state
= X25_STATE_2
;
331 x25_start_t23timer(sk
);
336 * State machine for state 4, Awaiting Reset Confirmation State.
337 * The handling of the timer(s) is in file x25_timer.c
338 * Handling of state 0 and connection release is in af_x25.c.
340 static int x25_state4_machine(struct sock
*sk
, struct sk_buff
*skb
, int frametype
)
342 struct x25_sock
*x25
= x25_sk(sk
);
346 case X25_RESET_REQUEST
:
347 x25_write_internal(sk
, X25_RESET_CONFIRMATION
);
348 case X25_RESET_CONFIRMATION
: {
350 x25
->condition
= 0x00;
355 x25
->state
= X25_STATE_3
;
356 x25_requeue_frames(sk
);
359 case X25_CLEAR_REQUEST
:
360 if (!pskb_may_pull(skb
, X25_STD_MIN_LEN
+ 2))
363 x25_write_internal(sk
, X25_CLEAR_CONFIRMATION
);
364 x25_disconnect(sk
, 0, skb
->data
[3], skb
->data
[4]);
374 x25_write_internal(sk
, X25_CLEAR_REQUEST
);
375 x25
->state
= X25_STATE_2
;
376 x25_start_t23timer(sk
);
380 /* Higher level upcall for a LAPB frame */
381 int x25_process_rx_frame(struct sock
*sk
, struct sk_buff
*skb
)
383 struct x25_sock
*x25
= x25_sk(sk
);
384 int queued
= 0, frametype
, ns
, nr
, q
, d
, m
;
386 if (x25
->state
== X25_STATE_0
)
389 frametype
= x25_decode(sk
, skb
, &ns
, &nr
, &q
, &d
, &m
);
391 switch (x25
->state
) {
393 queued
= x25_state1_machine(sk
, skb
, frametype
);
396 queued
= x25_state2_machine(sk
, skb
, frametype
);
399 queued
= x25_state3_machine(sk
, skb
, frametype
, ns
, nr
, q
, d
, m
);
402 queued
= x25_state4_machine(sk
, skb
, frametype
);
411 int x25_backlog_rcv(struct sock
*sk
, struct sk_buff
*skb
)
413 int queued
= x25_process_rx_frame(sk
, skb
);