1 // SPDX-License-Identifier: GPL-2.0-or-later
4 * Copyright (C) Jonathan Naylor G4KLX (g4klx@g4klx.demon.co.uk)
5 * Copyright (C) Joerg Reuter DL1BKE (jreuter@yaina.de)
7 #include <linux/errno.h>
8 #include <linux/types.h>
9 #include <linux/socket.h>
11 #include <linux/kernel.h>
12 #include <linux/timer.h>
13 #include <linux/string.h>
14 #include <linux/sockios.h>
15 #include <linux/net.h>
17 #include <linux/inet.h>
18 #include <linux/netdevice.h>
19 #include <linux/skbuff.h>
21 #include <net/tcp_states.h>
22 #include <linux/uaccess.h>
23 #include <linux/fcntl.h>
25 #include <linux/interrupt.h>
28 * State machine for state 1, Awaiting Connection State.
29 * The handling of the timer(s) is in file ax25_ds_timer.c.
30 * Handling of state 0 and connection release is in ax25.c.
32 static int ax25_ds_state1_machine(ax25_cb
*ax25
, struct sk_buff
*skb
, int frametype
, int pf
, int type
)
36 ax25
->modulus
= AX25_MODULUS
;
37 ax25
->window
= ax25
->ax25_dev
->values
[AX25_VALUES_WINDOW
];
38 ax25_send_control(ax25
, AX25_UA
, pf
, AX25_RESPONSE
);
42 ax25
->modulus
= AX25_EMODULUS
;
43 ax25
->window
= ax25
->ax25_dev
->values
[AX25_VALUES_EWINDOW
];
44 ax25_send_control(ax25
, AX25_UA
, pf
, AX25_RESPONSE
);
48 ax25_send_control(ax25
, AX25_DM
, pf
, AX25_RESPONSE
);
52 ax25_calculate_rtt(ax25
);
53 ax25_stop_t1timer(ax25
);
54 ax25_start_t3timer(ax25
);
55 ax25_start_idletimer(ax25
);
59 ax25
->state
= AX25_STATE_3
;
61 if (ax25
->sk
!= NULL
) {
62 bh_lock_sock(ax25
->sk
);
63 ax25
->sk
->sk_state
= TCP_ESTABLISHED
;
65 * For WAIT_SABM connections we will produce an accept
68 if (!sock_flag(ax25
->sk
, SOCK_DEAD
))
69 ax25
->sk
->sk_state_change(ax25
->sk
);
70 bh_unlock_sock(ax25
->sk
);
74 /* according to DK4EG's spec we are required to
75 * send a RR RESPONSE FINAL NR=0.
78 ax25_std_enquiry_response(ax25
);
83 ax25_disconnect(ax25
, ECONNREFUSED
);
88 ax25_send_control(ax25
, AX25_SABM
, AX25_POLLON
, AX25_COMMAND
);
96 * State machine for state 2, Awaiting Release State.
97 * The handling of the timer(s) is in file ax25_ds_timer.c
98 * Handling of state 0 and connection release is in ax25.c.
100 static int ax25_ds_state2_machine(ax25_cb
*ax25
, struct sk_buff
*skb
, int frametype
, int pf
, int type
)
105 ax25_send_control(ax25
, AX25_DISC
, AX25_POLLON
, AX25_COMMAND
);
110 ax25_send_control(ax25
, AX25_UA
, pf
, AX25_RESPONSE
);
112 ax25_disconnect(ax25
, 0);
119 ax25_disconnect(ax25
, 0);
128 ax25_send_control(ax25
, AX25_DISC
, AX25_POLLON
, AX25_COMMAND
);
141 * State machine for state 3, Connected State.
142 * The handling of the timer(s) is in file ax25_timer.c
143 * Handling of state 0 and connection release is in ax25.c.
145 static int ax25_ds_state3_machine(ax25_cb
*ax25
, struct sk_buff
*skb
, int frametype
, int ns
, int nr
, int pf
, int type
)
152 if (frametype
== AX25_SABM
) {
153 ax25
->modulus
= AX25_MODULUS
;
154 ax25
->window
= ax25
->ax25_dev
->values
[AX25_VALUES_WINDOW
];
156 ax25
->modulus
= AX25_EMODULUS
;
157 ax25
->window
= ax25
->ax25_dev
->values
[AX25_VALUES_EWINDOW
];
159 ax25_send_control(ax25
, AX25_UA
, pf
, AX25_RESPONSE
);
160 ax25_stop_t1timer(ax25
);
161 ax25_start_t3timer(ax25
);
162 ax25_start_idletimer(ax25
);
163 ax25
->condition
= 0x00;
167 ax25_requeue_frames(ax25
);
172 ax25_send_control(ax25
, AX25_UA
, pf
, AX25_RESPONSE
);
174 ax25_disconnect(ax25
, 0);
179 ax25_disconnect(ax25
, ECONNRESET
);
184 if (frametype
== AX25_RR
)
185 ax25
->condition
&= ~AX25_COND_PEER_RX_BUSY
;
187 ax25
->condition
|= AX25_COND_PEER_RX_BUSY
;
189 if (ax25_validate_nr(ax25
, nr
)) {
190 if (ax25_check_iframes_acked(ax25
, nr
))
192 if (type
== AX25_COMMAND
&& pf
)
193 ax25_ds_enquiry_response(ax25
);
195 ax25_ds_nr_error_recovery(ax25
);
196 ax25
->state
= AX25_STATE_1
;
201 ax25
->condition
&= ~AX25_COND_PEER_RX_BUSY
;
203 if (ax25_validate_nr(ax25
, nr
)) {
207 ax25_frames_acked(ax25
, nr
);
208 ax25_calculate_rtt(ax25
);
209 ax25_stop_t1timer(ax25
);
210 ax25_start_t3timer(ax25
);
211 ax25_requeue_frames(ax25
);
213 if (type
== AX25_COMMAND
&& pf
)
214 ax25_ds_enquiry_response(ax25
);
216 ax25_ds_nr_error_recovery(ax25
);
217 ax25
->state
= AX25_STATE_1
;
222 if (!ax25_validate_nr(ax25
, nr
)) {
223 ax25_ds_nr_error_recovery(ax25
);
224 ax25
->state
= AX25_STATE_1
;
227 if (ax25
->condition
& AX25_COND_PEER_RX_BUSY
) {
228 ax25_frames_acked(ax25
, nr
);
231 if (ax25_check_iframes_acked(ax25
, nr
))
234 if (ax25
->condition
& AX25_COND_OWN_RX_BUSY
) {
235 if (pf
) ax25_ds_enquiry_response(ax25
);
238 if (ns
== ax25
->vr
) {
239 ax25
->vr
= (ax25
->vr
+ 1) % ax25
->modulus
;
240 queued
= ax25_rx_iframe(ax25
, skb
);
241 if (ax25
->condition
& AX25_COND_OWN_RX_BUSY
)
242 ax25
->vr
= ns
; /* ax25->vr - 1 */
243 ax25
->condition
&= ~AX25_COND_REJECT
;
245 ax25_ds_enquiry_response(ax25
);
247 if (!(ax25
->condition
& AX25_COND_ACK_PENDING
)) {
248 ax25
->condition
|= AX25_COND_ACK_PENDING
;
249 ax25_start_t2timer(ax25
);
253 if (ax25
->condition
& AX25_COND_REJECT
) {
254 if (pf
) ax25_ds_enquiry_response(ax25
);
256 ax25
->condition
|= AX25_COND_REJECT
;
257 ax25_ds_enquiry_response(ax25
);
258 ax25
->condition
&= ~AX25_COND_ACK_PENDING
;
265 ax25_ds_establish_data_link(ax25
);
266 ax25
->state
= AX25_STATE_1
;
277 * Higher level upcall for a LAPB frame
279 int ax25_ds_frame_in(ax25_cb
*ax25
, struct sk_buff
*skb
, int type
)
281 int queued
= 0, frametype
, ns
, nr
, pf
;
283 frametype
= ax25_decode(ax25
, skb
, &ns
, &nr
, &pf
);
285 switch (ax25
->state
) {
287 queued
= ax25_ds_state1_machine(ax25
, skb
, frametype
, pf
, type
);
290 queued
= ax25_ds_state2_machine(ax25
, skb
, frametype
, pf
, type
);
293 queued
= ax25_ds_state3_machine(ax25
, skb
, frametype
, ns
, nr
, pf
, type
);