From: | Kyotaro Horiguchi <horikyota(dot)ntt(at)gmail(dot)com> |
---|---|
To: | n(dot)shaplov(at)postgrespro(dot)ru, pgsql-bugs(at)lists(dot)postgresql(dot)org |
Subject: | Re: BUG #17962: postgresql 11 hangs on poly_contain with specific data |
Date: | 2023-06-06 05:07:49 |
Message-ID: | 20230606.140749.1678060452808896223.horikyota.ntt@gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-bugs |
At Mon, 05 Jun 2023 11:34:17 +0000, PG Bug reporting form <noreply(at)postgresql(dot)org> wrote in
> While doing fuzzing testing I've found an input data for poly_contain
> operation that hangs postgresql 11 forever (or for a very long time), with
> backend eating 100% of cpu.
The query leads to infinite loop involving
touched_lseg_inside_poly. Thanks for reporting.
> Sorry there is no file attach option in bug report form.
>
> I guess this issue might be known, as it is not reproducible in latter
> versions, but still I guess it is better to report it.
Thanks! I could reproduce the issue here using it. In this case,
on_ps_internal() gives a wrong result for, for example, the following
input.
point pa {x = 0.011698969004501018, y = -9.0711677068731452e-257}
lseg {p1 {x = -0.0036183721265742744, y = 4.2781805177680175e+48},
p2 {x = 2.4676134855730224e-152, y = 7.6266955589918203e+100}}
The point is evidently not on the lseg, but on_ps_internal(point,
lseg) returns true. Underflow in on_ps_internal() is causing this
mishap.
A feasible fix might be to detect infinite recursion. The attached
works for the this specific case well.
regards.
--
Kyotaro Horiguchi
NTT Open Source Software Center
Attachment | Content-Type | Size |
---|---|---|
v0-0001-Mitigate-potential-infinite-recursion-in-lseg_ins.patch | text/x-patch | 3.8 KB |
From | Date | Subject | |
---|---|---|---|
Next Message | Kyotaro Horiguchi | 2023-06-06 05:17:36 | Re: BUG #17962: postgresql 11 hangs on poly_contain with specific data |
Previous Message | Alexander Lakhin | 2023-06-06 03:00:00 | Re: BUG #17959: amcheck fails to find a matching index tuple for an invisible heap tuple |