]> git.baikalelectronics.ru Git - kernel.git/commit
dlm: kill the unnecessary and wrong device_close()->recalc_sigpending()
authorOleg Nesterov <oleg@redhat.com>
Fri, 9 Aug 2013 15:19:13 +0000 (17:19 +0200)
committerLinus Torvalds <torvalds@linux-foundation.org>
Fri, 9 Aug 2013 17:48:20 +0000 (10:48 -0700)
commit1e12fd4174114235d387dc2e4d827e7cfa2ce734
tree6b6db774cee8a33d070fdae0b77b3594cd4640cf
parent918fb232ed723e038528d5e146b893391cae61f8
dlm: kill the unnecessary and wrong device_close()->recalc_sigpending()

device_close()->recalc_sigpending() is not needed, sigprocmask() takes
care of TIF_SIGPENDING correctly.

And without ->siglock it is racy and wrong, it can wrongly clear
TIF_SIGPENDING and miss a signal.

But even with this patch device_close() is still buggy:

  1. sigprocmask() should not be used, we have set_task_blocked(),
     but this is minor.

  2. We should never block SIGKILL or SIGSTOP, and this is what
     the code tries to do.

  3. This can't protect against SIGKILL or SIGSTOP anyway. Another
     thread can do signal_wake_up(), say, do_signal_stop() or
     complete_signal() or debugger.

  4. sigprocmask(SIG_BLOCK, allsigs) doesn't necessarily clears
     TIF_SIGPENDING, say, freezing() or ->jobctl.

  5. device_write() looks equally wrong by the same reason.

Looks like, this tries to protect some wait_event_interruptible() logic
from signals, it should be turned into uninterruptible wait.  Or we need
to implement something like signals_stop/start for such a use-case.

Signed-off-by: Oleg Nesterov <oleg@redhat.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
fs/dlm/user.c