Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 90273
b: refs/heads/master
c: 2342fd7
h: refs/heads/master
i:
  90271: 5e7637d
v: v3
  • Loading branch information
Denis V. Lunev authored and David S. Miller committed Mar 24, 2008
1 parent b6730b6 commit e0eff85
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: f145049a06f470d0489f47cb83ff3ccb2a0de622
refs/heads/master: 2342fd7e146f05edeb13feb03490c13a1bdab2e0
24 changes: 21 additions & 3 deletions trunk/net/ipv4/af_inet.c
Original file line number Diff line number Diff line change
Expand Up @@ -243,6 +243,23 @@ void build_ehash_secret(void)
}
EXPORT_SYMBOL(build_ehash_secret);

static inline int inet_netns_ok(struct net *net, int protocol)
{
int hash;
struct net_protocol *ipprot;

if (net == &init_net)
return 1;

hash = protocol & (MAX_INET_PROTOS - 1);
ipprot = rcu_dereference(inet_protos[hash]);

if (ipprot == NULL)
/* raw IP is OK */
return 1;
return ipprot->netns_ok;
}

/*
* Create an inet socket.
*/
Expand All @@ -259,9 +276,6 @@ static int inet_create(struct net *net, struct socket *sock, int protocol)
int try_loading_module = 0;
int err;

if (net != &init_net)
return -EAFNOSUPPORT;

if (sock->type != SOCK_RAW &&
sock->type != SOCK_DGRAM &&
!inet_ehash_secret)
Expand Down Expand Up @@ -320,6 +334,10 @@ static int inet_create(struct net *net, struct socket *sock, int protocol)
if (answer->capability > 0 && !capable(answer->capability))
goto out_rcu_unlock;

err = -EAFNOSUPPORT;
if (!inet_netns_ok(net, protocol))
goto out_rcu_unlock;

sock->ops = answer->ops;
answer_prot = answer->prot;
answer_no_check = answer->no_check;
Expand Down

0 comments on commit e0eff85

Please sign in to comment.