dbTalk Databases Forums  

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

mailing.database.pgsql-bugs mailing.database.pgsql-bugs


Discuss [BUGS] BUG #1958: Postmaster doesn't close open file handles on startup in the mailing.database.pgsql-bugs forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
Menno Smits
 
Posts: n/a

Default [BUGS] BUG #1958: Postmaster doesn't close open file handles on startup - 10-13-2005 , 09:33 AM







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

---------------------------(end of broadcast)---------------------------
TIP 9: In versions below 8.0, the planner will ignore your desire to
choose an index scan if your joining column's datatypes do not
match

Reply With Quote
  #2  
Old   
Tom Lane
 
Posts: n/a

Default Re: [BUGS] BUG #1958: Postmaster doesn't close open file handles on startup - 10-13-2005 , 09:59 AM






"Menno Smits" <menno (AT) netboxblue (DOT) com> writes:
Quote:
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.
I think this is a bug in whatever you are using to launch the
postmaster, not a bug in the postmaster.

regards, tom lane

---------------------------(end of broadcast)---------------------------
TIP 3: Have you checked our extensive FAQ?

http://www.postgresql.org/docs/faq


Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.3
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.