public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Linus Torvalds <torvalds@linux-foundation.org>
To: Andrew Morton <akpm@linux-foundation.org>
Cc: Salman Qazi <sqazi@google.com>,
	linux-kernel@vger.kernel.org,
	Nick Piggin <nickpiggin@yahoo.com.au>
Subject: Re: A bug in read operation for /dev/zero and a proposed fix.
Date: Thu, 4 Jun 2009 14:01:24 -0700 (PDT)	[thread overview]
Message-ID: <alpine.LFD.2.01.0906041355560.4880@localhost.localdomain> (raw)
In-Reply-To: <20090604135050.ceb6bf18.akpm@linux-foundation.org>



On Thu, 4 Jun 2009, Andrew Morton wrote:
> > 
> > To fix this, I propose that when a fatal signal is pending during
> > /dev/zero read operation, we simply return and let the user process die.
> > Here is a patch that does that.
> > 
> > Signed-off-by: Salman Qazi <sqazi@google.com>
> > ---
> > diff --git a/drivers/char/mem.c b/drivers/char/mem.c
> > index 8f05c38..2ffa36e 100644
> > --- a/drivers/char/mem.c
> > +++ b/drivers/char/mem.c
> > @@ -696,6 +696,11 @@ static ssize_t read_zero(struct file * file, char __user * buf,
> >   			break;
> >   		buf += chunk;
> >   		count -= chunk;
> > +		/* The exit code here doesn't actually matter, as userland
> > +		 * will never see it.
> > +		 */
> > +		if (fatal_signal_pending(current))
> > +			return -ENOMEM;
> >   		cond_resched();
> >   	}
> >   	return written ? written : -EFAULT;
> 
> OK.  I think.
> 
> It's presumptuous to return -ENOMEM: we don't _know_ that this signal
> came from the oom-killer.  It would be better to return -EINTR here.

I don't think the error matters in this case, since we literally only care 
about fatal signals, but I agree that EINTR is probably better.

That said, it would be even better to basically act as if it was a signal, 
and do something like

	return written ? written : -EINTR;

because that might allow us to simply make it _totally_ interruptible some 
day. There is nothing that says that /dev/zero shouldn't act like an 
interruptible file descriptor (like a pipe), and just return a partial 
read.

If we want to do this for 2.6.30, though, I very much agree with the 
notion of limiting it to just fatal signals, though.

			Linus

  parent reply	other threads:[~2009-06-04 21:01 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-06-04 20:32 A bug in read operation for /dev/zero and a proposed fix Salman Qazi
2009-06-04 20:50 ` Andrew Morton
2009-06-04 20:56   ` Salman Qazi
2009-06-04 21:01   ` Linus Torvalds [this message]
2009-06-04 21:05     ` Linus Torvalds

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=alpine.LFD.2.01.0906041355560.4880@localhost.localdomain \
    --to=torvalds@linux-foundation.org \
    --cc=akpm@linux-foundation.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=nickpiggin@yahoo.com.au \
    --cc=sqazi@google.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox