From: Bill Fischofer <bill.fischo...@linaro.org>

Restore the ODP_ASSERTS() that assist application debugging that were
lost in the recent packet reference rework. When using --enable-debug
insert guards to detect duplicate packet frees as well as attempts to
modify known shared data sections of packet references.

Signed-off-by: Bill Fischofer <bill.fischo...@linaro.org>
---
/** Email created from pull request 180 (Bill-Fischofer-Linaro:pkt-debug)
 ** https://github.com/Linaro/odp/pull/180
 ** Patch: https://github.com/Linaro/odp/pull/180.patch
 ** Base sha: f5120355753ae3d69f81010cb9131abffdfb03fc
 ** Merge commit sha: 998cf29c03c5a09555111d05446b15191cab2877
 **/
 platform/linux-generic/odp_packet.c | 35 +++++++++++++++++++++++++++++++++++
 1 file changed, 35 insertions(+)

diff --git a/platform/linux-generic/odp_packet.c 
b/platform/linux-generic/odp_packet.c
index 94aa01deb..89bae3625 100644
--- a/platform/linux-generic/odp_packet.c
+++ b/platform/linux-generic/odp_packet.c
@@ -352,6 +352,16 @@ static inline void link_segments(odp_packet_hdr_t 
*pkt_hdr[], int num)
                        hdr->buf_hdr.seg[i].hdr  = buf_hdr;
                        hdr->buf_hdr.seg[i].data = buf_hdr->base_data;
                        hdr->buf_hdr.seg[i].len  = seg_len;
+
+                       /* init_segments() handles first seg ref_cnt init */
+                       if (ODP_DEBUG == 1 && cur > 0) {
+                               uint32_t prev_ref =
+                                       odp_atomic_fetch_inc_u32(
+                                               &pkt_hdr[cur]->buf_hdr.ref_cnt);
+
+                               ODP_ASSERT(prev_ref == 0);
+                       }
+
                        cur++;
 
                        if (cur == num) {
@@ -381,6 +391,13 @@ static inline void init_segments(odp_packet_hdr_t 
*pkt_hdr[], int num)
        hdr->buf_hdr.seg[0].data = hdr->buf_hdr.base_data;
        hdr->buf_hdr.seg[0].len  = seg_len;
 
+       if (ODP_DEBUG == 1) {
+               uint32_t prev_ref =
+                       odp_atomic_fetch_inc_u32(&hdr->buf_hdr.ref_cnt);
+
+               ODP_ASSERT(prev_ref == 0);
+       }
+
        if (!CONFIG_PACKET_SEG_DISABLED) {
                hdr->buf_hdr.segcount = num;
                hdr->buf_hdr.num_seg  = 1;
@@ -846,6 +863,8 @@ void odp_packet_free(odp_packet_t pkt)
        odp_packet_hdr_t *pkt_hdr = packet_hdr(pkt);
        int num_seg = pkt_hdr->buf_hdr.segcount;
 
+       ODP_ASSERT(buffer_ref(&pkt_hdr->buf_hdr) > 0);
+
        if (odp_likely(CONFIG_PACKET_SEG_DISABLED || num_seg == 1)) {
                odp_buffer_hdr_t *buf_hdr[2];
                int num = 1;
@@ -875,6 +894,8 @@ void odp_packet_free_multi(const odp_packet_t pkt[], int 
num)
                odp_packet_hdr_t *pkt_hdr = packet_hdr(pkt[i]);
                int num_seg = pkt_hdr->buf_hdr.segcount;
 
+               ODP_ASSERT(buffer_ref(&pkt_hdr->buf_hdr) > 0);
+
                if (odp_unlikely(num_seg > 1)) {
                        free_all_segments(pkt_hdr, num_seg);
                        num_freed++;
@@ -1055,6 +1076,8 @@ void *odp_packet_push_tail(odp_packet_t pkt, uint32_t len)
        if (len > pkt_hdr->tailroom)
                return NULL;
 
+       ODP_ASSERT(odp_packet_has_ref(pkt) == 0);
+
        old_tail = packet_tail(pkt_hdr);
        push_tail(pkt_hdr, len);
 
@@ -1070,6 +1093,8 @@ int odp_packet_extend_tail(odp_packet_t *pkt, uint32_t 
len,
        uint32_t tail_off  = frame_len;
        int ret = 0;
 
+       ODP_ASSERT(odp_packet_has_ref(*pkt) == 0);
+
        if (len > tailroom) {
                pool_t *pool = pkt_hdr->buf_hdr.pool_ptr;
                int num;
@@ -1102,6 +1127,8 @@ void *odp_packet_pull_tail(odp_packet_t pkt, uint32_t len)
        odp_packet_hdr_t *pkt_hdr = packet_hdr(pkt);
        seg_entry_t *last_seg     = seg_entry_last(pkt_hdr);
 
+       ODP_ASSERT(odp_packet_has_ref(pkt) == 0);
+
        if (len > last_seg->len)
                return NULL;
 
@@ -1121,6 +1148,8 @@ int odp_packet_trunc_tail(odp_packet_t *pkt, uint32_t len,
        if (len > pkt_hdr->frame_len)
                return -1;
 
+       ODP_ASSERT(odp_packet_has_ref(*pkt) == 0);
+
        last     = packet_last_seg(pkt_hdr);
        last_seg = seg_entry_last(pkt_hdr);
        seg_len  = last_seg->len;
@@ -1384,6 +1413,8 @@ int odp_packet_align(odp_packet_t *pkt, uint32_t offset, 
uint32_t len,
        if (align > ODP_CACHE_LINE_SIZE)
                return -1;
 
+       ODP_ASSERT(odp_packet_has_ref(*pkt) == 0);
+
        if (seglen >= len) {
                misalign = align <= 1 ? 0 :
                        ROUNDUP_ALIGN(uaddr, align) - uaddr;
@@ -1421,6 +1452,8 @@ int odp_packet_concat(odp_packet_t *dst, odp_packet_t src)
        uint32_t dst_len = dst_hdr->frame_len;
        uint32_t src_len = src_hdr->frame_len;
 
+       ODP_ASSERT(odp_packet_has_ref(*dst) == 0);
+
        /* Do a copy if packets are from different pools. */
        if (odp_unlikely(dst_pool != src_pool)) {
                if (odp_packet_extend_tail(dst, src_len, NULL, NULL) >= 0) {
@@ -1451,6 +1484,8 @@ int odp_packet_split(odp_packet_t *pkt, uint32_t len, 
odp_packet_t *tail)
        if (len >= pktlen || tail == NULL)
                return -1;
 
+       ODP_ASSERT(odp_packet_has_ref(*pkt) == 0);
+
        *tail = odp_packet_copy_part(*pkt, len, pktlen - len,
                                     odp_packet_pool(*pkt));
 

Reply via email to