<div dir="ltr">Heya,<div><br></div><div style>We're currently using jemalloc 2.2.5 statically linked into a private fork of Varnish with a very high rate of malloc/calloc/free, and we're seeing segfaults on a somewhat frequent basis. (one a day on a group of 6 hosts.)</div>
<div style><br></div><div style>We had the same segfaults with 2.2.3, and upgrading to 2.2.5 seems not to have helped.</div><div style><br></div><div style>(Also, we tried upgrading to 3.3.1 and things just got worse, tried enabling debugging which made it even more worse. Under time pressure, we dropped down to 2.2.5)</div>
<div style><br></div><div style>I should mention that I backported the mmap strategy from 3.3.1 into 2.2.5, to prevent VM fragmentation, which was causing us to run into vm.max_map_count.</div><div style><br></div><div style>
So, to the meat of the problem! (We saw these in both 2.2.3 without the mmap strategy backported, and 2.2.5 with mmap strategy backported.) </div><div style><br></div><div style>Unfortunately, we don't have core files (we're running with 153G resident, and 4075G virtual process size on one of the hosts that I'm looking at right now) so the internal Varnish (libgcc based) backtrace is all we have:</div>
<div style><br></div><div style><div style="font-size:13px"><font face="courier new, monospace"><b>0x483894</b>: <span class="" style="background-color:rgb(255,255,204)">arena_tcache_fill_small</span>+1a4<br></font></div>
<div style="font-size:13px"><font face="courier new, monospace">0x4916b9: tcache_alloc_small_hard+19</font></div><div style="font-size:13px"><font face="courier new, monospace">0x4841bf: arena_malloc+1bf</font></div><div style="font-size:13px">
<font face="courier new, monospace">0x47b498: calloc+218</font></div><div><br></div><div style>Looking that up:</div><div style><br></div><div style><div><div><font face="courier new, monospace"># addr2line -e /usr/sbin/varnishd -i 0x483894</font></div>
<div><font face="courier new, monospace">/varnish-cache/lib/libjemalloc/include/jemalloc/internal/bitmap.h:101</font></div><div><font face="courier new, monospace">/varnish-cache/lib/libjemalloc/include/jemalloc/internal/bitmap.h:140</font></div>
<div><font face="courier new, monospace">/varnish-cache/lib/libjemalloc/src/arena.c:264</font></div><div><font face="courier new, monospace">/varnish-cache/lib/libjemalloc/src/arena.c:1395</font></div></div><div><br></div>
<div style>Which looks like:</div><div style><br></div><div style><div><font face="courier new, monospace"><span class="" style="white-space:pre">97        </span>goff = bit >> LG_BITMAP_GROUP_NBITS;</font></div><div><font face="courier new, monospace"><span class="" style="white-space:pre">98      </span>gp = &bitmap[goff];</font></div>
<div><font face="courier new, monospace"><span class="" style="white-space:pre">99      </span>g = *gp;</font></div><div><font face="courier new, monospace"><span class="" style="white-space:pre">100       </span>assert(g & (1LU << (bit & BITMAP_GROUP_NBITS_MASK)));</font></div>
<div><font face="courier new, monospace"><span class="" style="white-space:pre"><b>101</b>  </span>g ^= 1LU << (bit & BITMAP_GROUP_NBITS_MASK);</font></div><div><font face="courier new, monospace"><span class="" style="white-space:pre">102 </span>*gp = g;</font></div>
<div><br></div><div style>Which makes no sense at first, since there's no deref being done there, but a disassembly (thanks Devon) shows:</div><div style><br></div></div></div><div style><div><font face="courier new, monospace">  483883:       48 c1 ef 06             shr    $0x6,%rdi</font></div>
<div><font face="courier new, monospace">  483887:       83 e1 3f                and    $0x3f,%ecx</font></div><div><font face="courier new, monospace">  48388a:       4c 8d 04 fa             lea    (%rdx,%rdi,8),%r8</font></div>
<div><font face="courier new, monospace">  48388e:       49 d3 e1                shl    %cl,%r9</font></div><div><font face="courier new, monospace">  483891:       4c 89 c9                mov    %r9,%rcx</font></div><div>
<font face="courier new, monospace">  <b>483894</b>:       49 33 08                xor    (%r8),%rcx</font></div><div><br></div><div style>The optimizer got rid of g and just does the xor straight on *gp. So gp is an illegal address. According to our segfault handler, it's NULL.</div>
<div style><br></div><div style>For gp to be NULL, both bitmap and goff need to be NULL. And bitmap being NULL is somewhat impossible due to:</div><div style><br></div><div style><div><font face="courier new, monospace"><span class="" style="white-space:pre">               </span>if ((run = bin->runcur) != NULL && run->nfree > 0)</font></div>
<div><font face="courier new, monospace"><span class="" style="white-space:pre">                        </span>ptr = arena_run_reg_alloc(run, &arena_bin_info[binind]);</font></div><div><br></div></div><div style>bitmap is an offset to run, so both the offset and the run need to be NULL (or perfectly matched to cancel eachother out, but also unlikely.)</div>
<div style><br></div><div style>bin->runcur and bin->bitmap_offset both being NULL seems _very_ unlikely.</div><div style><br></div><div style>And that's about as far as we've gotten.</div><div style><br></div>
<div style>Help?</div><div style><br></div><div style>      Doc & Devon</div><div style><br></div><div style><br></div></div></div></div>