]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
tipc: message reassembly using fragment chain
authorErik Hugne <erik.hugne@ericsson.com>
Wed, 6 Nov 2013 08:28:06 +0000 (09:28 +0100)
committerDavid S. Miller <davem@davemloft.net>
Thu, 7 Nov 2013 23:30:11 +0000 (18:30 -0500)
When the first fragment of a long data data message is received on a link, a
reassembly buffer large enough to hold the data from this and all subsequent
fragments of the message is allocated. The payload of each new fragment is
copied into this buffer upon arrival. When the last fragment is received, the
reassembled message is delivered upwards to the port/socket layer.

Not only is this an inefficient approach, but it may also cause bursts of
reassembly failures in low memory situations. since we may fail to allocate
the necessary large buffer in the first place. Furthermore, after 100 subsequent
such failures the link will be reset, something that in reality aggravates the
situation.

To remedy this problem, this patch introduces a different approach. Instead of
allocating a big reassembly buffer, we now append the arriving fragments
to a reassembly chain on the link, and deliver the whole chain up to the
socket layer once the last fragment has been received. This is safe because
the retransmission layer of a TIPC link always delivers packets in strict
uninterrupted order, to the reassembly layer as to all other upper layers.
Hence there can never be more than one fragment chain pending reassembly at
any given time in a link, and we can trust (but still verify) that the
fragments will be chained up in the correct order.

Signed-off-by: Erik Hugne <erik.hugne@ericsson.com>
Reviewed-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Signed-off-by: Jon Maloy <jon.maloy@ericsson.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/tipc/bcast.c
net/tipc/link.c
net/tipc/link.h
net/tipc/msg.h
net/tipc/node.c
net/tipc/node.h

