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 #include <linux/errno.h>
27 #include <linux/kernel.h>
28 #include <linux/string.h>
29 #include <linux/skbuff.h>
31 #include <net/tcp_states.h>
34 static int x25_queue_rx_frame(struct sock
*sk
, struct sk_buff
*skb
, int more
)
36 struct sk_buff
*skbo
, *skbn
= skb
;
37 struct x25_sock
*x25
= x25_sk(sk
);
40 x25
->fraglen
+= skb
->len
;
41 skb_queue_tail(&x25
->fragment_queue
, skb
);
42 skb_set_owner_r(skb
, sk
);
46 if (!more
&& x25
->fraglen
> 0) { /* End of fragment */
47 int len
= x25
->fraglen
+ skb
->len
;
49 if ((skbn
= alloc_skb(len
, GFP_ATOMIC
)) == NULL
){
54 skb_queue_tail(&x25
->fragment_queue
, skb
);
56 skbn
->h
.raw
= skbn
->data
;
58 skbo
= skb_dequeue(&x25
->fragment_queue
);
59 memcpy(skb_put(skbn
, skbo
->len
), skbo
->data
, skbo
->len
);
63 skb_dequeue(&x25
->fragment_queue
)) != NULL
) {
64 skb_pull(skbo
, (x25
->neighbour
->extended
) ?
65 X25_EXT_MIN_LEN
: X25_STD_MIN_LEN
);
66 memcpy(skb_put(skbn
, skbo
->len
), skbo
->data
, skbo
->len
);
73 skb_set_owner_r(skbn
, sk
);
74 skb_queue_tail(&sk
->sk_receive_queue
, skbn
);
75 if (!sock_flag(sk
, SOCK_DEAD
))
76 sk
->sk_data_ready(sk
, skbn
->len
);
82 * State machine for state 1, Awaiting Call Accepted State.
83 * The handling of the timer(s) is in file x25_timer.c.
84 * Handling of state 0 and connection release is in af_x25.c.
86 static int x25_state1_machine(struct sock
*sk
, struct sk_buff
*skb
, int frametype
)
88 struct x25_address source_addr
, dest_addr
;
91 case X25_CALL_ACCEPTED
: {
92 struct x25_sock
*x25
= x25_sk(sk
);
95 x25
->condition
= 0x00;
100 x25
->state
= X25_STATE_3
;
101 sk
->sk_state
= TCP_ESTABLISHED
;
103 * Parse the data in the frame.
105 skb_pull(skb
, X25_STD_MIN_LEN
);
106 skb_pull(skb
, x25_addr_ntoa(skb
->data
, &source_addr
, &dest_addr
));
108 x25_parse_facilities(skb
, &x25
->facilities
,
109 &x25
->dte_facilities
,
110 &x25
->vc_facil_mask
));
112 * Copy any Call User Data.
115 memcpy(x25
->calluserdata
.cuddata
, skb
->data
,
117 x25
->calluserdata
.cudlength
= skb
->len
;
119 if (!sock_flag(sk
, SOCK_DEAD
))
120 sk
->sk_state_change(sk
);
123 case X25_CLEAR_REQUEST
:
124 x25_write_internal(sk
, X25_CLEAR_CONFIRMATION
);
125 x25_disconnect(sk
, ECONNREFUSED
, skb
->data
[3], skb
->data
[4]);
136 * State machine for state 2, Awaiting Clear Confirmation State.
137 * The handling of the timer(s) is in file x25_timer.c
138 * Handling of state 0 and connection release is in af_x25.c.
140 static int x25_state2_machine(struct sock
*sk
, struct sk_buff
*skb
, int frametype
)
144 case X25_CLEAR_REQUEST
:
145 x25_write_internal(sk
, X25_CLEAR_CONFIRMATION
);
146 x25_disconnect(sk
, 0, skb
->data
[3], skb
->data
[4]);
149 case X25_CLEAR_CONFIRMATION
:
150 x25_disconnect(sk
, 0, 0, 0);
161 * State machine for state 3, Connected State.
162 * The handling of the timer(s) is in file x25_timer.c
163 * Handling of state 0 and connection release is in af_x25.c.
165 static int x25_state3_machine(struct sock
*sk
, struct sk_buff
*skb
, int frametype
, int ns
, int nr
, int q
, int d
, int m
)
169 struct x25_sock
*x25
= x25_sk(sk
);
171 modulus
= (x25
->neighbour
->extended
) ? X25_EMODULUS
: X25_SMODULUS
;
175 case X25_RESET_REQUEST
:
176 x25_write_internal(sk
, X25_RESET_CONFIRMATION
);
178 x25
->condition
= 0x00;
183 x25_requeue_frames(sk
);
186 case X25_CLEAR_REQUEST
:
187 x25_write_internal(sk
, X25_CLEAR_CONFIRMATION
);
188 x25_disconnect(sk
, 0, skb
->data
[3], skb
->data
[4]);
193 if (!x25_validate_nr(sk
, nr
)) {
194 x25_clear_queues(sk
);
195 x25_write_internal(sk
, X25_RESET_REQUEST
);
196 x25_start_t22timer(sk
);
197 x25
->condition
= 0x00;
202 x25
->state
= X25_STATE_4
;
204 x25_frames_acked(sk
, nr
);
205 if (frametype
== X25_RNR
) {
206 x25
->condition
|= X25_COND_PEER_RX_BUSY
;
208 x25
->condition
&= ~X25_COND_PEER_RX_BUSY
;
213 case X25_DATA
: /* XXX */
214 x25
->condition
&= ~X25_COND_PEER_RX_BUSY
;
215 if ((ns
!= x25
->vr
) || !x25_validate_nr(sk
, nr
)) {
216 x25_clear_queues(sk
);
217 x25_write_internal(sk
, X25_RESET_REQUEST
);
218 x25_start_t22timer(sk
);
219 x25
->condition
= 0x00;
224 x25
->state
= X25_STATE_4
;
227 x25_frames_acked(sk
, nr
);
229 if (x25_queue_rx_frame(sk
, skb
, m
) == 0) {
230 x25
->vr
= (x25
->vr
+ 1) % modulus
;
233 /* Should never happen */
234 x25_clear_queues(sk
);
235 x25_write_internal(sk
, X25_RESET_REQUEST
);
236 x25_start_t22timer(sk
);
237 x25
->condition
= 0x00;
242 x25
->state
= X25_STATE_4
;
245 if (atomic_read(&sk
->sk_rmem_alloc
) >
247 x25
->condition
|= X25_COND_OWN_RX_BUSY
;
250 * If the window is full Ack it immediately, else
251 * start the holdback timer.
253 if (((x25
->vl
+ x25
->facilities
.winsize_in
) % modulus
) == x25
->vr
) {
254 x25
->condition
&= ~X25_COND_ACK_PENDING
;
256 x25_enquiry_response(sk
);
258 x25
->condition
|= X25_COND_ACK_PENDING
;
259 x25_start_t2timer(sk
);
263 case X25_INTERRUPT_CONFIRMATION
:
268 if (sock_flag(sk
, SOCK_URGINLINE
))
269 queued
= !sock_queue_rcv_skb(sk
, skb
);
271 skb_set_owner_r(skb
, sk
);
272 skb_queue_tail(&x25
->interrupt_in_queue
, skb
);
276 x25_write_internal(sk
, X25_INTERRUPT_CONFIRMATION
);
280 printk(KERN_WARNING
"x25: unknown %02X in state 3\n", frametype
);
288 * State machine for state 4, Awaiting Reset Confirmation State.
289 * The handling of the timer(s) is in file x25_timer.c
290 * Handling of state 0 and connection release is in af_x25.c.
292 static int x25_state4_machine(struct sock
*sk
, struct sk_buff
*skb
, int frametype
)
296 case X25_RESET_REQUEST
:
297 x25_write_internal(sk
, X25_RESET_CONFIRMATION
);
298 case X25_RESET_CONFIRMATION
: {
299 struct x25_sock
*x25
= x25_sk(sk
);
302 x25
->condition
= 0x00;
307 x25
->state
= X25_STATE_3
;
308 x25_requeue_frames(sk
);
311 case X25_CLEAR_REQUEST
:
312 x25_write_internal(sk
, X25_CLEAR_CONFIRMATION
);
313 x25_disconnect(sk
, 0, skb
->data
[3], skb
->data
[4]);
323 /* Higher level upcall for a LAPB frame */
324 int x25_process_rx_frame(struct sock
*sk
, struct sk_buff
*skb
)
326 struct x25_sock
*x25
= x25_sk(sk
);
327 int queued
= 0, frametype
, ns
, nr
, q
, d
, m
;
329 if (x25
->state
== X25_STATE_0
)
332 frametype
= x25_decode(sk
, skb
, &ns
, &nr
, &q
, &d
, &m
);
334 switch (x25
->state
) {
336 queued
= x25_state1_machine(sk
, skb
, frametype
);
339 queued
= x25_state2_machine(sk
, skb
, frametype
);
342 queued
= x25_state3_machine(sk
, skb
, frametype
, ns
, nr
, q
, d
, m
);
345 queued
= x25_state4_machine(sk
, skb
, frametype
);
354 int x25_backlog_rcv(struct sock
*sk
, struct sk_buff
*skb
)
356 int queued
= x25_process_rx_frame(sk
, skb
);