BUG #1958: Postmaster doesn't close open file handles on startup

From: "Menno Smits" <menno(at)netboxblue(dot)com>
To: pgsql-bugs(at)postgresql(dot)org
Subject: BUG #1958: Postmaster doesn't close open file handles on startup
Date: 2005-10-13 00:19:58
Message-ID: 20051013001958.E4981F0BF5@svr2.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs


The following bug has been logged online:

Bug reference: 1958
Logged by: Menno Smits
Email address: menno(at)netboxblue(dot)com
PostgreSQL version: 8.0.3
Operating system: Linux (Fedora Core 3)
Description: Postmaster doesn't close open file handles on startup
Details:

The postmaster process doesn't close open file handles/sockets when it
daemonises. This means it inherits all open file handles that the parent
process had. This can lead to strange side effects because postgres will
hold sockets and files that it really shouldn't.

The following short Python script demonstrates the problem. It starts
listening on TCP port 4444 and then restarts postgresql. Run with "python
<script>.py".

Postgresql should be running before the script is run.
-----------------------------------------------------
import os
import socket

# Start listening on TCP port 444
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.bind(('127.0.0.1', 4444))
s.listen(5)

# Restart postgres
os.system('/etc/init.d/postgresql restart')

s.close()
-----------------------------------------------------

After the script is run use the following command to see what sockets
postmaster has:
netstat -tnlp | grep postmaster

The output will be something like:
tcp 0 0 127.0.0.1:5432 0.0.0.0:* LISTEN
5813/postmaster
tcp 0 0 127.0.0.1:4444 0.0.0.0:* LISTEN
5813/postmaster

Port 5432 makes sense but clearly it shouldn't be listening on 4444.

Rerunning the python script will fail because postmaster still has the
socket open:
------------------------------------------------------
Traceback (most recent call last):
File "postgres-bug.py", line 6, in ?
s.bind(('127.0.0.1', 4444))
File "<string>", line 1, in bind
socket.error: (98, 'Address already in use')
------------------------------------------------------

It is considered good UNIX programming practise to close open file handles
when daemonising. See
http://www.enderunix.org/docs/eng/daemon.php

Responses

Browse pgsql-bugs by date

  From Date Subject
Next Message Michael Fuhr 2005-10-13 00:56:51 Re: Problem with COPY in 8.0.3
Previous Message Tom Lane 2005-10-12 23:28:37 Re: Problem with COPY in 8.0.3