Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757331AbZIQApk (ORCPT ); Wed, 16 Sep 2009 20:45:40 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1754635AbZIQApi (ORCPT ); Wed, 16 Sep 2009 20:45:38 -0400 Received: from mail-ew0-f227.google.com ([209.85.219.227]:60661 "EHLO mail-ew0-f227.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753544AbZIQAph convert rfc822-to-8bit (ORCPT ); Wed, 16 Sep 2009 20:45:37 -0400 DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type:content-transfer-encoding; b=PUq4s1qXwrmos1RRQV7ak3W6KwBacJNb7neS0s8m1Ngf+K4LaAuDYjD102SYLvs5ai MT/FcU30tH2GEMfOe6v9655XVNa2ga/d0o1Xqp0GN8olMeI9eitEBMqgY7VYYNxGjtfV /+0ZjbcDgDyk0cIFoJ7lMJF1TmYktAgbTTAdc= MIME-Version: 1.0 In-Reply-To: <024701ca372f$81412040$83c360c0$@com> References: <023c01ca3724$9f90fcb0$deb2f610$@com> <024601ca372d$09ad9fb0$1d08df10$@com> <024701ca372f$81412040$83c360c0$@com> From: Bryan Donlan Date: Wed, 16 Sep 2009 20:45:18 -0400 Message-ID: <3e8340490909161745h5c58c165j1726c3433df3baeb@mail.gmail.com> Subject: Re: epoll and closed file descriptors To: Gilad Benjamini Cc: Davide Libenzi , Linux Kernel Mailing List Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8BIT Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1888 Lines: 53 On Wed, Sep 16, 2009 at 8:40 PM, Gilad Benjamini wrote: > Davide wrote: >> On Wed, 16 Sep 2009, Gilad Benjamini wrote: >> >> > I would, but epoll is preventing me from doing so. >> > Early in sys_epoll_ctl there are these lines >> > >> > ? file = fget(epfd); >> > ? if (!file) >> > ? ? goto error_return; >> > >> > Leaving me in a kind of dead lock >> >> The 'epfd' in there, is the _epoll fd_, which, if fget() fails, means >> you >> close it. >> You see likely failing the 'tfile = fget(fd)' (of course, you closed >> it), >> so if someone else keeps the socket open and you have no chance in >> telling >> it to drop it (really?), you need to remove the socket from the set >> before >> closing it. >> >> >> >> - Davide > > My bad. I meant to quote the line that you mentioned. > I agree that the right thing to do is to remove the fd from epoll before > closing it. > However, due to the way curl works, I cannot do that. Changing the curl code > doesn't seem trivial. > > Regardless, I still don't see how the kernel got into this situation, and if > this situation is valid, why it doesn't bail out of it. epoll references the underlying file object; the fd is used _only_ to obtain this file object, and then never used again. Determining when the fd goes away then requires iterating over all fds, and since epoll was designed to avoid doing exactly that, it isn't an acceptable solution. As I mentioned in the other email, by dup()ing the file descriptor, you can get control over when the copy is closed without changing curl. Then just make sure to remove it from the epoll set before closing your copy. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/