We should check alignment *after* determining the pointer points into
our pool, not before. Otherwise might might end up checking alignment of
the pointer relative to our base, even though it is taken relative to
some other base.
Follow-up for:
a2b052b29f8bc141e94a4af95d1653a38a57eaeb
See: https://github.com/systemd/systemd/pull/26393#issuecomment-
1442295012
return false;
off = (uint8_t*) ptr - (uint8_t*) a;
- assert(off % mp->tile_size == 0);
+ if (off >= mp->tile_size * p->n_tiles)
+ return false;
- return off < mp->tile_size * p->n_tiles;
+ assert(off % mp->tile_size == 0);
+ return true;
}
static bool pool_is_unused(struct mempool *mp, struct pool *p) {