Hello, On Tue, Jun 25, 2019 at 8:47 AM Davide Caratti <dcara...@redhat.com> wrote: > hello Cong, > > I tested the above patch, but I still see the infinite loop on kernel > 5.2.0-0.rc5.git0.1.fc31.i686 . > > idr_get_next_ul() returns the entry in the radix tree which is greater or > equal to '*nextid' (which has the same value as 'id' in the above hunk). > So, when the radix tree contains one slot with index equal to ULONG_MAX, > whatever can be the value of 'id', the condition in that if() will always > be false (and the function will keep returning non-NULL, hence the > infinite loop). > > I also tried this: > > if (iter.index == id && id == ULONG_MAX) { > return NULL; > } > > it fixes the infinite loop, but it clearly breaks the function semantic > (and anyway, it's not sufficient to fix my test, at least with cls_flower > it still dumps the entry with id 0xffffffff several times). I'm for > fixing the callers of idr_get_next_ul(), and in details:
It now becomes more interesting. On one hand, its callers should not need to worry about details like overflow. On the other hand, in fact it does exactly what its callers tell it to do, the problematic part is actually the incremented id. On 64bit, it is fairly easy, we can just simply know 'long' is longer than 32bit and leverage this to detect overflow, but on 32bit this clearly doesn't work. Let me think about it. Thanks.