]> git.baikalelectronics.ru Git - kernel.git/commit
tipc: fix bug in broadcast retransmit code
authorJon Maloy <jon.maloy@ericsson.com>
Fri, 9 Jan 2015 07:26:58 +0000 (15:26 +0800)
committerDavid S. Miller <davem@davemloft.net>
Mon, 12 Jan 2015 21:24:31 +0000 (16:24 -0500)
commit62346475da682a86c33c250892169774e7b6dbae
tree340f4d0b8a03c9c2e55b901858096089f35eccea
parent6943455fdc4a176399add6c32fa1ecb58055f364
tipc: fix bug in broadcast retransmit code

In commit 917934664739cc3a3e7510e5bd7176202c797c51 ("tipc: use generic
SKB list APIs to manage link transmission queue") we replace all list
traversal loops with the macros skb_queue_walk() or
skb_queue_walk_safe(). While the previous loops were based on the
assumption that the list was NULL-terminated, the standard macros
stop when the iterator reaches the list head, which is non-NULL.

In the function bclink_retransmit_pkt() this macro replacement has
lead to a bug. When we receive a BCAST STATE_MSG we unconditionally
call the function bclink_retransmit_pkt(), whether there really is
anything to retransmit or not, assuming that the sequence number
comparisons will lead to the correct behavior. However, if the
transmission queue is empty, or if there are no eligible buffers in
the transmission queue, we will by mistake pass the list head pointer
to the function tipc_link_retransmit(). Since the list head is not a
valid sk_buff, this leads to a crash.

In this commit we fix this by only calling tipc_link_retransmit()
if we actually found eligible buffers in the transmission queue.

Reviewed-by: Ying Xue <ying.xue@windriver.com>
Signed-off-by: Jon Maloy <jon.maloy@ericsson.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/tipc/bcast.c