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 #include <linux/errno.h>
10 #include <linux/types.h>
11 #include <linux/socket.h>
13 #include <linux/kernel.h>
14 #include <linux/sched.h>
15 #include <linux/timer.h>
16 #include <linux/string.h>
17 #include <linux/sockios.h>
18 #include <linux/net.h>
20 #include <linux/inet.h>
21 #include <linux/netdevice.h>
22 #include <linux/skbuff.h>
24 #include <asm/system.h>
25 #include <linux/fcntl.h>
27 #include <linux/interrupt.h>
31 * This procedure is passed a buffer descriptor for an iframe. It builds
32 * the rest of the control part of the frame and then writes it out.
34 static void rose_send_iframe(struct sock *sk, struct sk_buff *skb)
36 struct rose_sock *rose = rose_sk(sk);
41 skb->data[2] |= (rose->vr << 5) & 0xE0;
42 skb->data[2] |= (rose->vs << 1) & 0x0E;
44 rose_start_idletimer(sk);
46 rose_transmit_link(skb, rose->neighbour);
49 void rose_kick(struct sock *sk)
51 struct rose_sock *rose = rose_sk(sk);
52 struct sk_buff *skb, *skbn;
53 unsigned short start, end;
55 if (rose->state != ROSE_STATE_3)
58 if (rose->condition & ROSE_COND_PEER_RX_BUSY)
61 if (!skb_peek(&sk->sk_write_queue))
64 start = (skb_peek(&rose->ack_queue) == NULL) ? rose->va : rose->vs;
65 end = (rose->va + sysctl_rose_window_size) % ROSE_MODULUS;
73 * Transmit data until either we're out of data to send or
77 skb = skb_dequeue(&sk->sk_write_queue);
80 if ((skbn = skb_clone(skb, GFP_ATOMIC)) == NULL) {
81 skb_queue_head(&sk->sk_write_queue, skb);
85 skb_set_owner_w(skbn, sk);
88 * Transmit the frame copy.
90 rose_send_iframe(sk, skbn);
92 rose->vs = (rose->vs + 1) % ROSE_MODULUS;
95 * Requeue the original data frame.
97 skb_queue_tail(&rose->ack_queue, skb);
99 } while (rose->vs != end &&
100 (skb = skb_dequeue(&sk->sk_write_queue)) != NULL);
103 rose->condition &= ~ROSE_COND_ACK_PENDING;
109 * The following routines are taken from page 170 of the 7th ARRL Computer
110 * Networking Conference paper, as is the whole state machine.
113 void rose_enquiry_response(struct sock *sk)
115 struct rose_sock *rose = rose_sk(sk);
117 if (rose->condition & ROSE_COND_OWN_RX_BUSY)
118 rose_write_internal(sk, ROSE_RNR);
120 rose_write_internal(sk, ROSE_RR);
123 rose->condition &= ~ROSE_COND_ACK_PENDING;