Skip to content

Commit

Permalink
net: initialize net->net_cookie at netns setup
Browse files Browse the repository at this point in the history
It is simpler to make net->net_cookie a plain u64
written once in setup_net() instead of looping
and using atomic64 helpers.

Lorenz Bauer wants to add SO_NETNS_COOKIE socket option
and this patch would makes his patch series simpler.

Signed-off-by: Eric Dumazet <edumazet@google.com>
Cc: Daniel Borkmann <daniel@iogearbox.net>
Cc: Lorenz Bauer <lmb@cloudflare.com>
Acked-by: Daniel Borkmann <daniel@iogearbox.net>
Tested-by: Lorenz Bauer <lmb@cloudflare.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Eric Dumazet authored and David S. Miller committed Feb 11, 2021
1 parent 06e5669 commit 3d368ab
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 24 deletions.
4 changes: 1 addition & 3 deletions include/net/net_namespace.h
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ struct net {
struct netns_xfrm xfrm;
#endif

atomic64_t net_cookie; /* written once */
u64 net_cookie; /* written once */

#if IS_ENABLED(CONFIG_IP_VS)
struct netns_ipvs *ipvs;
Expand Down Expand Up @@ -224,8 +224,6 @@ extern struct list_head net_namespace_list;
struct net *get_net_ns_by_pid(pid_t pid);
struct net *get_net_ns_by_fd(int fd);

u64 __net_gen_cookie(struct net *net);

#ifdef CONFIG_SYSCTL
void ipx_register_sysctl(void);
void ipx_unregister_sysctl(void);
Expand Down
8 changes: 3 additions & 5 deletions net/core/filter.c
Original file line number Diff line number Diff line change
Expand Up @@ -4645,11 +4645,9 @@ static const struct bpf_func_proto bpf_get_socket_cookie_sock_ops_proto = {

static u64 __bpf_get_netns_cookie(struct sock *sk)
{
#ifdef CONFIG_NET_NS
return __net_gen_cookie(sk ? sk->sk_net.net : &init_net);
#else
return 0;
#endif
const struct net *net = sk ? sock_net(sk) : &init_net;

return net->net_cookie;
}

BPF_CALL_1(bpf_get_netns_cookie_sock, struct sock *, ctx)
Expand Down
19 changes: 3 additions & 16 deletions net/core/net_namespace.c
Original file line number Diff line number Diff line change
Expand Up @@ -72,18 +72,6 @@ static unsigned int max_gen_ptrs = INITIAL_NET_GEN_PTRS;

DEFINE_COOKIE(net_cookie);

u64 __net_gen_cookie(struct net *net)
{
while (1) {
u64 res = atomic64_read(&net->net_cookie);

if (res)
return res;
res = gen_cookie_next(&net_cookie);
atomic64_cmpxchg(&net->net_cookie, 0, res);
}
}

static struct net_generic *net_alloc_generic(void)
{
struct net_generic *ng;
Expand Down Expand Up @@ -332,6 +320,9 @@ static __net_init int setup_net(struct net *net, struct user_namespace *user_ns)
refcount_set(&net->ns.count, 1);
refcount_set(&net->passive, 1);
get_random_bytes(&net->hash_mix, sizeof(u32));
preempt_disable();
net->net_cookie = gen_cookie_next(&net_cookie);
preempt_enable();
net->dev_base_seq = 1;
net->user_ns = user_ns;
idr_init(&net->netns_ids);
Expand Down Expand Up @@ -1103,10 +1094,6 @@ static int __init net_ns_init(void)

rcu_assign_pointer(init_net.gen, ng);

preempt_disable();
__net_gen_cookie(&init_net);
preempt_enable();

down_write(&pernet_ops_rwsem);
if (setup_net(&init_net, &init_user_ns))
panic("Could not setup the initial network namespace");
Expand Down

0 comments on commit 3d368ab

Please sign in to comment.