mirror of mongrel-development@rubyforge.org (inactive)
 help / color / mirror / Atom feed
From: Luis Lavena <luislavena-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
To: mongrel-development-GrnCvJ7WPxnNLxjTenLetw@public.gmane.org
Subject: Re: [PATCH] always set FD_CLOEXEC on sockets post-accept()
Date: Wed, 15 Jul 2009 20:13:40 -0300	[thread overview]
Message-ID: <71166b3b0907151613k4ebb22c4g253f53282f9860b0@mail.gmail.com> (raw)
In-Reply-To: <b6f68fc60907150931p1a9e061bked46402a2443d1b5-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>

On Wed, Jul 15, 2009 at 1:31 PM, Evan Weaver<evan-72XWLPH10WVXUHR/Jj/Uug@public.gmane.org> wrote:
> Luis, is this one of the commits you already accepted for 1.1.6 and friends?
>

I think is not.

Will review, but everything will be reflected in the history file.

> Evan
>
> On Thu, Jul 9, 2009 at 2:56 AM, Eric Wong<normalperson-rMlxZR9MS24@public.gmane.org> wrote:
>> FD_CLOEXEC is not guaranteed to be inherited by the accept()-ed
>> descriptors even if the listener socket has this set.  This can
>> be a problem with applications that fork+exec long running
>> background processes and our client expects us to close
>> a connection to signal a completed response: the connection
>> would only be closed when the background process closed it
>> (when it exited), not when Mongrel closes the socket.
>>
>> This issue was discovered with a server other than Mongrel but
>> the issue here is applicable to Mongrel as well.
>> ---
>>
>>  This patch was based on the below branch
>>  (against c365ba16d12a14bdf1cc50a26f67dd3b45f5a4d8)
>>
>>  > I used git-svn and added it to
>>  > http://github.com/fauna/mongrel/tree/trunk_from_svn, where it can lie
>>  > unchanged for reference.
>>
>>  P.S.: I know I used to have a commit bit to the Mongrel SVN but I
>>  never really cared for it since I've always preferred the
>>  mailing-patches-around-for-review form of development.  Let me know if
>>  pushing things to git://git.bogomips.org/mongrel.git for you to
>>  pull is preferable in the future.
>>
>>  P.P.S: not sure if it's common around here, but I've long had mutt
>>  setup to pipe messages to "git am" directly from the index or pager
>>  and also diff syntax hilighting in the mutt pager.  It all makes patch
>>  review/testing *much* nicer without having to context switch out of a
>>  terminal/screen.
>>
>>  lib/mongrel.rb |    6 +++++-
>>  1 files changed, 5 insertions(+), 1 deletions(-)
>>
>> diff --git a/lib/mongrel.rb b/lib/mongrel.rb
>> index f09a617..0619abe 100644
>> --- a/lib/mongrel.rb
>> +++ b/lib/mongrel.rb
>> @@ -278,7 +278,11 @@ module Mongrel
>>               if defined?($tcp_cork_opts) and $tcp_cork_opts
>>                 client.setsockopt(*$tcp_cork_opts) rescue nil
>>               end
>> -
>> +
>> +              if defined?(Fcntl::FD_CLOEXEC)
>> +                client.fcntl(Fcntl::F_SETFD, Fcntl::FD_CLOEXEC)
>> +              end
>> +
>>               worker_list = @workers.list
>>
>>               if worker_list.length >= @num_processors
>> --
>> Eric Wong
>> _______________________________________________
>> Mongrel-development mailing list
>> Mongrel-development-GrnCvJ7WPxnNLxjTenLetw@public.gmane.org
>> http://rubyforge.org/mailman/listinfo/mongrel-development
>>
>
>
>
> --
> Evan Weaver
> _______________________________________________
> Mongrel-development mailing list
> Mongrel-development-GrnCvJ7WPxnNLxjTenLetw@public.gmane.org
> http://rubyforge.org/mailman/listinfo/mongrel-development
>



-- 
Luis Lavena
AREA 17
-
Perfection in design is achieved not when there is nothing more to add,
but rather when there is nothing more to take away.
Antoine de Saint-Exupéry

      parent reply	other threads:[~2009-07-15 23:14 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-07-09  9:56 [PATCH] always set FD_CLOEXEC on sockets post-accept() Eric Wong
     [not found] ` <20090709095624.GA2805-yBiyF41qdooeIZ0/mPfg9Q@public.gmane.org>
2009-07-15 16:31   ` Evan Weaver
     [not found]     ` <b6f68fc60907150931p1a9e061bked46402a2443d1b5-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2009-07-15 23:13       ` Luis Lavena [this message]
replies disabled, historical list

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).