Re: Fix infinite loop from setting scram_iterations to INT_MAX

From: Richard Guo <guofenglinux(at)gmail(dot)com>
To: Kevin K Biju <kevinkbiju(at)gmail(dot)com>
Cc: pgsql-hackers(at)lists(dot)postgresql(dot)org
Subject: Re: Fix infinite loop from setting scram_iterations to INT_MAX
Date: 2025-03-24 00:50:36
Message-ID: CAMbWs4-=xQ-FjZP7D-Ly88cb4QDBOsrrk_xK2RKufZ7hkS_S0g@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

On Sun, Mar 23, 2025 at 10:41 PM Kevin K Biju <kevinkbiju(at)gmail(dot)com> wrote:
> int i;
> ...
> for (i = 2; i <= iterations; i++)
> {
> ...
> }
>
> For iterations = INT_MAX, the loop will never terminate since the condition is <= and adding 1 to INT_MAX will lead to i wrapping around to INT_MIN.
>
> I've fixed this by modifying the loop condition to be i < iterations. I've attached a patch with the fix. I considered adding a test as well, but since generating a password with a high number of iterations is very time-consuming, I'm not sure if that would be practical.

Nice catch. The fix looks good to me. It seems to me that it's fine
to go without a test case, since the fix is quite straightforward.

Thanks
Richard

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Michael Paquier 2025-03-24 00:54:50 Re: Fix infinite loop from setting scram_iterations to INT_MAX
Previous Message Noah Misch 2025-03-24 00:29:39 Re: AIO v2.5