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 Jonathan Naylor G4KLX (g4klx@g4klx.demon.co.uk)
8 * Copyright Darryl Miles G7LED (dlm@g7led.demon.co.uk)
10 #include <linux/errno.h>
11 #include <linux/types.h>
12 #include <linux/socket.h>
14 #include <linux/kernel.h>
15 #include <linux/timer.h>
16 #include <linux/string.h>
17 #include <linux/sockios.h>
18 #include <linux/net.h>
19 #include <linux/slab.h>
21 #include <linux/inet.h>
22 #include <linux/netdevice.h>
23 #include <linux/skbuff.h>
25 #include <asm/uaccess.h>
26 #include <linux/fcntl.h>
28 #include <linux/interrupt.h>
29 #include <net/netrom.h>
32 * This is where all NET/ROM frames pass, except for IP-over-NET/ROM which
33 * cannot be fragmented in this manner.
35 void nr_output(struct sock
*sk
, struct sk_buff
*skb
)
38 unsigned char transport
[NR_TRANSPORT_LEN
];
39 int err
, frontlen
, len
;
41 if (skb
->len
- NR_TRANSPORT_LEN
> NR_MAX_PACKET_SIZE
) {
42 /* Save a copy of the Transport Header */
43 skb_copy_from_linear_data(skb
, transport
, NR_TRANSPORT_LEN
);
44 skb_pull(skb
, NR_TRANSPORT_LEN
);
46 frontlen
= skb_headroom(skb
);
48 while (skb
->len
> 0) {
49 if ((skbn
= sock_alloc_send_skb(sk
, frontlen
+ NR_MAX_PACKET_SIZE
, 0, &err
)) == NULL
)
52 skb_reserve(skbn
, frontlen
);
54 len
= (NR_MAX_PACKET_SIZE
> skb
->len
) ? skb
->len
: NR_MAX_PACKET_SIZE
;
56 /* Copy the user data */
57 skb_copy_from_linear_data(skb
, skb_put(skbn
, len
), len
);
60 /* Duplicate the Transport Header */
61 skb_push(skbn
, NR_TRANSPORT_LEN
);
62 skb_copy_to_linear_data(skbn
, transport
,
65 skbn
->data
[4] |= NR_MORE_FLAG
;
67 skb_queue_tail(&sk
->sk_write_queue
, skbn
); /* Throw it on the queue */
72 skb_queue_tail(&sk
->sk_write_queue
, skb
); /* Throw it on the queue */
79 * This procedure is passed a buffer descriptor for an iframe. It builds
80 * the rest of the control part of the frame and then writes it out.
82 static void nr_send_iframe(struct sock
*sk
, struct sk_buff
*skb
)
84 struct nr_sock
*nr
= nr_sk(sk
);
89 skb
->data
[2] = nr
->vs
;
90 skb
->data
[3] = nr
->vr
;
92 if (nr
->condition
& NR_COND_OWN_RX_BUSY
)
93 skb
->data
[4] |= NR_CHOKE_FLAG
;
95 nr_start_idletimer(sk
);
97 nr_transmit_buffer(sk
, skb
);
100 void nr_send_nak_frame(struct sock
*sk
)
102 struct sk_buff
*skb
, *skbn
;
103 struct nr_sock
*nr
= nr_sk(sk
);
105 if ((skb
= skb_peek(&nr
->ack_queue
)) == NULL
)
108 if ((skbn
= skb_clone(skb
, GFP_ATOMIC
)) == NULL
)
111 skbn
->data
[2] = nr
->va
;
112 skbn
->data
[3] = nr
->vr
;
114 if (nr
->condition
& NR_COND_OWN_RX_BUSY
)
115 skbn
->data
[4] |= NR_CHOKE_FLAG
;
117 nr_transmit_buffer(sk
, skbn
);
119 nr
->condition
&= ~NR_COND_ACK_PENDING
;
125 void nr_kick(struct sock
*sk
)
127 struct nr_sock
*nr
= nr_sk(sk
);
128 struct sk_buff
*skb
, *skbn
;
129 unsigned short start
, end
;
131 if (nr
->state
!= NR_STATE_3
)
134 if (nr
->condition
& NR_COND_PEER_RX_BUSY
)
137 if (!skb_peek(&sk
->sk_write_queue
))
140 start
= (skb_peek(&nr
->ack_queue
) == NULL
) ? nr
->va
: nr
->vs
;
141 end
= (nr
->va
+ nr
->window
) % NR_MODULUS
;
149 * Transmit data until either we're out of data to send or
150 * the window is full.
154 * Dequeue the frame and copy it.
156 skb
= skb_dequeue(&sk
->sk_write_queue
);
159 if ((skbn
= skb_clone(skb
, GFP_ATOMIC
)) == NULL
) {
160 skb_queue_head(&sk
->sk_write_queue
, skb
);
164 skb_set_owner_w(skbn
, sk
);
167 * Transmit the frame copy.
169 nr_send_iframe(sk
, skbn
);
171 nr
->vs
= (nr
->vs
+ 1) % NR_MODULUS
;
174 * Requeue the original data frame.
176 skb_queue_tail(&nr
->ack_queue
, skb
);
178 } while (nr
->vs
!= end
&&
179 (skb
= skb_dequeue(&sk
->sk_write_queue
)) != NULL
);
182 nr
->condition
&= ~NR_COND_ACK_PENDING
;
184 if (!nr_t1timer_running(sk
))
185 nr_start_t1timer(sk
);
188 void nr_transmit_buffer(struct sock
*sk
, struct sk_buff
*skb
)
190 struct nr_sock
*nr
= nr_sk(sk
);
194 * Add the protocol byte and network header.
196 dptr
= skb_push(skb
, NR_NETWORK_LEN
);
198 memcpy(dptr
, &nr
->source_addr
, AX25_ADDR_LEN
);
199 dptr
[6] &= ~AX25_CBIT
;
200 dptr
[6] &= ~AX25_EBIT
;
201 dptr
[6] |= AX25_SSSID_SPARE
;
202 dptr
+= AX25_ADDR_LEN
;
204 memcpy(dptr
, &nr
->dest_addr
, AX25_ADDR_LEN
);
205 dptr
[6] &= ~AX25_CBIT
;
206 dptr
[6] |= AX25_EBIT
;
207 dptr
[6] |= AX25_SSSID_SPARE
;
208 dptr
+= AX25_ADDR_LEN
;
210 *dptr
++ = sysctl_netrom_network_ttl_initialiser
;
212 if (!nr_route_frame(skb
, NULL
)) {
214 nr_disconnect(sk
, ENETUNREACH
);
219 * The following routines are taken from page 170 of the 7th ARRL Computer
220 * Networking Conference paper, as is the whole state machine.
223 void nr_establish_data_link(struct sock
*sk
)
225 struct nr_sock
*nr
= nr_sk(sk
);
227 nr
->condition
= 0x00;
230 nr_write_internal(sk
, NR_CONNREQ
);
234 nr_stop_idletimer(sk
);
235 nr_start_t1timer(sk
);
239 * Never send a NAK when we are CHOKEd.
241 void nr_enquiry_response(struct sock
*sk
)
243 struct nr_sock
*nr
= nr_sk(sk
);
244 int frametype
= NR_INFOACK
;
246 if (nr
->condition
& NR_COND_OWN_RX_BUSY
) {
247 frametype
|= NR_CHOKE_FLAG
;
249 if (skb_peek(&nr
->reseq_queue
) != NULL
)
250 frametype
|= NR_NAK_FLAG
;
253 nr_write_internal(sk
, frametype
);
256 nr
->condition
&= ~NR_COND_ACK_PENDING
;
259 void nr_check_iframes_acked(struct sock
*sk
, unsigned short nr
)
261 struct nr_sock
*nrom
= nr_sk(sk
);
263 if (nrom
->vs
== nr
) {
264 nr_frames_acked(sk
, nr
);
268 if (nrom
->va
!= nr
) {
269 nr_frames_acked(sk
, nr
);
270 nr_start_t1timer(sk
);