vppinfra: set explicit found in search_free_list loop 54/26954/2
authorSteven Luong <sluong@cisco.com>
Fri, 8 May 2020 11:50:05 +0000 (04:50 -0700)
committerDave Barach <openvpp@barachs.net>
Fri, 8 May 2020 17:56:51 +0000 (17:56 +0000)
commita5436ae2516edc955f26c6aa4103f5946ee8653c
treee56c2986fb04f7b325df33f1f51b3671e1e56b82
parent13bcb92e64f8c115c6182715723cd8773c7eacb6
vppinfra: set explicit found in search_free_list loop

While https://gerrit.fd.io/r/c/vpp/+/26948 fixed avoid using -1 to
index into h->free_lists[b][l] by changing the loop counter, the
check for the value of the loop counter (l < 0) cannot be trusted
to decide whether we've found a large enough object within the bin
or not. When the loop is terminated, the value of the variable l
could be ambiguous if it equals to 0 and it is never less than 0,
ie, when we bail out of the loop, we don't know if it was due to the
breaking out of the condition in
  if ((s = f_size - size) >= 0)
     break;
or
  while (l > 0);

The fix is to explicitly set a variable when we have found a large enough
object inside the loop to be used to test whether the loop was prematurely
terminated (found == 1) or the loop just ran exhausted (found == 0)

Type: fix

Signed-off-by: Steven Luong <sluong@cisco.com>
Change-Id: I0161813fbd44dcba8982a767eac2e0930e9d77e3
src/vppinfra/heap.c