提交 8df73ff9 编写于 作者: T Tetsuo Handa 提交者: David S. Miller

UNIX: Do not loop forever at unix_autobind().

We assumed that unix_autobind() never fails if kzalloc() succeeded.
But unix_autobind() allows only 1048576 names. If /proc/sys/fs/file-max is
larger than 1048576 (e.g. systems with more than 10GB of RAM), a local user can
consume all names using fork()/socket()/bind().

If all names are in use, those who call bind() with addr_len == sizeof(short)
or connect()/sendmsg() with setsockopt(SO_PASSCRED) will continue

  while (1)
        yield();

loop at unix_autobind() till a name becomes available.
This patch adds a loop counter in order to give up after 1048576 attempts.

Calling yield() for once per 256 attempts may not be sufficient when many names
are already in use, for __unix_find_socket_byname() can take long time under
such circumstance. Therefore, this patch also adds cond_resched() call.

Note that currently a local user can consume 2GB of kernel memory if the user
is allowed to create and autobind 1048576 UNIX domain sockets. We should
consider adding some restriction for autobind operation.
Signed-off-by: NTetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Signed-off-by: NDavid S. Miller <davem@davemloft.net>
上级 32737e93
...@@ -692,6 +692,7 @@ static int unix_autobind(struct socket *sock) ...@@ -692,6 +692,7 @@ static int unix_autobind(struct socket *sock)
static u32 ordernum = 1; static u32 ordernum = 1;
struct unix_address *addr; struct unix_address *addr;
int err; int err;
unsigned int retries = 0;
mutex_lock(&u->readlock); mutex_lock(&u->readlock);
...@@ -717,9 +718,17 @@ static int unix_autobind(struct socket *sock) ...@@ -717,9 +718,17 @@ static int unix_autobind(struct socket *sock)
if (__unix_find_socket_byname(net, addr->name, addr->len, sock->type, if (__unix_find_socket_byname(net, addr->name, addr->len, sock->type,
addr->hash)) { addr->hash)) {
spin_unlock(&unix_table_lock); spin_unlock(&unix_table_lock);
/* Sanity yield. It is unusual case, but yet... */ /*
if (!(ordernum&0xFF)) * __unix_find_socket_byname() may take long time if many names
yield(); * are already in use.
*/
cond_resched();
/* Give up if all names seems to be in use. */
if (retries++ == 0xFFFFF) {
err = -ENOSPC;
kfree(addr);
goto out;
}
goto retry; goto retry;
} }
addr->hash ^= sk->sk_type; addr->hash ^= sk->sk_type;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册