index 766a6eb4a88f798965845319693fa68d8890aed0..0d4402587fdf9fec2c1768cfdff6356e24dbb4fd 100644 (file)
@@ -480,15 +480,19 @@ receive:
                        tipc_node_unlock(node);
                        tipc_link_recv_bundle(buf);
                } else if (msg_user(msg) == MSG_FRAGMENTER) {
-                       int ret = tipc_link_recv_fragment(&node->bclink.defragm,
-                                                     &buf, &msg);
-                       if (ret < 0)
+                       int ret;
+                       ret = tipc_link_recv_fragment(&node->bclink.reasm_head,
+                                                     &node->bclink.reasm_tail,
+                                                     &buf);
+                       if (ret == LINK_REASM_ERROR)
                                goto unlock;
                        spin_lock_bh(&bc_lock);
                        bclink_accept_pkt(node, seqno);
                        bcl->stats.recv_fragments++;
-                       if (ret > 0) {
+                       if (ret == LINK_REASM_COMPLETE) {
                                bcl->stats.recv_fragmented++;
+                               /* Point msg to inner header */
+                               msg = buf_msg(buf);
                                spin_unlock_bh(&bc_lock);
                                goto receive;
                        }
index ada8cadf5af8baf4c404f7f54b0d40b4fd6ceb6b..a63646e6c2cf05eb620e914577ae299fa59cd436 100644 (file)
@@ -404,15 +404,9 @@ static void link_release_outqueue(struct tipc_link *l_ptr)
  */
 void tipc_link_reset_fragments(struct tipc_link *l_ptr)
 {
-       struct sk_buff *buf = l_ptr->defragm_buf;
-       struct sk_buff *next;
-
-       while (buf) {
-               next = buf->next;
-               kfree_skb(buf);
-               buf = next;
-       }
-       l_ptr->defragm_buf = NULL;
+       kfree_skb(l_ptr->reasm_head);
+       l_ptr->reasm_head = NULL;
+       l_ptr->reasm_tail = NULL;
 }
 
 /**
@@ -1649,13 +1643,15 @@ deliver:
                        continue;
                case MSG_FRAGMENTER:
                        l_ptr->stats.recv_fragments++;
-                       ret = tipc_link_recv_fragment(&l_ptr->defragm_buf,
-                                                     &buf, &msg);
-                       if (ret == 1) {
+                       ret = tipc_link_recv_fragment(&l_ptr->reasm_head,
+                                                     &l_ptr->reasm_tail,
+                                                     &buf);
+                       if (ret == LINK_REASM_COMPLETE) {
                                l_ptr->stats.recv_fragmented++;
+                               msg = buf_msg(buf);
                                goto deliver;
                        }
-                       if (ret == -1)
+                       if (ret == LINK_REASM_ERROR)
                                l_ptr->next_in_no--;
                        tipc_node_unlock(n_ptr);
                        continue;
@@ -2342,115 +2338,48 @@ static int link_send_long_buf(struct tipc_link *l_ptr, struct sk_buff *buf)
        return dsz;
 }
 
-/*
- * A pending message being re-assembled must store certain values
- * to handle subsequent fragments correctly. The following functions
- * help storing these values in unused, available fields in the
- * pending message. This makes dynamic memory allocation unnecessary.
- */
-static void set_long_msg_seqno(struct sk_buff *buf, u32 seqno)
-{
-       msg_set_seqno(buf_msg(buf), seqno);
-}
-
-static u32 get_fragm_size(struct sk_buff *buf)
-{
-       return msg_ack(buf_msg(buf));
-}
-
-static void set_fragm_size(struct sk_buff *buf, u32 sz)
-{
-       msg_set_ack(buf_msg(buf), sz);
-}
-
-static u32 get_expected_frags(struct sk_buff *buf)
-{
-       return msg_bcast_ack(buf_msg(buf));
-}
-
-static void set_expected_frags(struct sk_buff *buf, u32 exp)
-{
-       msg_set_bcast_ack(buf_msg(buf), exp);
-}
-
 /*
  * tipc_link_recv_fragment(): Called with node lock on. Returns
  * the reassembled buffer if message is complete.
  */
-int tipc_link_recv_fragment(struct sk_buff **pending, struct sk_buff **fb,
-                           struct tipc_msg **m)
-{
-       struct sk_buff *prev = NULL;
-       struct sk_buff *fbuf = *fb;
-       struct tipc_msg *fragm = buf_msg(fbuf);
-       struct sk_buff *pbuf = *pending;
-       u32 long_msg_seq_no = msg_long_msgno(fragm);
-
-       *fb = NULL;
-
-       /* Is there an incomplete message waiting for this fragment? */
-       while (pbuf && ((buf_seqno(pbuf) != long_msg_seq_no) ||
-                       (msg_orignode(fragm) != msg_orignode(buf_msg(pbuf))))) {
-               prev = pbuf;
-               pbuf = pbuf->next;
-       }
-
-       if (!pbuf && (msg_type(fragm) == FIRST_FRAGMENT)) {
-               struct tipc_msg *imsg = (struct tipc_msg *)msg_data(fragm);
-               u32 msg_sz = msg_size(imsg);
-               u32 fragm_sz = msg_data_sz(fragm);
-               u32 exp_fragm_cnt;
-               u32 max =  TIPC_MAX_USER_MSG_SIZE + NAMED_H_SIZE;
-
-               if (msg_type(imsg) == TIPC_MCAST_MSG)
-                       max = TIPC_MAX_USER_MSG_SIZE + MCAST_H_SIZE;
-               if (fragm_sz == 0 || msg_size(imsg) > max) {
-                       kfree_skb(fbuf);
-                       return 0;
-               }
-               exp_fragm_cnt = msg_sz / fragm_sz + !!(msg_sz % fragm_sz);
-               pbuf = tipc_buf_acquire(msg_size(imsg));
-               if (pbuf != NULL) {
-                       pbuf->next = *pending;
-                       *pending = pbuf;
-                       skb_copy_to_linear_data(pbuf, imsg,
-                                               msg_data_sz(fragm));
-                       /*  Prepare buffer for subsequent fragments. */
-                       set_long_msg_seqno(pbuf, long_msg_seq_no);
-                       set_fragm_size(pbuf, fragm_sz);
-                       set_expected_frags(pbuf, exp_fragm_cnt - 1);
-               } else {
-                       pr_debug("Link unable to reassemble fragmented message\n");
-                       kfree_skb(fbuf);
-                       return -1;
-               }
-               kfree_skb(fbuf);
-               return 0;
-       } else if (pbuf && (msg_type(fragm) != FIRST_FRAGMENT)) {
-               u32 dsz = msg_data_sz(fragm);
-               u32 fsz = get_fragm_size(pbuf);
-               u32 crs = ((msg_fragm_no(fragm) - 1) * fsz);
-               u32 exp_frags = get_expected_frags(pbuf) - 1;
-               skb_copy_to_linear_data_offset(pbuf, crs,
-                                              msg_data(fragm), dsz);
-               kfree_skb(fbuf);
-
-               /* Is message complete? */
-               if (exp_frags == 0) {
-                       if (prev)
-                               prev->next = pbuf->next;
-                       else
-                               *pending = pbuf->next;
-                       msg_reset_reroute_cnt(buf_msg(pbuf));
-                       *fb = pbuf;
-                       *m = buf_msg(pbuf);
-                       return 1;
-               }
-               set_expected_frags(pbuf, exp_frags);
+int tipc_link_recv_fragment(struct sk_buff **head, struct sk_buff **tail,
+                           struct sk_buff **fbuf)
+{
+       struct sk_buff *frag = *fbuf;
+       struct tipc_msg *msg = buf_msg(frag);
+       u32 fragid = msg_type(msg);
+       bool headstolen;
+       int delta;
+
+       skb_pull(frag, msg_hdr_sz(msg));
+       if (fragid == FIRST_FRAGMENT) {
+               if (*head || skb_unclone(frag, GFP_ATOMIC))
+                       goto out_free;
+               *head = frag;
+               skb_frag_list_init(*head);
                return 0;
+       } else if (skb_try_coalesce(*head, frag, &headstolen, &delta)) {
+               kfree_skb_partial(frag, headstolen);
+       } else {
+               if (!*head)
+                       goto out_free;
+               if (!skb_has_frag_list(*head))
+                       skb_shinfo(*head)->frag_list = frag;
+               else
+                       (*tail)->next = frag;
+               *tail = frag;
+               (*head)->truesize += frag->truesize;
+       }
+       if (fragid == LAST_FRAGMENT) {
+               *fbuf = *head;
+               *tail = *head = NULL;
+               return LINK_REASM_COMPLETE;
        }
-       kfree_skb(fbuf);
        return 0;
+out_free:
+       pr_warn_ratelimited("Link unable to reassemble fragmented message\n");
+       kfree_skb(*fbuf);
+       return LINK_REASM_ERROR;
 }
 
 static void link_set_supervision_props(struct tipc_link *l_ptr, u32 tolerance)
index 55cf8554a08bd974000a67a116583a86e39bda0f..8a6c1026644db438a1a83b7c2ce5679ac9e5a888 100644 (file)
 #include "msg.h"
 #include "node.h"
 
+/*
+ * Link reassembly status codes
+ */
+#define LINK_REASM_ERROR       -1
+#define LINK_REASM_COMPLETE    1
+
 /*
  * Out-of-range value for link sequence numbers
  */
@@ -134,7 +140,8 @@ struct tipc_stats {
  * @next_out: ptr to first unsent outbound message in queue
  * @waiting_ports: linked list of ports waiting for link congestion to abate
  * @long_msg_seq_no: next identifier to use for outbound fragmented messages
- * @defragm_buf: list of partially reassembled inbound message fragments
+ * @reasm_head: list head of partially reassembled inbound message fragments
+ * @reasm_tail: last fragment received
  * @stats: collects statistics regarding link activity
  */
 struct tipc_link {
@@ -196,9 +203,10 @@ struct tipc_link {
        struct sk_buff *next_out;
        struct list_head waiting_ports;
 
-       /* Fragmentation/defragmentation */
+       /* Fragmentation/reassembly */
        u32 long_msg_seq_no;
-       struct sk_buff *defragm_buf;
+       struct sk_buff *reasm_head;
+       struct sk_buff *reasm_tail;
 
        /* Statistics */
        struct tipc_stats stats;
@@ -229,9 +237,9 @@ int tipc_link_send_sections_fast(struct tipc_port *sender,
                                 struct iovec const *msg_sect,
                                 unsigned int len, u32 destnode);
 void tipc_link_recv_bundle(struct sk_buff *buf);
-int  tipc_link_recv_fragment(struct sk_buff **pending,
-                            struct sk_buff **fb,
-                            struct tipc_msg **msg);
+int  tipc_link_recv_fragment(struct sk_buff **reasm_head,
+                            struct sk_buff **reasm_tail,
+                            struct sk_buff **fbuf);
 void tipc_link_send_proto_msg(struct tipc_link *l_ptr, u32 msg_typ, int prob,
                              u32 gap, u32 tolerance, u32 priority,
                              u32 acked_mtu);
index 559b73a9bf352d9bb7b058a366b81341eae57f15..76d1269b944361076855876219d6e59b16c3b23e 100644 (file)
@@ -554,12 +554,6 @@ static inline void msg_set_last_bcast(struct tipc_msg *m, u32 n)
        msg_set_bits(m, 4, 16, 0xffff, n);
 }
 
-
-static inline u32 msg_fragm_no(struct tipc_msg *m)
-{
-       return msg_bits(m, 4, 16, 0xffff);
-}
-
 static inline void msg_set_fragm_no(struct tipc_msg *m, u32 n)
 {
        msg_set_bits(m, 4, 16, 0xffff, n);
@@ -576,12 +570,6 @@ static inline void msg_set_next_sent(struct tipc_msg *m, u32 n)
        msg_set_bits(m, 4, 0, 0xffff, n);
 }
 
-
-static inline u32 msg_long_msgno(struct tipc_msg *m)
-{
-       return msg_bits(m, 4, 0, 0xffff);
-}
-
 static inline void msg_set_long_msgno(struct tipc_msg *m, u32 n)
 {
        msg_set_bits(m, 4, 0, 0xffff, n);
index 6e6c434872e82534e0d48f6dceb0c212f1541896..25100c0a6fe84757ee8c0312a86e643d05d6276d 100644 (file)
@@ -298,9 +298,10 @@ static void node_lost_contact(struct tipc_node *n_ptr)
                }
                n_ptr->bclink.deferred_size = 0;
 
-               if (n_ptr->bclink.defragm) {
-                       kfree_skb(n_ptr->bclink.defragm);
-                       n_ptr->bclink.defragm = NULL;
+               if (n_ptr->bclink.reasm_head) {
+                       kfree_skb(n_ptr->bclink.reasm_head);
+                       n_ptr->bclink.reasm_head = NULL;
+                       n_ptr->bclink.reasm_tail = NULL;
                }
 
                tipc_bclink_remove_node(n_ptr->addr);
index 3c189b35b102a378914b59236f555438f7c198d4..e5e96c04e1676a91af811c8c270ce42296b27636 100644 (file)
@@ -74,7 +74,8 @@
  *    @deferred_size: number of OOS b'cast messages in deferred queue
  *    @deferred_head: oldest OOS b'cast message received from node
  *    @deferred_tail: newest OOS b'cast message received from node
- *    @defragm: list of partially reassembled b'cast message fragments from node
+ *    @reasm_head: broadcast reassembly queue head from node
+ *    @reasm_tail: last broadcast fragment received from node
  *    @recv_permitted: true if node is allowed to receive b'cast messages
  */
 struct tipc_node {
@@ -98,7 +99,8 @@ struct tipc_node {
                u32 deferred_size;
                struct sk_buff *deferred_head;
                struct sk_buff *deferred_tail;
-               struct sk_buff *defragm;
+               struct sk_buff *reasm_head;
+               struct sk_buff *reasm_tail;
                bool recv_permitted;
        } bclink;
 };