close should not be cancellable after "failing" with EINTR
normally we allow cancellation to be acted upon when a syscall fails with EINTR, since there is no useful status to report to the caller in this case, and the signal that caused the interruption was almost surely the cancellation request, anyway. however, unlike all other syscalls, close has actually performed its resource-deallocation function whenever it returns, even when it returned an error. if we allow cancellation at this point, the caller has no way of informing the program that the file descriptor was closed, and the program may later try to close the file descriptor again, possibly closing a different, newly-opened file. the workaround looks ugly (special-casing one syscall), but it's actually the case that close is the one and only syscall (at least among cancellation points) with this ugly property.
This commit is contained in:
parent
8426a99048
commit
188ebf51b4
1 changed files with 2 additions and 1 deletions
|
|
@ -27,7 +27,8 @@ long (__syscall_cp)(long nr, long u, long v, long w, long x, long y, long z)
|
|||
r = __syscall_cp_asm(&self->cp_sp, nr, u, v, w, x, y, z);
|
||||
self->cp_ip = old_ip;
|
||||
self->cp_sp = old_sp;
|
||||
if (r == -EINTR && self->cancel && !self->canceldisable) __cancel();
|
||||
if (r==-EINTR && nr!=SYS_close && self->cancel && !self->canceldisable)
|
||||
__cancel();
|
||||
return r;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue