The UNIX and Linux Forums  
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.

Go Back   The UNIX and Linux Forums > Top Forums > UNIX for Dummies Questions & Answers
.
google unix.com



UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !!

More UNIX and Linux Forum Topics You Might Find Helpful
Thread Thread Starter Forum Replies Last Post
close open files before remove xramm SUN Solaris 9 09-14-2007 08:23 AM
daemon process suresh_rupineni Linux 1 08-21-2006 02:14 AM
what is a daemon process Kanu77 High Level Programming 6 03-08-2002 10:47 AM
Daemon process s_chordia High Level Programming 2 01-17-2002 02:09 PM
File status - open/close ?? Pal UNIX for Dummies Questions & Answers 3 09-26-2001 03:54 PM

Closed Thread
English Japanese Spanish French German Portuguese Italian Dutch Swedish Russian Norwegian Hungarian Hebrew Danish Powered by Powered by Google
 
LinkBack Thread Tools Search this Thread Rate Thread Display Modes
  #1 (permalink)  
Old 10-24-2002
kunalashar kunalashar is offline
Registered User
  
 

Join Date: Oct 2002
Posts: 1
Should a UNIX daemon process close open fds?

I have a UNIX daemon process that's been started by a parent process, an application server.
The behavior of this daemon process is to inherit and use the app
server's file descriptors (ports/sockets).
When I shutdown the app server, the daemon continues to run, because there may be other applications that want to use it.
However, the app server won't restart, because the daemon process is holding its parents' ports.
There is a debate as to whether its the app server's or the daemon's responsibility to close the file descriptors (say, using fcntl(...)).
Which process has the responsibility of closing the open file
descriptors?
Richard Steven, in his Advanced Unix programming book says that the daemon should do it, but the people who created the daemon say the Posix way is better.
Any takers?
Thanks in advance,
Kunal
  #2 (permalink)  
Old 10-24-2002
Perderabo's Avatar
Perderabo Perderabo is offline Forum Staff  
Unix Daemon
  
 

Join Date: Aug 2001
Location: Ashburn, Virginia
Posts: 9,111
I'm not sure why you think fcntl() fits into this. To close an fd you use close().

It is absolutely required that a daemon close fd's 0, 1, and 2. After that, as the lawyers say, "reasonable minds may disagree". In the days when we were limited to 64 fd's, it was reasonable to simply loop invoking close() on them all. If I was to write a daemon, yes I guess that I would use get getconf(_SC_OPEN_MAX) to get the max possible fd and loop invoking close() on every last one. This could be thousands of close() calls that aren't needed, but close() fails very quickly when invoked against a non-open fd.

If they are closing stdin, stdout, and stderr, I would have to say that their stance is reasonable. But I do believe they would have a difficult time producing any language in posix that supports them. The posix standard is on-line and we have a link to it on our home page. Exactly which section do they cite?

It should be very easy to solve your problem though. Can't you change the app server to not leave extra fd's open?

Or if this daemon is called, say, daemonx, just write a program that closes all fd's and then exec()'s daemonx. Call your program pre_daemonx. Have your app server call pre_daemonx.

Is the name "daemonx" hard-coded into an unchangable app server? No problem. Rename "daemonx" to "real.daemonx" and call your program "daemonx".

Whichever path you take here, fixing this should be a 10 minute problem.
Sponsored Links
Closed Thread

Bookmarks

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes Rate This Thread
Rate This Thread:

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

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On




All times are GMT -4. The time now is 06:44 PM.


Powered by: vBulletin, Copyright ©2000 - 2006, Jelsoft Enterprises Limited. Language Translations Powered by .
vBCredits v1.4 Copyright ©2007 - 2008, PixelFX Studios
The UNIX and Linux Forums Content Copyright ©1993-2009. All Rights Reserved.Ad Management by RedTyger

Content Relevant URLs by vBSEO 3.2.0