1 // SPDX-License-Identifier: GPL-2.0-or-later
4 * Copyright Jonathan Naylor G4KLX (g4klx@g4klx.demon.co.uk)
5 * Copyright Darryl Miles G7LED (dlm@g7led.demon.co.uk)
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>
16 #include <linux/slab.h>
18 #include <linux/inet.h>
19 #include <linux/netdevice.h>
20 #include <linux/skbuff.h>
22 #include <net/tcp_states.h>
23 #include <linux/uaccess.h>
24 #include <linux/fcntl.h>
26 #include <linux/interrupt.h>
27 #include <net/netrom.h>
29 static int nr_queue_rx_frame(struct sock *sk, struct sk_buff *skb, int more)
31 struct sk_buff *skbo, *skbn = skb;
32 struct nr_sock *nr = nr_sk(sk);
34 skb_pull(skb, NR_NETWORK_LEN + NR_TRANSPORT_LEN);
36 nr_start_idletimer(sk);
39 nr->fraglen += skb->len;
40 skb_queue_tail(&nr->frag_queue, skb);
44 if (!more && nr->fraglen > 0) { /* End of fragment */
45 nr->fraglen += skb->len;
46 skb_queue_tail(&nr->frag_queue, skb);
48 if ((skbn = alloc_skb(nr->fraglen, GFP_ATOMIC)) == NULL)
51 skb_reset_transport_header(skbn);
53 while ((skbo = skb_dequeue(&nr->frag_queue)) != NULL) {
54 skb_copy_from_linear_data(skbo,
55 skb_put(skbn, skbo->len),
63 return sock_queue_rcv_skb(sk, skbn);
67 * State machine for state 1, Awaiting Connection State.
68 * The handling of the timer(s) is in file nr_timer.c.
69 * Handling of state 0 and connection release is in netrom.c.
71 static int nr_state1_machine(struct sock *sk, struct sk_buff *skb,
76 struct nr_sock *nr = nr_sk(sk);
79 nr_start_idletimer(sk);
80 nr->your_index = skb->data[17];
81 nr->your_id = skb->data[18];
86 nr->state = NR_STATE_3;
88 nr->window = skb->data[20];
89 sk->sk_state = TCP_ESTABLISHED;
90 if (!sock_flag(sk, SOCK_DEAD))
91 sk->sk_state_change(sk);
95 case NR_CONNACK | NR_CHOKE_FLAG:
96 nr_disconnect(sk, ECONNREFUSED);
100 if (sysctl_netrom_reset_circuit)
101 nr_disconnect(sk, ECONNRESET);
111 * State machine for state 2, Awaiting Release State.
112 * The handling of the timer(s) is in file nr_timer.c
113 * Handling of state 0 and connection release is in netrom.c.
115 static int nr_state2_machine(struct sock *sk, struct sk_buff *skb,
119 case NR_CONNACK | NR_CHOKE_FLAG:
120 nr_disconnect(sk, ECONNRESET);
124 nr_write_internal(sk, NR_DISCACK);
127 nr_disconnect(sk, 0);
131 if (sysctl_netrom_reset_circuit)
132 nr_disconnect(sk, ECONNRESET);
142 * State machine for state 3, Connected State.
143 * The handling of the timer(s) is in file nr_timer.c
144 * Handling of state 0 and connection release is in netrom.c.
146 static int nr_state3_machine(struct sock *sk, struct sk_buff *skb, int frametype)
148 struct nr_sock *nrom = nr_sk(sk);
149 struct sk_buff_head temp_queue;
150 struct sk_buff *skbn;
151 unsigned short save_vr;
152 unsigned short nr, ns;
159 nr_write_internal(sk, NR_CONNACK);
163 nr_write_internal(sk, NR_DISCACK);
164 nr_disconnect(sk, 0);
167 case NR_CONNACK | NR_CHOKE_FLAG:
169 nr_disconnect(sk, ECONNRESET);
173 case NR_INFOACK | NR_CHOKE_FLAG:
174 case NR_INFOACK | NR_NAK_FLAG:
175 case NR_INFOACK | NR_NAK_FLAG | NR_CHOKE_FLAG:
176 if (frametype & NR_CHOKE_FLAG) {
177 nrom->condition |= NR_COND_PEER_RX_BUSY;
178 nr_start_t4timer(sk);
180 nrom->condition &= ~NR_COND_PEER_RX_BUSY;
183 if (!nr_validate_nr(sk, nr)) {
186 if (frametype & NR_NAK_FLAG) {
187 nr_frames_acked(sk, nr);
188 nr_send_nak_frame(sk);
190 if (nrom->condition & NR_COND_PEER_RX_BUSY) {
191 nr_frames_acked(sk, nr);
193 nr_check_iframes_acked(sk, nr);
199 case NR_INFO | NR_NAK_FLAG:
200 case NR_INFO | NR_CHOKE_FLAG:
201 case NR_INFO | NR_MORE_FLAG:
202 case NR_INFO | NR_NAK_FLAG | NR_CHOKE_FLAG:
203 case NR_INFO | NR_CHOKE_FLAG | NR_MORE_FLAG:
204 case NR_INFO | NR_NAK_FLAG | NR_MORE_FLAG:
205 case NR_INFO | NR_NAK_FLAG | NR_CHOKE_FLAG | NR_MORE_FLAG:
206 if (frametype & NR_CHOKE_FLAG) {
207 nrom->condition |= NR_COND_PEER_RX_BUSY;
208 nr_start_t4timer(sk);
210 nrom->condition &= ~NR_COND_PEER_RX_BUSY;
213 if (nr_validate_nr(sk, nr)) {
214 if (frametype & NR_NAK_FLAG) {
215 nr_frames_acked(sk, nr);
216 nr_send_nak_frame(sk);
218 if (nrom->condition & NR_COND_PEER_RX_BUSY) {
219 nr_frames_acked(sk, nr);
221 nr_check_iframes_acked(sk, nr);
226 skb_queue_head(&nrom->reseq_queue, skb);
227 if (nrom->condition & NR_COND_OWN_RX_BUSY)
229 skb_queue_head_init(&temp_queue);
232 while ((skbn = skb_dequeue(&nrom->reseq_queue)) != NULL) {
234 if (ns == nrom->vr) {
235 if (nr_queue_rx_frame(sk, skbn, frametype & NR_MORE_FLAG) == 0) {
236 nrom->vr = (nrom->vr + 1) % NR_MODULUS;
238 nrom->condition |= NR_COND_OWN_RX_BUSY;
239 skb_queue_tail(&temp_queue, skbn);
241 } else if (nr_in_rx_window(sk, ns)) {
242 skb_queue_tail(&temp_queue, skbn);
247 while ((skbn = skb_dequeue(&temp_queue)) != NULL) {
248 skb_queue_tail(&nrom->reseq_queue, skbn);
250 } while (save_vr != nrom->vr);
252 * Window is full, ack it immediately.
254 if (((nrom->vl + nrom->window) % NR_MODULUS) == nrom->vr) {
255 nr_enquiry_response(sk);
257 if (!(nrom->condition & NR_COND_ACK_PENDING)) {
258 nrom->condition |= NR_COND_ACK_PENDING;
259 nr_start_t2timer(sk);
265 if (sysctl_netrom_reset_circuit)
266 nr_disconnect(sk, ECONNRESET);
275 /* Higher level upcall for a LAPB frame - called with sk locked */
276 int nr_process_rx_frame(struct sock *sk, struct sk_buff *skb)
278 struct nr_sock *nr = nr_sk(sk);
279 int queued = 0, frametype;
281 if (nr->state == NR_STATE_0)
284 frametype = skb->data[19];
288 queued = nr_state1_machine(sk, skb, frametype);
291 queued = nr_state2_machine(sk, skb, frametype);
294 queued = nr_state3_machine(sk, skb, frametype);