pgsql: Fix race condition in pg_ctl reading postmaster.pid.

From: Heikki Linnakangas <heikki(dot)linnakangas(at)iki(dot)fi>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Fix race condition in pg_ctl reading postmaster.pid.
Date: 2012-10-15 07:59:54
Message-ID: [email protected]
Views: Whole Thread | Raw Message | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Fix race condition in pg_ctl reading postmaster.pid.

If postmaster changed postmaster.pid while pg_ctl was reading it, pg_ctl
could overrun the buffer it allocated for the file. Fix by reading the
whole file to memory with one read() call.

initdb contains an identical copy of the readfile() function, but the files
that initdb reads are static, not modified concurrently. Nevertheless, add
a simple bounds-check there, if only to silence static analysis tools.

Per report from Dave Vitek. Backpatch to all supported branches.

Branch
------
REL9_0_STABLE

Details
-------
http://git.postgresql.org/pg/commitdiff/1c95b5eea6bec742d5d6ee097c55690712dd3be6

Modified Files
--------------
src/bin/initdb/initdb.c | 9 +++--
src/bin/pg_ctl/pg_ctl.c | 88 +++++++++++++++++++++++++++++++----------------
2 files changed, 63 insertions(+), 34 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Heikki Linnakangas 2012-10-15 08:04:07 pgsql: Remove comment that is no longer true.
Previous Message Tom Lane 2012-10-15 03:00:21 pgsql: Split up process latch initialization for more-fail-soft behavio