1 // SPDX-License-Identifier: GPL-2.0-or-later
4 * Copyright (C) Jonathan Naylor G4KLX (g4klx@g4klx.demon.co.uk)
6 #include <linux/errno.h>
7 #include <linux/types.h>
8 #include <linux/socket.h>
10 #include <linux/kernel.h>
11 #include <linux/timer.h>
12 #include <linux/string.h>
13 #include <linux/sockios.h>
14 #include <linux/net.h>
15 #include <linux/slab.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/fcntl.h>
24 #include <linux/interrupt.h>
27 static int rose_create_facilities(unsigned char *buffer, struct rose_sock *rose);
30 * This routine purges all of the queues of frames.
32 void rose_clear_queues(struct sock *sk)
34 skb_queue_purge(&sk->sk_write_queue);
35 skb_queue_purge(&rose_sk(sk)->ack_queue);
39 * This routine purges the input queue of those frames that have been
40 * acknowledged. This replaces the boxes labelled "V(a) <- N(r)" on the
43 void rose_frames_acked(struct sock *sk, unsigned short nr)
46 struct rose_sock *rose = rose_sk(sk);
49 * Remove all the ack-ed frames from the ack queue.
52 while (skb_peek(&rose->ack_queue) != NULL && rose->va != nr) {
53 skb = skb_dequeue(&rose->ack_queue);
55 rose->va = (rose->va + 1) % ROSE_MODULUS;
60 void rose_requeue_frames(struct sock *sk)
62 struct sk_buff *skb, *skb_prev = NULL;
65 * Requeue all the un-ack-ed frames on the output queue to be picked
66 * up by rose_kick. This arrangement handles the possibility of an
69 while ((skb = skb_dequeue(&rose_sk(sk)->ack_queue)) != NULL) {
71 skb_queue_head(&sk->sk_write_queue, skb);
73 skb_append(skb_prev, skb, &sk->sk_write_queue);
79 * Validate that the value of nr is between va and vs. Return true or
82 int rose_validate_nr(struct sock *sk, unsigned short nr)
84 struct rose_sock *rose = rose_sk(sk);
85 unsigned short vc = rose->va;
87 while (vc != rose->vs) {
88 if (nr == vc) return 1;
89 vc = (vc + 1) % ROSE_MODULUS;
92 return nr == rose->vs;
96 * This routine is called when the packet layer internally generates a
99 void rose_write_internal(struct sock *sk, int frametype)
101 struct rose_sock *rose = rose_sk(sk);
104 unsigned char lci1, lci2;
109 reserve = AX25_BPQ_HEADER_LEN + AX25_MAX_HEADER_LEN + 1;
113 case ROSE_CALL_REQUEST:
114 len += 1 + ROSE_ADDR_LEN + ROSE_ADDR_LEN;
117 case ROSE_CALL_ACCEPTED:
118 case ROSE_CLEAR_REQUEST:
119 case ROSE_RESET_REQUEST:
124 skb = alloc_skb(reserve + len + maxfaclen, GFP_ATOMIC);
129 * Space for AX.25 header and PID.
131 skb_reserve(skb, reserve);
133 dptr = skb_put(skb, len);
135 lci1 = (rose->lci >> 8) & 0x0F;
136 lci2 = (rose->lci >> 0) & 0xFF;
139 case ROSE_CALL_REQUEST:
140 *dptr++ = ROSE_GFI | lci1;
143 *dptr++ = ROSE_CALL_REQ_ADDR_LEN_VAL;
144 memcpy(dptr, &rose->dest_addr, ROSE_ADDR_LEN);
145 dptr += ROSE_ADDR_LEN;
146 memcpy(dptr, &rose->source_addr, ROSE_ADDR_LEN);
147 dptr += ROSE_ADDR_LEN;
148 faclen = rose_create_facilities(dptr, rose);
149 skb_put(skb, faclen);
153 case ROSE_CALL_ACCEPTED:
154 *dptr++ = ROSE_GFI | lci1;
157 *dptr++ = 0x00; /* Address length */
158 *dptr++ = 0; /* Facilities length */
161 case ROSE_CLEAR_REQUEST:
162 *dptr++ = ROSE_GFI | lci1;
165 *dptr++ = rose->cause;
166 *dptr++ = rose->diagnostic;
169 case ROSE_RESET_REQUEST:
170 *dptr++ = ROSE_GFI | lci1;
173 *dptr++ = ROSE_DTE_ORIGINATED;
179 *dptr++ = ROSE_GFI | lci1;
182 *dptr++ |= (rose->vr << 5) & 0xE0;
185 case ROSE_CLEAR_CONFIRMATION:
186 case ROSE_RESET_CONFIRMATION:
187 *dptr++ = ROSE_GFI | lci1;
193 printk(KERN_ERR "ROSE: rose_write_internal - invalid frametype %02X\n", frametype);
198 rose_transmit_link(skb, rose->neighbour);
201 int rose_decode(struct sk_buff *skb, int *ns, int *nr, int *q, int *d, int *m)
203 unsigned char *frame;
207 *ns = *nr = *q = *d = *m = 0;
210 case ROSE_CALL_REQUEST:
211 case ROSE_CALL_ACCEPTED:
212 case ROSE_CLEAR_REQUEST:
213 case ROSE_CLEAR_CONFIRMATION:
214 case ROSE_RESET_REQUEST:
215 case ROSE_RESET_CONFIRMATION:
221 if ((frame[2] & 0x1F) == ROSE_RR ||
222 (frame[2] & 0x1F) == ROSE_RNR) {
223 *nr = (frame[2] >> 5) & 0x07;
224 return frame[2] & 0x1F;
227 if ((frame[2] & 0x01) == ROSE_DATA) {
228 *q = (frame[0] & ROSE_Q_BIT) == ROSE_Q_BIT;
229 *d = (frame[0] & ROSE_D_BIT) == ROSE_D_BIT;
230 *m = (frame[2] & ROSE_M_BIT) == ROSE_M_BIT;
231 *nr = (frame[2] >> 5) & 0x07;
232 *ns = (frame[2] >> 1) & 0x07;
239 static int rose_parse_national(unsigned char *p, struct rose_facilities_struct *facilities, int len)
242 unsigned char l, lg, n = 0;
243 int fac_national_digis_received = 0;
258 if (*p == FAC_NATIONAL_RAND)
259 facilities->rand = ((p[1] << 8) & 0xFF00) + ((p[2] << 0) & 0x00FF);
279 if (*p == FAC_NATIONAL_DEST_DIGI) {
280 if (!fac_national_digis_received) {
281 if (l < AX25_ADDR_LEN)
283 memcpy(&facilities->source_digis[0], p + 2, AX25_ADDR_LEN);
284 facilities->source_ndigis = 1;
287 else if (*p == FAC_NATIONAL_SRC_DIGI) {
288 if (!fac_national_digis_received) {
289 if (l < AX25_ADDR_LEN)
291 memcpy(&facilities->dest_digis[0], p + 2, AX25_ADDR_LEN);
292 facilities->dest_ndigis = 1;
295 else if (*p == FAC_NATIONAL_FAIL_CALL) {
296 if (l < AX25_ADDR_LEN)
298 memcpy(&facilities->fail_call, p + 2, AX25_ADDR_LEN);
300 else if (*p == FAC_NATIONAL_FAIL_ADD) {
301 if (l < 1 + ROSE_ADDR_LEN)
303 memcpy(&facilities->fail_addr, p + 3, ROSE_ADDR_LEN);
305 else if (*p == FAC_NATIONAL_DIGIS) {
306 if (l % AX25_ADDR_LEN)
308 fac_national_digis_received = 1;
309 facilities->source_ndigis = 0;
310 facilities->dest_ndigis = 0;
311 for (pt = p + 2, lg = 0 ; lg < l ; pt += AX25_ADDR_LEN, lg += AX25_ADDR_LEN) {
312 if (pt[6] & AX25_HBIT) {
313 if (facilities->dest_ndigis >= ROSE_MAX_DIGIS)
315 memcpy(&facilities->dest_digis[facilities->dest_ndigis++], pt, AX25_ADDR_LEN);
317 if (facilities->source_ndigis >= ROSE_MAX_DIGIS)
319 memcpy(&facilities->source_digis[facilities->source_ndigis++], pt, AX25_ADDR_LEN);
328 } while (*p != 0x00 && len > 0);
333 static int rose_parse_ccitt(unsigned char *p, struct rose_facilities_struct *facilities, int len)
335 unsigned char l, n = 0;
369 /* Prevent overflows*/
370 if (l < 10 || l > 20)
373 if (*p == FAC_CCITT_DEST_NSAP) {
374 memcpy(&facilities->source_addr, p + 7, ROSE_ADDR_LEN);
375 memcpy(callsign, p + 12, l - 10);
376 callsign[l - 10] = '\0';
377 asc2ax(&facilities->source_call, callsign);
379 if (*p == FAC_CCITT_SRC_NSAP) {
380 memcpy(&facilities->dest_addr, p + 7, ROSE_ADDR_LEN);
381 memcpy(callsign, p + 12, l - 10);
382 callsign[l - 10] = '\0';
383 asc2ax(&facilities->dest_call, callsign);
390 } while (*p != 0x00 && len > 0);
395 int rose_parse_facilities(unsigned char *p, unsigned packet_len,
396 struct rose_facilities_struct *facilities)
398 int facilities_len, len;
400 facilities_len = *p++;
402 if (facilities_len == 0 || (unsigned int)facilities_len > packet_len)
405 while (facilities_len >= 3 && *p == 0x00) {
410 case FAC_NATIONAL: /* National */
411 len = rose_parse_national(p + 1, facilities, facilities_len - 1);
414 case FAC_CCITT: /* CCITT */
415 len = rose_parse_ccitt(p + 1, facilities, facilities_len - 1);
419 printk(KERN_DEBUG "ROSE: rose_parse_facilities - unknown facilities family %02X\n", *p);
426 if (WARN_ON(len >= facilities_len))
428 facilities_len -= len + 1;
432 return facilities_len == 0;
435 static int rose_create_facilities(unsigned char *buffer, struct rose_sock *rose)
437 unsigned char *p = buffer + 1;
442 /* National Facilities */
443 if (rose->rand != 0 || rose->source_ndigis == 1 || rose->dest_ndigis == 1) {
447 if (rose->rand != 0) {
448 *p++ = FAC_NATIONAL_RAND;
449 *p++ = (rose->rand >> 8) & 0xFF;
450 *p++ = (rose->rand >> 0) & 0xFF;
453 /* Sent before older facilities */
454 if ((rose->source_ndigis > 0) || (rose->dest_ndigis > 0)) {
456 *p++ = FAC_NATIONAL_DIGIS;
457 *p++ = AX25_ADDR_LEN * (rose->source_ndigis + rose->dest_ndigis);
458 for (nb = 0 ; nb < rose->source_ndigis ; nb++) {
459 if (++maxdigi >= ROSE_MAX_DIGIS)
461 memcpy(p, &rose->source_digis[nb], AX25_ADDR_LEN);
465 for (nb = 0 ; nb < rose->dest_ndigis ; nb++) {
466 if (++maxdigi >= ROSE_MAX_DIGIS)
468 memcpy(p, &rose->dest_digis[nb], AX25_ADDR_LEN);
474 /* For compatibility */
475 if (rose->source_ndigis > 0) {
476 *p++ = FAC_NATIONAL_SRC_DIGI;
477 *p++ = AX25_ADDR_LEN;
478 memcpy(p, &rose->source_digis[0], AX25_ADDR_LEN);
482 /* For compatibility */
483 if (rose->dest_ndigis > 0) {
484 *p++ = FAC_NATIONAL_DEST_DIGI;
485 *p++ = AX25_ADDR_LEN;
486 memcpy(p, &rose->dest_digis[0], AX25_ADDR_LEN);
494 *p++ = FAC_CCITT_DEST_NSAP;
496 callsign = ax2asc(buf, &rose->dest_call);
498 *p++ = strlen(callsign) + 10;
499 *p++ = (strlen(callsign) + 9) * 2; /* ??? */
501 *p++ = 0x47; *p++ = 0x00; *p++ = 0x11;
502 *p++ = ROSE_ADDR_LEN * 2;
503 memcpy(p, &rose->dest_addr, ROSE_ADDR_LEN);
506 memcpy(p, callsign, strlen(callsign));
507 p += strlen(callsign);
509 *p++ = FAC_CCITT_SRC_NSAP;
511 callsign = ax2asc(buf, &rose->source_call);
513 *p++ = strlen(callsign) + 10;
514 *p++ = (strlen(callsign) + 9) * 2; /* ??? */
516 *p++ = 0x47; *p++ = 0x00; *p++ = 0x11;
517 *p++ = ROSE_ADDR_LEN * 2;
518 memcpy(p, &rose->source_addr, ROSE_ADDR_LEN);
521 memcpy(p, callsign, strlen(callsign));
522 p += strlen(callsign);
530 void rose_disconnect(struct sock *sk, int reason, int cause, int diagnostic)
532 struct rose_sock *rose = rose_sk(sk);
535 rose_stop_idletimer(sk);
537 rose_clear_queues(sk);
540 rose->state = ROSE_STATE_0;
545 if (diagnostic != -1)
546 rose->diagnostic = diagnostic;
548 sk->sk_state = TCP_CLOSE;
550 sk->sk_shutdown |= SEND_SHUTDOWN;
552 if (!sock_flag(sk, SOCK_DEAD)) {
553 sk->sk_state_change(sk);
554 sock_set_flag(sk, SOCK_DEAD);