2 * This program is free software; you can redistribute it and/or modify
3 * it under the terms of the GNU General Public License as published by
4 * the Free Software Foundation; either version 2 of the License, or
5 * (at your option) any later version.
7 * Copyright (C) Jonathan Naylor G4KLX (g4klx@g4klx.demon.co.uk)
9 * Most of this code is based on the SDL diagrams published in the 7th ARRL
10 * Computer Networking Conference papers. The diagrams have mistakes in them,
11 * but are mostly correct. Before you modify the code could you read the SDL
12 * diagrams as the code is not obvious and probably very easy to break.
14 #include <linux/errno.h>
15 #include <linux/types.h>
16 #include <linux/socket.h>
18 #include <linux/kernel.h>
19 #include <linux/sched.h>
20 #include <linux/timer.h>
21 #include <linux/string.h>
22 #include <linux/sockios.h>
23 #include <linux/net.h>
25 #include <linux/inet.h>
26 #include <linux/netdevice.h>
27 #include <linux/skbuff.h>
29 #include <net/tcp_states.h>
30 #include <asm/system.h>
31 #include <linux/fcntl.h>
33 #include <linux/interrupt.h>
37 * State machine for state 1, Awaiting Call Accepted State.
38 * The handling of the timer(s) is in file rose_timer.c.
39 * Handling of state 0 and connection release is in af_rose.c.
41 static int rose_state1_machine(struct sock
*sk
, struct sk_buff
*skb
, int frametype
)
43 struct rose_sock
*rose
= rose_sk(sk
);
46 case ROSE_CALL_ACCEPTED
:
48 rose_start_idletimer(sk
);
49 rose
->condition
= 0x00;
54 rose
->state
= ROSE_STATE_3
;
55 sk
->sk_state
= TCP_ESTABLISHED
;
56 if (!sock_flag(sk
, SOCK_DEAD
))
57 sk
->sk_state_change(sk
);
60 case ROSE_CLEAR_REQUEST
:
61 rose_write_internal(sk
, ROSE_CLEAR_CONFIRMATION
);
62 rose_disconnect(sk
, ECONNREFUSED
, skb
->data
[3], skb
->data
[4]);
63 rose
->neighbour
->use
--;
74 * State machine for state 2, Awaiting Clear Confirmation State.
75 * The handling of the timer(s) is in file rose_timer.c
76 * Handling of state 0 and connection release is in af_rose.c.
78 static int rose_state2_machine(struct sock
*sk
, struct sk_buff
*skb
, int frametype
)
80 struct rose_sock
*rose
= rose_sk(sk
);
83 case ROSE_CLEAR_REQUEST
:
84 rose_write_internal(sk
, ROSE_CLEAR_CONFIRMATION
);
85 rose_disconnect(sk
, 0, skb
->data
[3], skb
->data
[4]);
86 rose
->neighbour
->use
--;
89 case ROSE_CLEAR_CONFIRMATION
:
90 rose_disconnect(sk
, 0, -1, -1);
91 rose
->neighbour
->use
--;
102 * State machine for state 3, Connected State.
103 * The handling of the timer(s) is in file rose_timer.c
104 * Handling of state 0 and connection release is in af_rose.c.
106 static int rose_state3_machine(struct sock
*sk
, struct sk_buff
*skb
, int frametype
, int ns
, int nr
, int q
, int d
, int m
)
108 struct rose_sock
*rose
= rose_sk(sk
);
112 case ROSE_RESET_REQUEST
:
114 rose_start_idletimer(sk
);
115 rose_write_internal(sk
, ROSE_RESET_CONFIRMATION
);
116 rose
->condition
= 0x00;
121 rose_requeue_frames(sk
);
124 case ROSE_CLEAR_REQUEST
:
125 rose_write_internal(sk
, ROSE_CLEAR_CONFIRMATION
);
126 rose_disconnect(sk
, 0, skb
->data
[3], skb
->data
[4]);
127 rose
->neighbour
->use
--;
132 if (!rose_validate_nr(sk
, nr
)) {
133 rose_write_internal(sk
, ROSE_RESET_REQUEST
);
134 rose
->condition
= 0x00;
139 rose
->state
= ROSE_STATE_4
;
140 rose_start_t2timer(sk
);
141 rose_stop_idletimer(sk
);
143 rose_frames_acked(sk
, nr
);
144 if (frametype
== ROSE_RNR
) {
145 rose
->condition
|= ROSE_COND_PEER_RX_BUSY
;
147 rose
->condition
&= ~ROSE_COND_PEER_RX_BUSY
;
152 case ROSE_DATA
: /* XXX */
153 rose
->condition
&= ~ROSE_COND_PEER_RX_BUSY
;
154 if (!rose_validate_nr(sk
, nr
)) {
155 rose_write_internal(sk
, ROSE_RESET_REQUEST
);
156 rose
->condition
= 0x00;
161 rose
->state
= ROSE_STATE_4
;
162 rose_start_t2timer(sk
);
163 rose_stop_idletimer(sk
);
166 rose_frames_acked(sk
, nr
);
167 if (ns
== rose
->vr
) {
168 rose_start_idletimer(sk
);
169 if (sock_queue_rcv_skb(sk
, skb
) == 0) {
170 rose
->vr
= (rose
->vr
+ 1) % ROSE_MODULUS
;
173 /* Should never happen ! */
174 rose_write_internal(sk
, ROSE_RESET_REQUEST
);
175 rose
->condition
= 0x00;
180 rose
->state
= ROSE_STATE_4
;
181 rose_start_t2timer(sk
);
182 rose_stop_idletimer(sk
);
185 if (atomic_read(&sk
->sk_rmem_alloc
) >
187 rose
->condition
|= ROSE_COND_OWN_RX_BUSY
;
190 * If the window is full, ack the frame, else start the
191 * acknowledge hold back timer.
193 if (((rose
->vl
+ sysctl_rose_window_size
) % ROSE_MODULUS
) == rose
->vr
) {
194 rose
->condition
&= ~ROSE_COND_ACK_PENDING
;
196 rose_enquiry_response(sk
);
198 rose
->condition
|= ROSE_COND_ACK_PENDING
;
199 rose_start_hbtimer(sk
);
204 printk(KERN_WARNING
"ROSE: unknown %02X in state 3\n", frametype
);
212 * State machine for state 4, Awaiting Reset Confirmation State.
213 * The handling of the timer(s) is in file rose_timer.c
214 * Handling of state 0 and connection release is in af_rose.c.
216 static int rose_state4_machine(struct sock
*sk
, struct sk_buff
*skb
, int frametype
)
218 struct rose_sock
*rose
= rose_sk(sk
);
221 case ROSE_RESET_REQUEST
:
222 rose_write_internal(sk
, ROSE_RESET_CONFIRMATION
);
223 case ROSE_RESET_CONFIRMATION
:
225 rose_start_idletimer(sk
);
226 rose
->condition
= 0x00;
231 rose
->state
= ROSE_STATE_3
;
232 rose_requeue_frames(sk
);
235 case ROSE_CLEAR_REQUEST
:
236 rose_write_internal(sk
, ROSE_CLEAR_CONFIRMATION
);
237 rose_disconnect(sk
, 0, skb
->data
[3], skb
->data
[4]);
238 rose
->neighbour
->use
--;
249 * State machine for state 5, Awaiting Call Acceptance State.
250 * The handling of the timer(s) is in file rose_timer.c
251 * Handling of state 0 and connection release is in af_rose.c.
253 static int rose_state5_machine(struct sock
*sk
, struct sk_buff
*skb
, int frametype
)
255 if (frametype
== ROSE_CLEAR_REQUEST
) {
256 rose_write_internal(sk
, ROSE_CLEAR_CONFIRMATION
);
257 rose_disconnect(sk
, 0, skb
->data
[3], skb
->data
[4]);
258 rose_sk(sk
)->neighbour
->use
--;
264 /* Higher level upcall for a LAPB frame */
265 int rose_process_rx_frame(struct sock
*sk
, struct sk_buff
*skb
)
267 struct rose_sock
*rose
= rose_sk(sk
);
268 int queued
= 0, frametype
, ns
, nr
, q
, d
, m
;
270 if (rose
->state
== ROSE_STATE_0
)
273 frametype
= rose_decode(skb
, &ns
, &nr
, &q
, &d
, &m
);
275 switch (rose
->state
) {
277 queued
= rose_state1_machine(sk
, skb
, frametype
);
280 queued
= rose_state2_machine(sk
, skb
, frametype
);
283 queued
= rose_state3_machine(sk
, skb
, frametype
, ns
, nr
, q
, d
, m
);
286 queued
= rose_state4_machine(sk
, skb
, frametype
);
289 queued
= rose_state5_machine(sk
, skb
, frametype
);