1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * X.25 Packet Layer release 002
5 * This is ALPHA test software. This code may break your machine,
6 * randomly fail to work with new releases, misbehave and/or generally
7 * screw up. It might even work.
9 * This code REQUIRES 2.1.15 or higher
12 * X.25 001 Jonathan Naylor Started coding.
13 * X.25 002 Jonathan Naylor Centralised disconnection code.
14 * New timer architecture.
15 * 2000-03-20 Daniela Squassoni Disabling/enabling of facilities
17 * 2000-11-10 Henner Eisen Check and reset for out-of-sequence
21 #define pr_fmt(fmt) "X25: " fmt
23 #include <linux/slab.h>
24 #include <linux/errno.h>
25 #include <linux/kernel.h>
26 #include <linux/string.h>
27 #include <linux/skbuff.h>
29 #include <net/tcp_states.h>
32 static int x25_queue_rx_frame(struct sock
*sk
, struct sk_buff
*skb
, int more
)
34 struct sk_buff
*skbo
, *skbn
= skb
;
35 struct x25_sock
*x25
= x25_sk(sk
);
38 x25
->fraglen
+= skb
->len
;
39 skb_queue_tail(&x25
->fragment_queue
, skb
);
40 skb_set_owner_r(skb
, sk
);
44 if (!more
&& x25
->fraglen
> 0) { /* End of fragment */
45 int len
= x25
->fraglen
+ skb
->len
;
47 if ((skbn
= alloc_skb(len
, GFP_ATOMIC
)) == NULL
){
52 skb_queue_tail(&x25
->fragment_queue
, skb
);
54 skb_reset_transport_header(skbn
);
56 skbo
= skb_dequeue(&x25
->fragment_queue
);
57 skb_copy_from_linear_data(skbo
, skb_put(skbn
, skbo
->len
),
62 skb_dequeue(&x25
->fragment_queue
)) != NULL
) {
63 skb_pull(skbo
, (x25
->neighbour
->extended
) ?
64 X25_EXT_MIN_LEN
: X25_STD_MIN_LEN
);
65 skb_copy_from_linear_data(skbo
,
66 skb_put(skbn
, skbo
->len
),
74 skb_set_owner_r(skbn
, sk
);
75 skb_queue_tail(&sk
->sk_receive_queue
, skbn
);
76 if (!sock_flag(sk
, SOCK_DEAD
))
77 sk
->sk_data_ready(sk
);
83 * State machine for state 1, Awaiting Call Accepted State.
84 * The handling of the timer(s) is in file x25_timer.c.
85 * Handling of state 0 and connection release is in af_x25.c.
87 static int x25_state1_machine(struct sock
*sk
, struct sk_buff
*skb
, int frametype
)
89 struct x25_address source_addr
, dest_addr
;
91 struct x25_sock
*x25
= x25_sk(sk
);
94 case X25_CALL_ACCEPTED
: {
97 x25
->condition
= 0x00;
102 x25
->state
= X25_STATE_3
;
103 sk
->sk_state
= TCP_ESTABLISHED
;
105 * Parse the data in the frame.
107 if (!pskb_may_pull(skb
, X25_STD_MIN_LEN
))
109 skb_pull(skb
, X25_STD_MIN_LEN
);
111 len
= x25_parse_address_block(skb
, &source_addr
,
118 len
= x25_parse_facilities(skb
, &x25
->facilities
,
119 &x25
->dte_facilities
,
120 &x25
->vc_facil_mask
);
126 * Copy any Call User Data.
129 if (skb
->len
> X25_MAX_CUD_LEN
)
132 skb_copy_bits(skb
, 0, x25
->calluserdata
.cuddata
,
134 x25
->calluserdata
.cudlength
= skb
->len
;
136 if (!sock_flag(sk
, SOCK_DEAD
))
137 sk
->sk_state_change(sk
);
140 case X25_CALL_REQUEST
:
142 x25
->causediag
.cause
= 0x01;
143 x25
->causediag
.diagnostic
= 0x48;
145 x25_write_internal(sk
, X25_CLEAR_REQUEST
);
146 x25_disconnect(sk
, EISCONN
, 0x01, 0x48);
149 case X25_CLEAR_REQUEST
:
150 if (!pskb_may_pull(skb
, X25_STD_MIN_LEN
+ 2))
153 x25_write_internal(sk
, X25_CLEAR_CONFIRMATION
);
154 x25_disconnect(sk
, ECONNREFUSED
, skb
->data
[3], skb
->data
[4]);
164 x25_write_internal(sk
, X25_CLEAR_REQUEST
);
165 x25
->state
= X25_STATE_2
;
166 x25_start_t23timer(sk
);
171 * State machine for state 2, Awaiting Clear Confirmation State.
172 * The handling of the timer(s) is in file x25_timer.c
173 * Handling of state 0 and connection release is in af_x25.c.
175 static int x25_state2_machine(struct sock
*sk
, struct sk_buff
*skb
, int frametype
)
179 case X25_CLEAR_REQUEST
:
180 if (!pskb_may_pull(skb
, X25_STD_MIN_LEN
+ 2))
183 x25_write_internal(sk
, X25_CLEAR_CONFIRMATION
);
184 x25_disconnect(sk
, 0, skb
->data
[3], skb
->data
[4]);
187 case X25_CLEAR_CONFIRMATION
:
188 x25_disconnect(sk
, 0, 0, 0);
198 x25_write_internal(sk
, X25_CLEAR_REQUEST
);
199 x25_start_t23timer(sk
);
204 * State machine for state 3, Connected State.
205 * The handling of the timer(s) is in file x25_timer.c
206 * Handling of state 0 and connection release is in af_x25.c.
208 static int x25_state3_machine(struct sock
*sk
, struct sk_buff
*skb
, int frametype
, int ns
, int nr
, int q
, int d
, int m
)
212 struct x25_sock
*x25
= x25_sk(sk
);
214 modulus
= (x25
->neighbour
->extended
) ? X25_EMODULUS
: X25_SMODULUS
;
218 case X25_RESET_REQUEST
:
219 x25_write_internal(sk
, X25_RESET_CONFIRMATION
);
221 x25
->condition
= 0x00;
226 x25_requeue_frames(sk
);
229 case X25_CLEAR_REQUEST
:
230 if (!pskb_may_pull(skb
, X25_STD_MIN_LEN
+ 2))
233 x25_write_internal(sk
, X25_CLEAR_CONFIRMATION
);
234 x25_disconnect(sk
, 0, skb
->data
[3], skb
->data
[4]);
239 if (!x25_validate_nr(sk
, nr
)) {
240 x25_clear_queues(sk
);
241 x25_write_internal(sk
, X25_RESET_REQUEST
);
242 x25_start_t22timer(sk
);
243 x25
->condition
= 0x00;
248 x25
->state
= X25_STATE_4
;
250 x25_frames_acked(sk
, nr
);
251 if (frametype
== X25_RNR
) {
252 x25
->condition
|= X25_COND_PEER_RX_BUSY
;
254 x25
->condition
&= ~X25_COND_PEER_RX_BUSY
;
259 case X25_DATA
: /* XXX */
260 x25
->condition
&= ~X25_COND_PEER_RX_BUSY
;
261 if ((ns
!= x25
->vr
) || !x25_validate_nr(sk
, nr
)) {
262 x25_clear_queues(sk
);
263 x25_write_internal(sk
, X25_RESET_REQUEST
);
264 x25_start_t22timer(sk
);
265 x25
->condition
= 0x00;
270 x25
->state
= X25_STATE_4
;
273 x25_frames_acked(sk
, nr
);
275 if (x25_queue_rx_frame(sk
, skb
, m
) == 0) {
276 x25
->vr
= (x25
->vr
+ 1) % modulus
;
279 /* Should never happen */
280 x25_clear_queues(sk
);
281 x25_write_internal(sk
, X25_RESET_REQUEST
);
282 x25_start_t22timer(sk
);
283 x25
->condition
= 0x00;
288 x25
->state
= X25_STATE_4
;
291 if (atomic_read(&sk
->sk_rmem_alloc
) >
292 (sk
->sk_rcvbuf
>> 1))
293 x25
->condition
|= X25_COND_OWN_RX_BUSY
;
296 * If the window is full Ack it immediately, else
297 * start the holdback timer.
299 if (((x25
->vl
+ x25
->facilities
.winsize_in
) % modulus
) == x25
->vr
) {
300 x25
->condition
&= ~X25_COND_ACK_PENDING
;
302 x25_enquiry_response(sk
);
304 x25
->condition
|= X25_COND_ACK_PENDING
;
305 x25_start_t2timer(sk
);
309 case X25_INTERRUPT_CONFIRMATION
:
310 clear_bit(X25_INTERRUPT_FLAG
, &x25
->flags
);
314 if (sock_flag(sk
, SOCK_URGINLINE
))
315 queued
= !sock_queue_rcv_skb(sk
, skb
);
317 skb_set_owner_r(skb
, sk
);
318 skb_queue_tail(&x25
->interrupt_in_queue
, skb
);
322 x25_write_internal(sk
, X25_INTERRUPT_CONFIRMATION
);
326 pr_warn("unknown %02X in state 3\n", frametype
);
333 x25_write_internal(sk
, X25_CLEAR_REQUEST
);
334 x25
->state
= X25_STATE_2
;
335 x25_start_t23timer(sk
);
340 * State machine for state 4, Awaiting Reset Confirmation State.
341 * The handling of the timer(s) is in file x25_timer.c
342 * Handling of state 0 and connection release is in af_x25.c.
344 static int x25_state4_machine(struct sock
*sk
, struct sk_buff
*skb
, int frametype
)
346 struct x25_sock
*x25
= x25_sk(sk
);
350 case X25_RESET_REQUEST
:
351 x25_write_internal(sk
, X25_RESET_CONFIRMATION
);
353 case X25_RESET_CONFIRMATION
: {
355 x25
->condition
= 0x00;
360 x25
->state
= X25_STATE_3
;
361 x25_requeue_frames(sk
);
364 case X25_CLEAR_REQUEST
:
365 if (!pskb_may_pull(skb
, X25_STD_MIN_LEN
+ 2))
368 x25_write_internal(sk
, X25_CLEAR_CONFIRMATION
);
369 x25_disconnect(sk
, 0, skb
->data
[3], skb
->data
[4]);
379 x25_write_internal(sk
, X25_CLEAR_REQUEST
);
380 x25
->state
= X25_STATE_2
;
381 x25_start_t23timer(sk
);
386 * State machine for state 5, Call Accepted / Call Connected pending (X25_ACCPT_APPRV_FLAG).
387 * The handling of the timer(s) is in file x25_timer.c
388 * Handling of state 0 and connection release is in af_x25.c.
390 static int x25_state5_machine(struct sock
*sk
, struct sk_buff
*skb
, int frametype
)
392 struct x25_sock
*x25
= x25_sk(sk
);
395 case X25_CLEAR_REQUEST
:
396 if (!pskb_may_pull(skb
, X25_STD_MIN_LEN
+ 2)) {
397 x25_write_internal(sk
, X25_CLEAR_REQUEST
);
398 x25
->state
= X25_STATE_2
;
399 x25_start_t23timer(sk
);
403 x25_write_internal(sk
, X25_CLEAR_CONFIRMATION
);
404 x25_disconnect(sk
, 0, skb
->data
[3], skb
->data
[4]);
414 /* Higher level upcall for a LAPB frame */
415 int x25_process_rx_frame(struct sock
*sk
, struct sk_buff
*skb
)
417 struct x25_sock
*x25
= x25_sk(sk
);
418 int queued
= 0, frametype
, ns
, nr
, q
, d
, m
;
420 if (x25
->state
== X25_STATE_0
)
423 frametype
= x25_decode(sk
, skb
, &ns
, &nr
, &q
, &d
, &m
);
425 switch (x25
->state
) {
427 queued
= x25_state1_machine(sk
, skb
, frametype
);
430 queued
= x25_state2_machine(sk
, skb
, frametype
);
433 queued
= x25_state3_machine(sk
, skb
, frametype
, ns
, nr
, q
, d
, m
);
436 queued
= x25_state4_machine(sk
, skb
, frametype
);
439 queued
= x25_state5_machine(sk
, skb
, frametype
);
448 int x25_backlog_rcv(struct sock
*sk
, struct sk_buff
*skb
)
450 int queued
= x25_process_rx_frame(sk
, skb
);