2 * Connection oriented routing
3 * Copyright (C) 2007-2008 Michael Blizek
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; either version 2
8 * of the License, or (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21 #include <linux/gfp.h>
22 #include <linux/jiffies.h>
23 #include <linux/slab.h>
27 static struct htable retransmits
;
29 static void free_skb(struct ref_counter
*cnt
)
31 struct skb_procstate
*ps
= container_of(cnt
, struct skb_procstate
,
32 funcstate
.retransmit_queue
.refs
);
34 struct sk_buff
*skb
= skb_from_pstate(ps
);
36 ref_counter_decr(&(ps
->rconn
->refs
));
40 static struct ref_counter_def skb_refcnt
= {
44 struct retransmit_matchparam
{
50 static __u32
rm_to_key(struct retransmit_matchparam
*rm
)
52 return rm
->conn_id
^ rm
->seqno
;
55 /* static struct sk_buff * cor_dequeue(struct Qdisc *sch)
59 struct cor_sched_data *q = qdisc_priv(sch);
61 struct list_head *ln = q->conn_list.next;
62 struct conn *best = 0;
64 __u64 currcost_limit = 0;
67 spin_lock(&(q->lock));
69 if (!(skb_queue_empty(&(q->requeue_queue)))) {
70 ret = __skb_dequeue(&(q->requeue_queue));
74 while (&(q->conn_list) != ln) {
75 __u32 max1, max2, maxcost;
76 struct conn *curr = (struct conn *)
77 (((char *) ln) - offsetof(struct conn,
78 target.out.queue_list));
80 BUG_ON(TARGET_OUT != curr->targettype);
81 max1 = (256 * ((__u64)curr->credits)) /
82 ((__u64)curr->bytes_queued + curr->avg_rate);
84 max2 = (256 * ((__u64)curr->credits +
85 curr->credit_sender - curr->credit_recp)) /
86 ((__u64)curr->bytes_queued + 2*curr->avg_rate);
88 maxcost = max((__u32) 0, min((max1), (max2)));
90 if (maxcost > currcost_limit) {
91 currcost = currcost_limit;
92 currcost_limit = maxcost;
99 best->credits -= currcost;
101 ret = __skb_dequeue(&(best->target.out.queue));
103 if (skb_queue_empty(&(best->target.out.queue))) {
104 list_del(&(best->target.out.queue_list));
105 best->target.out.qdisc_active = 0;
109 spin_unlock(&(q->lock));
111 if (likely(0 != ret)) {
112 sch->qstats.backlog -= ret->len;
119 static int cor_enqueue(struct sk_buff *skb, struct Qdisc *sch)
121 struct cor_sched_data *q = qdisc_priv(sch);
124 rconn = skb_pstate(skb)->rconn;
126 BUG_ON(TARGET_OUT != rconn->targettype);
128 spin_lock(&(rconn->target.out.qdisc_lock));
130 __skb_queue_tail(&(rconn->target.out.queue), skb);
132 if (unlikely(0 == rconn->target.out.qdisc_active)) {
133 spin_lock(&(q->lock));
134 list_add(&(rconn->target.out.queue_list), &(q->conn_list));
135 rconn->target.out.qdisc_active = 1;
136 spin_unlock(&(q->lock));
139 spin_unlock(&(rconn->target.out.qdisc_lock));
141 sch->bstats.bytes += skb->len;
142 sch->bstats.packets++;
145 return NET_XMIT_SUCCESS;
148 static void cor_xmit(struct sk_buff
*skb
, int atomic
)
150 struct sk_buff
*skb2
;
154 skb2
= skb_clone(skb
, __GFP_DMA
| (atomic
? GFP_ATOMIC
: GFP_KERNEL
));
157 printk(KERN_WARNING
"cor_xmit: cannot clone skb, "
158 "allocation failure?");
162 printk(KERN_ERR
"xmit");
163 dev_queue_xmit(skb2
);
166 static void set_retrans_timeout(struct sk_buff
*skb
, struct neighbor
*nb
)
168 struct skb_procstate
*ps
= skb_pstate(skb
);
169 ps
->funcstate
.retransmit_queue
.timeout
= jiffies
+
170 msecs_to_jiffies(300 + nb
->latency
);
173 void retransmit_timerfunc(unsigned long arg
)
175 unsigned long iflags
;
177 struct neighbor
*nb
= (struct neighbor
*) arg
;
178 struct sk_buff
*skb
= 0;
179 unsigned long timeout
;
182 spin_lock_irqsave( &(nb
->retrans_lock
), iflags
);
183 skb
= __skb_dequeue(&(nb
->retrans_list
));
188 timeout
= skb_pstate(skb
)->funcstate
.retransmit_queue
.timeout
;
190 if (time_after(timeout
, jiffies
)) {
191 __skb_queue_head(&(nb
->retrans_list
), skb
);
195 set_retrans_timeout(skb
, nb
);
197 __skb_queue_tail(&(nb
->retrans_list
), skb
);
199 spin_unlock_irqrestore( &(nb
->retrans_lock
), iflags
);
204 mod_timer(&(nb
->retrans_timer
), timeout
);
207 spin_unlock_irqrestore( &(nb
->retrans_lock
), iflags
);
210 static struct sk_buff
*create_packet(struct neighbor
*nb
, int size
,
211 gfp_t alloc_flags
, __u32 conn_id
, __u32 seqno
,
214 struct net_device
*dev
= nb
->dev
;
216 struct skb_procstate
*ps
;
219 ret
= alloc_skb(size
+ 9 + LL_ALLOCATED_SPACE(dev
), alloc_flags
);
220 if (unlikely(0 == ret
))
223 ret
->protocol
= htons(ETH_P_COR
);
226 skb_reserve(ret
, LL_RESERVED_SPACE(dev
));
227 if(unlikely(dev_hard_header(ret
, dev
, ETH_P_COR
, nb
->mac
,
228 dev
->dev_addr
, ret
->len
) < 0))
230 skb_reset_network_header(ret
);
232 ps
= skb_pstate(ret
);
234 memset(&(ps
->funcstate
.retransmit_queue
), 0,
235 sizeof(ps
->funcstate
.retransmit_queue
));
236 #warning todo funcstate.retransmit_queue.htab_entry
237 ps
->funcstate
.retransmit_queue
.conn_id
= conn_id
;
238 ps
->funcstate
.retransmit_queue
.seqno
= seqno
;
239 ps
->funcstate
.retransmit_queue
.nb
= nb
;
240 #warning todo decr refcnt
241 ref_counter_incr(&(nb
->refs
));
243 dest
= skb_put(ret
, 9);
246 dest
[0] = PACKET_TYPE_DATA
;
249 put_u32(dest
, conn_id
, 1);
251 put_u32(dest
, seqno
, 1);
257 struct sk_buff
*create_packet_conn(struct conn
*target
, int size
,
260 __u32 connid
= target
->target
.out
.conn_id
;
263 BUG_ON(target
->targettype
!= TARGET_OUT
);
265 seqno
= target
->target
.out
.seqno
;
266 target
->target
.out
.seqno
+= size
;
268 return create_packet(target
->target
.out
.nb
, size
, alloc_flags
,
269 connid
, seqno
, target
);
272 struct sk_buff
*create_packet_kernel(struct neighbor
*nb
, int size
,
275 __u32 seqno
= atomic_add_return(1, &(nb
->kpacket_seqno
));
276 return create_packet(nb
, size
, alloc_flags
, 0, seqno
, 0);
279 void send_conn_flushdata(struct conn
*rconn
, char *data
, __u32 datalen
)
282 struct control_msg_out
*cm
= alloc_control_msg();
284 seqno
= rconn
->target
.out
.seqno
;
285 rconn
->target
.out
.seqno
+= datalen
;
287 #warning todo retransmit/controlmsg == 0
289 send_conndata(cm
, rconn
->target
.out
.nb
, rconn
->target
.out
.conn_id
,
290 seqno
, data
, data
, datalen
);
293 static void schedule_retransmit(struct sk_buff
*skb
, struct neighbor
*nb
)
295 unsigned long iflags
;
297 struct skb_procstate
*ps
= skb_pstate(skb
);
298 struct retransmit_matchparam rm
;
301 rm
.conn_id
= ps
->funcstate
.retransmit_queue
.conn_id
;
302 rm
.seqno
= ps
->funcstate
.retransmit_queue
.seqno
;
305 set_retrans_timeout(skb
, nb
);
306 ref_counter_init(&(ps
->funcstate
.retransmit_queue
.refs
), &skb_refcnt
);
307 htable_insert(&retransmits
, (char *) skb
, rm_to_key(&rm
));
308 spin_lock_irqsave( &(nb
->retrans_lock
), iflags
);
309 first
= unlikely(skb_queue_empty(&(nb
->retrans_list
)));
310 __skb_queue_tail(&(nb
->retrans_list
), skb
);
313 mod_timer(&(nb
->retrans_timer
),
314 ps
->funcstate
.retransmit_queue
.timeout
);
317 spin_unlock_irqrestore( &(nb
->retrans_lock
), iflags
);
319 ref_counter_incr(&(ps
->funcstate
.retransmit_queue
.refs
));
322 void send_packet(struct sk_buff
*skb
, struct neighbor
*nb
, int retransmit
)
324 struct skb_procstate
*ps
= skb_pstate(skb
);
327 schedule_retransmit(skb
, nb
);
330 ref_counter_incr(&(ps
->rconn
->refs
));
335 void ack_received(struct neighbor
*nb
, __u32 conn_id
, __u32 seqno
)
337 unsigned long iflags
;
339 struct sk_buff
*skb
= 0;
340 struct skb_procstate
*ps
;
341 struct retransmit_matchparam rm
;
347 rm
.conn_id
= conn_id
;
351 skb
= (struct sk_buff
*) htable_get(&retransmits
, rm_to_key(&rm
), &rm
);
354 printk(KERN_ERR
"bogus/duplicate ack received");
358 ps
= skb_pstate(skb
);
360 ret
= htable_delete(&retransmits
, rm_to_key(&rm
), &rm
);
362 /* somebody else has already deleted it in the meantime */
366 spin_lock_irqsave( &(nb
->retrans_lock
), iflags
);
368 if (unlikely(nb
->retrans_list
.next
== skb
))
370 skb
->next
->prev
= skb
->prev
;
371 skb
->prev
->next
= skb
->next
;
374 if (unlikely(skb_queue_empty(&(nb
->retrans_list
)))) {
375 mod_timer(&(nb
->retrans_timer
), jiffies
+ nb
->latency
);
379 spin_unlock_irqrestore( &(nb
->retrans_lock
), iflags
);
382 void flush_out(struct conn
*rconn
)
384 int targetmss
= mss(rconn
->target
.out
.nb
);
389 if (unlikely(rconn
->target
.out
.conn_id
== 0))
392 while (rconn
->buf
.read_remaining
>= targetmss
) {
393 struct sk_buff
*newskb
= create_packet_conn(rconn
, targetmss
,
396 char *dst
= skb_put(newskb
, targetmss
);
397 databuf_pull(&(rconn
->buf
), dst
, targetmss
);
398 databuf_ackread(&(rconn
->buf
));
399 send_packet(newskb
, rconn
->target
.out
.nb
, 1);
402 if (rconn
->buf
.read_remaining
== 0)
405 len
= rconn
->buf
.read_remaining
;
406 buf
= kmalloc(len
, GFP_KERNEL
);
408 databuf_pull(&(rconn
->buf
), buf
, len
);
409 databuf_ackread(&(rconn
->buf
));
411 send_conn_flushdata(rconn
, buf
, len
);
416 static int matches_skb_connid_seqno(void *htentry
, void *searcheditem
)
418 struct sk_buff
*skb
= (struct sk_buff
*) htentry
;
419 struct skb_procstate
*ps
= skb_pstate(skb
);
420 struct retransmit_matchparam
*rm
= (struct retransmit_matchparam
*)
423 return rm
->conn_id
== ps
->funcstate
.retransmit_queue
.conn_id
&&
424 rm
->seqno
== ps
->funcstate
.retransmit_queue
.seqno
&&
425 rm
->nb
== ps
->funcstate
.retransmit_queue
.nb
;
428 static inline __u32
retransmit_entryoffset(void)
430 return offsetof(struct sk_buff
, cb
) + offsetof(struct skb_procstate
,
431 funcstate
.retransmit_queue
.htab_entry
);
434 static inline __u32
retransmit_refsoffset(void)
436 return offsetof(struct sk_buff
, cb
) + offsetof(struct skb_procstate
,
437 funcstate
.retransmit_queue
.refs
);
440 int __init
cor_snd_init(void)
442 htable_init(&retransmits
, matches_skb_connid_seqno
,
443 retransmit_entryoffset(), retransmit_refsoffset());
448 MODULE_LICENSE("GPL");