aboutsummaryrefslogtreecommitdiffstats
path: root/net/socket.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2008-07-24 00:29:21 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2008-07-24 13:47:27 -0400
commitc019bbc612f6633ede7ed67725cbf68de45ae8a4 (patch)
tree99b23660c2915e699f35f3fc5820b5cc30f890b3 /net/socket.c
parentaaca0bdca573f3f51ea03139f9c7289541e7bca3 (diff)
flag parameters: paccept w/out set_restore_sigmask
Some platforms do not have support to restore the signal mask in the return path from a syscall. For those platforms syscalls like pselect are not defined at all. This is, I think, not a good choice for paccept() since paccept() adds more value on top of accept() than just the signal mask handling. Therefore this patch defines a scaled down version of the sys_paccept function for those platforms. It returns -EINVAL in case the signal mask is non-NULL but behaves the same otherwise. Note that I explicitly included <linux/thread_info.h>. I saw that it is currently included but indirectly two levels down. There is too much risk in relying on this. The header might change and then suddenly the function definition would change without anyone immediately noticing. Signed-off-by: Ulrich Drepper <drepper@redhat.com> Cc: Davide Libenzi <davidel@xmailserver.org> Cc: Michael Kerrisk <mtk.manpages@googlemail.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'net/socket.c')
-rw-r--r--net/socket.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/net/socket.c b/net/socket.c
index a0ce8ad72252..d163adff95bf 100644
--- a/net/socket.c
+++ b/net/socket.c
@@ -69,6 +69,7 @@
69#include <linux/proc_fs.h> 69#include <linux/proc_fs.h>
70#include <linux/seq_file.h> 70#include <linux/seq_file.h>
71#include <linux/mutex.h> 71#include <linux/mutex.h>
72#include <linux/thread_info.h>
72#include <linux/wanrouter.h> 73#include <linux/wanrouter.h>
73#include <linux/if_bridge.h> 74#include <linux/if_bridge.h>
74#include <linux/if_frad.h> 75#include <linux/if_frad.h>
@@ -1504,6 +1505,7 @@ out_fd:
1504 goto out_put; 1505 goto out_put;
1505} 1506}
1506 1507
1508#ifdef HAVE_SET_RESTORE_SIGMASK
1507asmlinkage long sys_paccept(int fd, struct sockaddr __user *upeer_sockaddr, 1509asmlinkage long sys_paccept(int fd, struct sockaddr __user *upeer_sockaddr,
1508 int __user *upeer_addrlen, 1510 int __user *upeer_addrlen,
1509 const sigset_t __user *sigmask, 1511 const sigset_t __user *sigmask,
@@ -1541,6 +1543,21 @@ asmlinkage long sys_paccept(int fd, struct sockaddr __user *upeer_sockaddr,
1541 1543
1542 return ret; 1544 return ret;
1543} 1545}
1546#else
1547asmlinkage long sys_paccept(int fd, struct sockaddr __user *upeer_sockaddr,
1548 int __user *upeer_addrlen,
1549 const sigset_t __user *sigmask,
1550 size_t sigsetsize, int flags)
1551{
1552 /* The platform does not support restoring the signal mask in the
1553 * return path. So we do not allow using paccept() with a signal
1554 * mask. */
1555 if (sigmask)
1556 return -EINVAL;
1557
1558 return do_accept(fd, upeer_sockaddr, upeer_addrlen, flags);
1559}
1560#endif
1544 1561
1545asmlinkage long sys_accept(int fd, struct sockaddr __user *upeer_sockaddr, 1562asmlinkage long sys_accept(int fd, struct sockaddr __user *upeer_sockaddr,
1546 int __user *upeer_addrlen) 1563 int __user *upeer_addrlen)