Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Eric W. Biederman | 5f256be | 2007-09-12 11:50:50 +0200 | [diff] [blame] | 2 | /* |
| 3 | * Operations on the network namespace |
| 4 | */ |
| 5 | #ifndef __NET_NET_NAMESPACE_H |
| 6 | #define __NET_NET_NAMESPACE_H |
| 7 | |
Arun Sharma | 60063497 | 2011-07-26 16:09:06 -0700 | [diff] [blame] | 8 | #include <linux/atomic.h> |
Reshetova, Elena | c122e14 | 2017-06-30 13:08:08 +0300 | [diff] [blame] | 9 | #include <linux/refcount.h> |
Eric W. Biederman | 5f256be | 2007-09-12 11:50:50 +0200 | [diff] [blame] | 10 | #include <linux/workqueue.h> |
| 11 | #include <linux/list.h> |
David S. Miller | bee9525 | 2011-05-26 16:40:37 -0400 | [diff] [blame] | 12 | #include <linux/sysctl.h> |
Tyler Hicks | fbdeaed | 2018-07-20 21:56:53 +0000 | [diff] [blame] | 13 | #include <linux/uidgid.h> |
Eric W. Biederman | 5f256be | 2007-09-12 11:50:50 +0200 | [diff] [blame] | 14 | |
Cong Wang | 6a66271 | 2014-04-15 16:25:34 -0700 | [diff] [blame] | 15 | #include <net/flow.h> |
Pavel Emelyanov | 8efa6e9 | 2008-03-31 19:41:14 -0700 | [diff] [blame] | 16 | #include <net/netns/core.h> |
Pavel Emelyanov | 852566f5 | 2008-07-18 04:01:24 -0700 | [diff] [blame] | 17 | #include <net/netns/mib.h> |
Denis V. Lunev | a0a53c8 | 2007-12-11 04:19:17 -0800 | [diff] [blame] | 18 | #include <net/netns/unix.h> |
Denis V. Lunev | 2aaef4e | 2007-12-11 04:19:54 -0800 | [diff] [blame] | 19 | #include <net/netns/packet.h> |
Pavel Emelyanov | 8afd351 | 2007-12-16 13:29:36 -0800 | [diff] [blame] | 20 | #include <net/netns/ipv4.h> |
Daniel Lezcano | b0f159d | 2008-01-10 02:49:06 -0800 | [diff] [blame] | 21 | #include <net/netns/ipv6.h> |
David Ahern | ab84be7 | 2019-05-24 14:43:04 -0700 | [diff] [blame] | 22 | #include <net/netns/nexthop.h> |
Alexander Aring | 633fc86 | 2014-02-28 07:32:49 +0100 | [diff] [blame] | 23 | #include <net/netns/ieee802154_6lowpan.h> |
Eric W. Biederman | 4db67e8 | 2012-08-06 08:42:04 +0000 | [diff] [blame] | 24 | #include <net/netns/sctp.h> |
Gao feng | f3c1a44 | 2013-03-24 23:50:39 +0000 | [diff] [blame] | 25 | #include <net/netns/netfilter.h> |
Alexey Dobriyan | dfdb8d7 | 2008-10-08 11:35:02 +0200 | [diff] [blame] | 26 | #if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE) |
| 27 | #include <net/netns/conntrack.h> |
| 28 | #endif |
Vlad Buslov | b038177 | 2022-06-15 12:43:55 +0200 | [diff] [blame] | 29 | #if IS_ENABLED(CONFIG_NF_FLOW_TABLE) |
| 30 | #include <net/netns/flow_table.h> |
| 31 | #endif |
Pablo Neira Ayuso | 99633ab | 2013-10-10 23:28:33 +0200 | [diff] [blame] | 32 | #include <net/netns/nftables.h> |
Alexey Dobriyan | d62ddc2 | 2008-11-25 17:14:31 -0800 | [diff] [blame] | 33 | #include <net/netns/xfrm.h> |
Eric W. Biederman | 0189197 | 2015-03-03 19:10:47 -0600 | [diff] [blame] | 34 | #include <net/netns/mpls.h> |
Mario Kicherer | 8e8cda6 | 2017-02-21 12:19:47 +0100 | [diff] [blame] | 35 | #include <net/netns/can.h> |
Björn Töpel | 1d0dc06 | 2019-01-24 19:59:37 +0100 | [diff] [blame] | 36 | #include <net/netns/xdp.h> |
Guvenc Gulce | 194730a | 2021-06-16 16:52:58 +0200 | [diff] [blame] | 37 | #include <net/netns/smc.h> |
Jakub Sitnicki | a3fd7ce | 2020-05-31 10:28:36 +0200 | [diff] [blame] | 38 | #include <net/netns/bpf.h> |
Jeremy Kerr | 889b7da | 2021-07-29 10:20:45 +0800 | [diff] [blame] | 39 | #include <net/netns/mctp.h> |
Eric Dumazet | 9ba74e6 | 2021-12-09 23:44:21 -0800 | [diff] [blame] | 40 | #include <net/net_trackers.h> |
Al Viro | 435d5f4 | 2014-10-31 22:56:04 -0400 | [diff] [blame] | 41 | #include <linux/ns_common.h> |
Pablo Neira Ayuso | 04c52de | 2015-06-17 10:28:25 -0500 | [diff] [blame] | 42 | #include <linux/idr.h> |
| 43 | #include <linux/skbuff.h> |
Jiri Pirko | a30c7b4 | 2019-09-30 10:15:10 +0200 | [diff] [blame] | 44 | #include <linux/notifier.h> |
Denis V. Lunev | a0a53c8 | 2007-12-11 04:19:17 -0800 | [diff] [blame] | 45 | |
Eric W. Biederman | 038e733 | 2012-06-14 02:31:10 -0700 | [diff] [blame] | 46 | struct user_namespace; |
Eric W. Biederman | 457c4cb | 2007-09-12 12:01:34 +0200 | [diff] [blame] | 47 | struct proc_dir_entry; |
Eric W. Biederman | 2774c7a | 2007-09-26 22:10:56 -0700 | [diff] [blame] | 48 | struct net_device; |
Denis V. Lunev | 97c53ca | 2007-11-19 22:26:51 -0800 | [diff] [blame] | 49 | struct sock; |
Pavel Emelyanov | 1597fbc | 2007-12-01 23:51:01 +1100 | [diff] [blame] | 50 | struct ctl_table_header; |
Pavel Emelyanov | dec827d | 2008-04-15 00:36:08 -0700 | [diff] [blame] | 51 | struct net_generic; |
Christian Brauner | 94e5e30 | 2018-03-19 13:17:30 +0100 | [diff] [blame] | 52 | struct uevent_sock; |
Julian Anastasov | 2553d06 | 2011-03-04 12:18:07 +0200 | [diff] [blame] | 53 | struct netns_ipvs; |
Petar Penkov | d58e468 | 2018-09-14 07:46:18 -0700 | [diff] [blame] | 54 | struct bpf_prog; |
Pavel Emelyanov | 1597fbc | 2007-12-01 23:51:01 +1100 | [diff] [blame] | 55 | |
Eric Dumazet | 7c28bd0 | 2009-10-24 06:13:17 -0700 | [diff] [blame] | 56 | |
| 57 | #define NETDEV_HASHBITS 8 |
| 58 | #define NETDEV_HASHENTRIES (1 << NETDEV_HASHBITS) |
| 59 | |
Eric W. Biederman | 5f256be | 2007-09-12 11:50:50 +0200 | [diff] [blame] | 60 | struct net { |
Eric Dumazet | 2a06b89 | 2019-10-18 15:20:05 -0700 | [diff] [blame] | 61 | /* First cache line can be often dirtied. |
| 62 | * Do not place here read-mostly fields. |
| 63 | */ |
Mike Rapoport | aad12c2 | 2019-08-21 14:29:29 +0300 | [diff] [blame] | 64 | refcount_t passive; /* To decide when the network |
Al Viro | a685e08 | 2011-06-08 21:13:01 -0400 | [diff] [blame] | 65 | * namespace should be freed. |
| 66 | */ |
Eric Dumazet | 8e602ce | 2010-10-14 05:56:18 +0000 | [diff] [blame] | 67 | spinlock_t rules_mod_lock; |
| 68 | |
Eric Dumazet | ede6c39 | 2022-02-09 18:59:32 -0800 | [diff] [blame] | 69 | atomic_t dev_unreg_count; |
Eric Dumazet | 2a06b89 | 2019-10-18 15:20:05 -0700 | [diff] [blame] | 70 | |
| 71 | unsigned int dev_base_seq; /* protected by rtnl_mutex */ |
| 72 | int ifindex; |
| 73 | |
| 74 | spinlock_t nsid_lock; |
| 75 | atomic_t fnhe_genid; |
Eric Dumazet | 33cf7c9 | 2015-03-11 18:53:14 -0700 | [diff] [blame] | 76 | |
Eric W. Biederman | 5f256be | 2007-09-12 11:50:50 +0200 | [diff] [blame] | 77 | struct list_head list; /* list of network namespaces */ |
Kirill Tkhai | 19efbd9 | 2018-02-19 12:58:38 +0300 | [diff] [blame] | 78 | struct list_head exit_list; /* To linked to call pernet exit |
Kirill Tkhai | 4420bf2 | 2018-03-27 18:02:23 +0300 | [diff] [blame] | 79 | * methods on dead net ( |
| 80 | * pernet_ops_rwsem read locked), |
| 81 | * or to unregister pernet ops |
| 82 | * (pernet_ops_rwsem write locked). |
Kirill Tkhai | 19efbd9 | 2018-02-19 12:58:38 +0300 | [diff] [blame] | 83 | */ |
Kirill Tkhai | 65b7b5b | 2018-02-19 12:58:45 +0300 | [diff] [blame] | 84 | struct llist_node cleanup_list; /* namespaces on death row */ |
| 85 | |
David Howells | 9b24261 | 2019-06-26 21:02:33 +0100 | [diff] [blame] | 86 | #ifdef CONFIG_KEYS |
| 87 | struct key_tag *key_domain; /* Key domain of operation tag */ |
| 88 | #endif |
Eric W. Biederman | 038e733 | 2012-06-14 02:31:10 -0700 | [diff] [blame] | 89 | struct user_namespace *user_ns; /* Owning user namespace */ |
Eric W. Biederman | 7032866 | 2016-08-08 14:33:23 -0500 | [diff] [blame] | 90 | struct ucounts *ucounts; |
Nicolas Dichtel | 0c7aecd | 2015-01-15 15:11:15 +0100 | [diff] [blame] | 91 | struct idr netns_ids; |
Eric W. Biederman | 038e733 | 2012-06-14 02:31:10 -0700 | [diff] [blame] | 92 | |
Al Viro | 435d5f4 | 2014-10-31 22:56:04 -0400 | [diff] [blame] | 93 | struct ns_common ns; |
Eric Dumazet | 9ba74e6 | 2021-12-09 23:44:21 -0800 | [diff] [blame] | 94 | struct ref_tracker_dir refcnt_tracker; |
Eric W. Biederman | 98f842e | 2011-06-15 10:21:48 -0700 | [diff] [blame] | 95 | |
Eric Dumazet | 2a06b89 | 2019-10-18 15:20:05 -0700 | [diff] [blame] | 96 | struct list_head dev_base_head; |
Eric W. Biederman | 457c4cb | 2007-09-12 12:01:34 +0200 | [diff] [blame] | 97 | struct proc_dir_entry *proc_net; |
| 98 | struct proc_dir_entry *proc_net_stat; |
Eric W. Biederman | 881d966 | 2007-09-17 11:56:21 -0700 | [diff] [blame] | 99 | |
Al Viro | 7345509 | 2008-07-14 21:22:20 -0400 | [diff] [blame] | 100 | #ifdef CONFIG_SYSCTL |
| 101 | struct ctl_table_set sysctls; |
| 102 | #endif |
Eric W. Biederman | 95bdfcc | 2007-11-30 23:55:42 +1100 | [diff] [blame] | 103 | |
Eric Dumazet | 8e602ce | 2010-10-14 05:56:18 +0000 | [diff] [blame] | 104 | struct sock *rtnl; /* rtnetlink socket */ |
| 105 | struct sock *genl_sock; |
Eric W. Biederman | 2774c7a | 2007-09-26 22:10:56 -0700 | [diff] [blame] | 106 | |
Christian Brauner | 94e5e30 | 2018-03-19 13:17:30 +0100 | [diff] [blame] | 107 | struct uevent_sock *uevent_sock; /* uevent socket */ |
| 108 | |
Eric W. Biederman | 881d966 | 2007-09-17 11:56:21 -0700 | [diff] [blame] | 109 | struct hlist_head *dev_name_head; |
| 110 | struct hlist_head *dev_index_head; |
Jiri Pirko | a30c7b4 | 2019-09-30 10:15:10 +0200 | [diff] [blame] | 111 | struct raw_notifier_head netdev_chain; |
| 112 | |
Eric Dumazet | 2a06b89 | 2019-10-18 15:20:05 -0700 | [diff] [blame] | 113 | /* Note that @hash_mix can be read millions times per second, |
| 114 | * it is critical that it is on a read_mostly cache line. |
| 115 | */ |
| 116 | u32 hash_mix; |
| 117 | |
| 118 | struct net_device *loopback_dev; /* The loopback */ |
Denis V. Lunev | 97c53ca | 2007-11-19 22:26:51 -0800 | [diff] [blame] | 119 | |
Denis V. Lunev | 5fd30ee | 2008-01-10 03:20:28 -0800 | [diff] [blame] | 120 | /* core fib_rules */ |
| 121 | struct list_head rules_ops; |
Denis V. Lunev | 5fd30ee | 2008-01-10 03:20:28 -0800 | [diff] [blame] | 122 | |
Pavel Emelyanov | 8efa6e9 | 2008-03-31 19:41:14 -0700 | [diff] [blame] | 123 | struct netns_core core; |
Pavel Emelyanov | 852566f5 | 2008-07-18 04:01:24 -0700 | [diff] [blame] | 124 | struct netns_mib mib; |
Denis V. Lunev | 2aaef4e | 2007-12-11 04:19:54 -0800 | [diff] [blame] | 125 | struct netns_packet packet; |
Kuniyuki Iwashima | b6e8113 | 2022-06-21 10:19:10 -0700 | [diff] [blame] | 126 | #if IS_ENABLED(CONFIG_UNIX) |
Denis V. Lunev | a0a53c8 | 2007-12-11 04:19:17 -0800 | [diff] [blame] | 127 | struct netns_unix unx; |
Kuniyuki Iwashima | b6e8113 | 2022-06-21 10:19:10 -0700 | [diff] [blame] | 128 | #endif |
David Ahern | ab84be7 | 2019-05-24 14:43:04 -0700 | [diff] [blame] | 129 | struct netns_nexthop nexthop; |
Pavel Emelyanov | 8afd351 | 2007-12-16 13:29:36 -0800 | [diff] [blame] | 130 | struct netns_ipv4 ipv4; |
Eric Dumazet | dfd56b8 | 2011-12-10 09:48:31 +0000 | [diff] [blame] | 131 | #if IS_ENABLED(CONFIG_IPV6) |
Daniel Lezcano | b0f159d | 2008-01-10 02:49:06 -0800 | [diff] [blame] | 132 | struct netns_ipv6 ipv6; |
| 133 | #endif |
Alexander Aring | 633fc86 | 2014-02-28 07:32:49 +0100 | [diff] [blame] | 134 | #if IS_ENABLED(CONFIG_IEEE802154_6LOWPAN) |
| 135 | struct netns_ieee802154_lowpan ieee802154_lowpan; |
| 136 | #endif |
Eric W. Biederman | 4db67e8 | 2012-08-06 08:42:04 +0000 | [diff] [blame] | 137 | #if defined(CONFIG_IP_SCTP) || defined(CONFIG_IP_SCTP_MODULE) |
| 138 | struct netns_sctp sctp; |
| 139 | #endif |
Alexey Dobriyan | 8d87005 | 2008-01-31 04:02:13 -0800 | [diff] [blame] | 140 | #ifdef CONFIG_NETFILTER |
Gao feng | f3c1a44 | 2013-03-24 23:50:39 +0000 | [diff] [blame] | 141 | struct netns_nf nf; |
Alexey Dobriyan | dfdb8d7 | 2008-10-08 11:35:02 +0200 | [diff] [blame] | 142 | #if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE) |
| 143 | struct netns_ct ct; |
| 144 | #endif |
Pablo Neira Ayuso | 99633ab | 2013-10-10 23:28:33 +0200 | [diff] [blame] | 145 | #if defined(CONFIG_NF_TABLES) || defined(CONFIG_NF_TABLES_MODULE) |
| 146 | struct netns_nftables nft; |
| 147 | #endif |
Vlad Buslov | b038177 | 2022-06-15 12:43:55 +0200 | [diff] [blame] | 148 | #if IS_ENABLED(CONFIG_NF_FLOW_TABLE) |
| 149 | struct netns_ft ft; |
| 150 | #endif |
Alexey Dobriyan | 8d87005 | 2008-01-31 04:02:13 -0800 | [diff] [blame] | 151 | #endif |
Johannes Berg | 3d23e34 | 2009-09-29 23:27:28 +0200 | [diff] [blame] | 152 | #ifdef CONFIG_WEXT_CORE |
Johannes Berg | b333b3d22 | 2009-06-24 01:34:48 +0000 | [diff] [blame] | 153 | struct sk_buff_head wext_nlevents; |
| 154 | #endif |
Eric Dumazet | 1c87733 | 2010-10-25 03:20:11 +0000 | [diff] [blame] | 155 | struct net_generic __rcu *gen; |
Eric Dumazet | 8e602ce | 2010-10-14 05:56:18 +0000 | [diff] [blame] | 156 | |
Jakub Sitnicki | a3fd7ce | 2020-05-31 10:28:36 +0200 | [diff] [blame] | 157 | /* Used to store attached BPF programs */ |
| 158 | struct netns_bpf bpf; |
Petar Penkov | d58e468 | 2018-09-14 07:46:18 -0700 | [diff] [blame] | 159 | |
Eric Dumazet | 8e602ce | 2010-10-14 05:56:18 +0000 | [diff] [blame] | 160 | /* Note : following structs are cache line aligned */ |
| 161 | #ifdef CONFIG_XFRM |
| 162 | struct netns_xfrm xfrm; |
| 163 | #endif |
Daniel Borkmann | f318903 | 2020-03-27 16:58:52 +0100 | [diff] [blame] | 164 | |
Eric Dumazet | 3d368ab | 2021-02-10 06:41:44 -0800 | [diff] [blame] | 165 | u64 net_cookie; /* written once */ |
Daniel Borkmann | f318903 | 2020-03-27 16:58:52 +0100 | [diff] [blame] | 166 | |
JunweiZhang | 8b4d14d | 2013-06-26 16:40:06 +0800 | [diff] [blame] | 167 | #if IS_ENABLED(CONFIG_IP_VS) |
Hans Schillstrom | 61b1ab4 | 2011-01-03 14:44:42 +0100 | [diff] [blame] | 168 | struct netns_ipvs *ipvs; |
JunweiZhang | 8b4d14d | 2013-06-26 16:40:06 +0800 | [diff] [blame] | 169 | #endif |
Eric W. Biederman | 0189197 | 2015-03-03 19:10:47 -0600 | [diff] [blame] | 170 | #if IS_ENABLED(CONFIG_MPLS) |
| 171 | struct netns_mpls mpls; |
| 172 | #endif |
Mario Kicherer | 8e8cda6 | 2017-02-21 12:19:47 +0100 | [diff] [blame] | 173 | #if IS_ENABLED(CONFIG_CAN) |
| 174 | struct netns_can can; |
| 175 | #endif |
Björn Töpel | 1d0dc06 | 2019-01-24 19:59:37 +0100 | [diff] [blame] | 176 | #ifdef CONFIG_XDP_SOCKETS |
| 177 | struct netns_xdp xdp; |
| 178 | #endif |
Jeremy Kerr | 889b7da | 2021-07-29 10:20:45 +0800 | [diff] [blame] | 179 | #if IS_ENABLED(CONFIG_MCTP) |
| 180 | struct netns_mctp mctp; |
| 181 | #endif |
Ondrej Mosnacek | 91b05a7 | 2019-07-09 13:11:24 +0200 | [diff] [blame] | 182 | #if IS_ENABLED(CONFIG_CRYPTO_USER) |
| 183 | struct sock *crypto_nlsk; |
| 184 | #endif |
Andrey Vagin | 51d7ccc | 2012-07-16 04:28:49 +0000 | [diff] [blame] | 185 | struct sock *diag_nlsk; |
Guvenc Gulce | 194730a | 2021-06-16 16:52:58 +0200 | [diff] [blame] | 186 | #if IS_ENABLED(CONFIG_SMC) |
| 187 | struct netns_smc smc; |
| 188 | #endif |
Kees Cook | 3859a27 | 2016-10-28 01:22:25 -0700 | [diff] [blame] | 189 | } __randomize_layout; |
Eric W. Biederman | 5f256be | 2007-09-12 11:50:50 +0200 | [diff] [blame] | 190 | |
Denis V. Lunev | c0f3932 | 2008-04-02 00:10:28 -0700 | [diff] [blame] | 191 | #include <linux/seq_file_net.h> |
| 192 | |
Daniel Lezcano | 4fabcd7 | 2007-09-13 09:16:29 +0200 | [diff] [blame] | 193 | /* Init's network namespace */ |
Eric W. Biederman | 5f256be | 2007-09-12 11:50:50 +0200 | [diff] [blame] | 194 | extern struct net init_net; |
Denis V. Lunev | a4aa834 | 2008-04-03 13:04:33 -0700 | [diff] [blame] | 195 | |
Eric W. Biederman | d727abc | 2012-06-14 02:16:42 -0700 | [diff] [blame] | 196 | #ifdef CONFIG_NET_NS |
Joe Perches | e67e16e | 2013-09-21 10:22:48 -0700 | [diff] [blame] | 197 | struct net *copy_net_ns(unsigned long flags, struct user_namespace *user_ns, |
| 198 | struct net *old_net); |
Denis V. Lunev | 225c0a0 | 2008-04-02 00:09:29 -0700 | [diff] [blame] | 199 | |
Tyler Hicks | fbdeaed | 2018-07-20 21:56:53 +0000 | [diff] [blame] | 200 | void net_ns_get_ownership(const struct net *net, kuid_t *uid, kgid_t *gid); |
| 201 | |
Florian Westphal | 7866cc5 | 2017-05-30 11:38:12 +0200 | [diff] [blame] | 202 | void net_ns_barrier(void); |
Changbin Du | ea6932d | 2021-06-11 22:29:59 +0800 | [diff] [blame] | 203 | |
| 204 | struct ns_common *get_net_ns(struct ns_common *ns); |
Changbin Du | e34492d | 2021-06-15 07:52:43 +0800 | [diff] [blame] | 205 | struct net *get_net_ns_by_fd(int fd); |
Eric W. Biederman | d727abc | 2012-06-14 02:16:42 -0700 | [diff] [blame] | 206 | #else /* CONFIG_NET_NS */ |
| 207 | #include <linux/sched.h> |
| 208 | #include <linux/nsproxy.h> |
Eric W. Biederman | 038e733 | 2012-06-14 02:31:10 -0700 | [diff] [blame] | 209 | static inline struct net *copy_net_ns(unsigned long flags, |
| 210 | struct user_namespace *user_ns, struct net *old_net) |
Eric W. Biederman | 9dd776b | 2007-09-26 22:04:26 -0700 | [diff] [blame] | 211 | { |
Eric W. Biederman | d727abc | 2012-06-14 02:16:42 -0700 | [diff] [blame] | 212 | if (flags & CLONE_NEWNET) |
| 213 | return ERR_PTR(-EINVAL); |
| 214 | return old_net; |
Eric W. Biederman | 9dd776b | 2007-09-26 22:04:26 -0700 | [diff] [blame] | 215 | } |
Florian Westphal | 7866cc5 | 2017-05-30 11:38:12 +0200 | [diff] [blame] | 216 | |
Tyler Hicks | fbdeaed | 2018-07-20 21:56:53 +0000 | [diff] [blame] | 217 | static inline void net_ns_get_ownership(const struct net *net, |
| 218 | kuid_t *uid, kgid_t *gid) |
| 219 | { |
| 220 | *uid = GLOBAL_ROOT_UID; |
| 221 | *gid = GLOBAL_ROOT_GID; |
| 222 | } |
| 223 | |
Florian Westphal | 7866cc5 | 2017-05-30 11:38:12 +0200 | [diff] [blame] | 224 | static inline void net_ns_barrier(void) {} |
Changbin Du | ea6932d | 2021-06-11 22:29:59 +0800 | [diff] [blame] | 225 | |
| 226 | static inline struct ns_common *get_net_ns(struct ns_common *ns) |
| 227 | { |
| 228 | return ERR_PTR(-EINVAL); |
| 229 | } |
Changbin Du | e34492d | 2021-06-15 07:52:43 +0800 | [diff] [blame] | 230 | |
| 231 | static inline struct net *get_net_ns_by_fd(int fd) |
| 232 | { |
| 233 | return ERR_PTR(-EINVAL); |
| 234 | } |
Eric W. Biederman | d727abc | 2012-06-14 02:16:42 -0700 | [diff] [blame] | 235 | #endif /* CONFIG_NET_NS */ |
Denis V. Lunev | 225c0a0 | 2008-04-02 00:09:29 -0700 | [diff] [blame] | 236 | |
| 237 | |
| 238 | extern struct list_head net_namespace_list; |
Eric W. Biederman | 9dd776b | 2007-09-26 22:04:26 -0700 | [diff] [blame] | 239 | |
Joe Perches | e67e16e | 2013-09-21 10:22:48 -0700 | [diff] [blame] | 240 | struct net *get_net_ns_by_pid(pid_t pid); |
Johannes Berg | 30ffee8 | 2009-07-10 09:51:35 +0000 | [diff] [blame] | 241 | |
Rashika Kheria | 535d3ae | 2014-02-09 22:29:14 +0530 | [diff] [blame] | 242 | #ifdef CONFIG_SYSCTL |
| 243 | void ipx_register_sysctl(void); |
| 244 | void ipx_unregister_sysctl(void); |
| 245 | #else |
| 246 | #define ipx_register_sysctl() |
| 247 | #define ipx_unregister_sysctl() |
| 248 | #endif |
| 249 | |
Pavel Emelyanov | d465579 | 2007-11-01 00:43:49 -0700 | [diff] [blame] | 250 | #ifdef CONFIG_NET_NS |
Joe Perches | e67e16e | 2013-09-21 10:22:48 -0700 | [diff] [blame] | 251 | void __put_net(struct net *net); |
Eric W. Biederman | 5f256be | 2007-09-12 11:50:50 +0200 | [diff] [blame] | 252 | |
Eric Dumazet | 9ba74e6 | 2021-12-09 23:44:21 -0800 | [diff] [blame] | 253 | /* Try using get_net_track() instead */ |
Eric W. Biederman | 5f256be | 2007-09-12 11:50:50 +0200 | [diff] [blame] | 254 | static inline struct net *get_net(struct net *net) |
| 255 | { |
Christian Brauner | 8b8f3e6 | 2020-08-19 14:06:36 +0200 | [diff] [blame] | 256 | refcount_inc(&net->ns.count); |
Eric W. Biederman | 5f256be | 2007-09-12 11:50:50 +0200 | [diff] [blame] | 257 | return net; |
| 258 | } |
| 259 | |
Eric W. Biederman | 077130c | 2007-09-13 09:18:57 +0200 | [diff] [blame] | 260 | static inline struct net *maybe_get_net(struct net *net) |
| 261 | { |
| 262 | /* Used when we know struct net exists but we |
| 263 | * aren't guaranteed a previous reference count |
| 264 | * exists. If the reference count is zero this |
| 265 | * function fails and returns NULL. |
| 266 | */ |
Christian Brauner | 8b8f3e6 | 2020-08-19 14:06:36 +0200 | [diff] [blame] | 267 | if (!refcount_inc_not_zero(&net->ns.count)) |
Eric W. Biederman | 077130c | 2007-09-13 09:18:57 +0200 | [diff] [blame] | 268 | net = NULL; |
| 269 | return net; |
| 270 | } |
| 271 | |
Eric Dumazet | 9ba74e6 | 2021-12-09 23:44:21 -0800 | [diff] [blame] | 272 | /* Try using put_net_track() instead */ |
Eric W. Biederman | 5f256be | 2007-09-12 11:50:50 +0200 | [diff] [blame] | 273 | static inline void put_net(struct net *net) |
| 274 | { |
Christian Brauner | 8b8f3e6 | 2020-08-19 14:06:36 +0200 | [diff] [blame] | 275 | if (refcount_dec_and_test(&net->ns.count)) |
Eric W. Biederman | 5f256be | 2007-09-12 11:50:50 +0200 | [diff] [blame] | 276 | __put_net(net); |
| 277 | } |
| 278 | |
YOSHIFUJI Hideaki | 878628f | 2008-03-26 03:57:35 +0900 | [diff] [blame] | 279 | static inline |
| 280 | int net_eq(const struct net *net1, const struct net *net2) |
| 281 | { |
| 282 | return net1 == net2; |
| 283 | } |
Al Viro | a685e08 | 2011-06-08 21:13:01 -0400 | [diff] [blame] | 284 | |
Dan Streetman | 4ee806d | 2018-01-18 16:14:26 -0500 | [diff] [blame] | 285 | static inline int check_net(const struct net *net) |
| 286 | { |
Christian Brauner | 8b8f3e6 | 2020-08-19 14:06:36 +0200 | [diff] [blame] | 287 | return refcount_read(&net->ns.count) != 0; |
Dan Streetman | 4ee806d | 2018-01-18 16:14:26 -0500 | [diff] [blame] | 288 | } |
| 289 | |
Joe Perches | e67e16e | 2013-09-21 10:22:48 -0700 | [diff] [blame] | 290 | void net_drop_ns(void *); |
Al Viro | a685e08 | 2011-06-08 21:13:01 -0400 | [diff] [blame] | 291 | |
Pavel Emelyanov | d465579 | 2007-11-01 00:43:49 -0700 | [diff] [blame] | 292 | #else |
Eric W. Biederman | b9f75f4 | 2008-06-20 22:16:51 -0700 | [diff] [blame] | 293 | |
Pavel Emelyanov | d465579 | 2007-11-01 00:43:49 -0700 | [diff] [blame] | 294 | static inline struct net *get_net(struct net *net) |
| 295 | { |
| 296 | return net; |
| 297 | } |
| 298 | |
| 299 | static inline void put_net(struct net *net) |
| 300 | { |
| 301 | } |
| 302 | |
Pavel Emelyanov | d465579 | 2007-11-01 00:43:49 -0700 | [diff] [blame] | 303 | static inline struct net *maybe_get_net(struct net *net) |
| 304 | { |
| 305 | return net; |
| 306 | } |
YOSHIFUJI Hideaki | 878628f | 2008-03-26 03:57:35 +0900 | [diff] [blame] | 307 | |
| 308 | static inline |
| 309 | int net_eq(const struct net *net1, const struct net *net2) |
| 310 | { |
| 311 | return 1; |
| 312 | } |
Al Viro | a685e08 | 2011-06-08 21:13:01 -0400 | [diff] [blame] | 313 | |
Dan Streetman | 4ee806d | 2018-01-18 16:14:26 -0500 | [diff] [blame] | 314 | static inline int check_net(const struct net *net) |
| 315 | { |
| 316 | return 1; |
| 317 | } |
| 318 | |
Al Viro | a685e08 | 2011-06-08 21:13:01 -0400 | [diff] [blame] | 319 | #define net_drop_ns NULL |
Pavel Emelyanov | d465579 | 2007-11-01 00:43:49 -0700 | [diff] [blame] | 320 | #endif |
Eric W. Biederman | 5f256be | 2007-09-12 11:50:50 +0200 | [diff] [blame] | 321 | |
Denis V. Lunev | 5d1e446 | 2008-04-16 01:58:04 -0700 | [diff] [blame] | 322 | |
Eric Dumazet | 9ba74e6 | 2021-12-09 23:44:21 -0800 | [diff] [blame] | 323 | static inline void netns_tracker_alloc(struct net *net, |
| 324 | netns_tracker *tracker, gfp_t gfp) |
| 325 | { |
| 326 | #ifdef CONFIG_NET_NS_REFCNT_TRACKER |
| 327 | ref_tracker_alloc(&net->refcnt_tracker, tracker, gfp); |
| 328 | #endif |
| 329 | } |
| 330 | |
| 331 | static inline void netns_tracker_free(struct net *net, |
| 332 | netns_tracker *tracker) |
| 333 | { |
| 334 | #ifdef CONFIG_NET_NS_REFCNT_TRACKER |
| 335 | ref_tracker_free(&net->refcnt_tracker, tracker); |
| 336 | #endif |
| 337 | } |
| 338 | |
| 339 | static inline struct net *get_net_track(struct net *net, |
| 340 | netns_tracker *tracker, gfp_t gfp) |
| 341 | { |
| 342 | get_net(net); |
| 343 | netns_tracker_alloc(net, tracker, gfp); |
| 344 | return net; |
| 345 | } |
| 346 | |
| 347 | static inline void put_net_track(struct net *net, netns_tracker *tracker) |
| 348 | { |
| 349 | netns_tracker_free(net, tracker); |
| 350 | put_net(net); |
| 351 | } |
| 352 | |
Eric W. Biederman | 0c5c9fb | 2015-03-11 23:06:44 -0500 | [diff] [blame] | 353 | typedef struct { |
Eric Dumazet | 8f424b5 | 2008-11-12 00:53:30 -0800 | [diff] [blame] | 354 | #ifdef CONFIG_NET_NS |
Eric W. Biederman | 0c5c9fb | 2015-03-11 23:06:44 -0500 | [diff] [blame] | 355 | struct net *net; |
Eric Dumazet | 8f424b5 | 2008-11-12 00:53:30 -0800 | [diff] [blame] | 356 | #endif |
Eric W. Biederman | 0c5c9fb | 2015-03-11 23:06:44 -0500 | [diff] [blame] | 357 | } possible_net_t; |
| 358 | |
| 359 | static inline void write_pnet(possible_net_t *pnet, struct net *net) |
| 360 | { |
| 361 | #ifdef CONFIG_NET_NS |
| 362 | pnet->net = net; |
| 363 | #endif |
| 364 | } |
| 365 | |
| 366 | static inline struct net *read_pnet(const possible_net_t *pnet) |
| 367 | { |
| 368 | #ifdef CONFIG_NET_NS |
| 369 | return pnet->net; |
| 370 | #else |
| 371 | return &init_net; |
| 372 | #endif |
| 373 | } |
Denis V. Lunev | 5d1e446 | 2008-04-16 01:58:04 -0700 | [diff] [blame] | 374 | |
Kirill Tkhai | f0b07bb1 | 2018-03-29 19:20:32 +0300 | [diff] [blame] | 375 | /* Protected by net_rwsem */ |
Eric W. Biederman | 5f256be | 2007-09-12 11:50:50 +0200 | [diff] [blame] | 376 | #define for_each_net(VAR) \ |
| 377 | list_for_each_entry(VAR, &net_namespace_list, list) |
Jiri Pirko | afa0df5 | 2019-09-30 10:15:09 +0200 | [diff] [blame] | 378 | #define for_each_net_continue_reverse(VAR) \ |
| 379 | list_for_each_entry_continue_reverse(VAR, &net_namespace_list, list) |
Johannes Berg | 11a28d3 | 2009-07-10 09:51:33 +0000 | [diff] [blame] | 380 | #define for_each_net_rcu(VAR) \ |
| 381 | list_for_each_entry_rcu(VAR, &net_namespace_list, list) |
| 382 | |
Pavel Emelyanov | 4665079 | 2007-10-08 20:38:39 -0700 | [diff] [blame] | 383 | #ifdef CONFIG_NET_NS |
| 384 | #define __net_init |
| 385 | #define __net_exit |
Denis V. Lunev | 022cbae | 2007-11-13 03:23:50 -0800 | [diff] [blame] | 386 | #define __net_initdata |
Andi Kleen | 04a6f82 | 2012-10-04 17:12:11 -0700 | [diff] [blame] | 387 | #define __net_initconst |
Pavel Emelyanov | 4665079 | 2007-10-08 20:38:39 -0700 | [diff] [blame] | 388 | #else |
| 389 | #define __net_init __init |
Fabian Frederick | bd721ea | 2016-08-02 14:03:33 -0700 | [diff] [blame] | 390 | #define __net_exit __ref |
Denis V. Lunev | 022cbae | 2007-11-13 03:23:50 -0800 | [diff] [blame] | 391 | #define __net_initdata __initdata |
Andi Kleen | 04a6f82 | 2012-10-04 17:12:11 -0700 | [diff] [blame] | 392 | #define __net_initconst __initconst |
Pavel Emelyanov | 4665079 | 2007-10-08 20:38:39 -0700 | [diff] [blame] | 393 | #endif |
Eric W. Biederman | 5f256be | 2007-09-12 11:50:50 +0200 | [diff] [blame] | 394 | |
Guillaume Nault | d4e4fdf | 2019-10-23 18:39:04 +0200 | [diff] [blame] | 395 | int peernet2id_alloc(struct net *net, struct net *peer, gfp_t gfp); |
Guillaume Nault | 56f200c | 2020-01-16 21:16:46 +0100 | [diff] [blame] | 396 | int peernet2id(const struct net *net, struct net *peer); |
| 397 | bool peernet_has_id(const struct net *net, struct net *peer); |
| 398 | struct net *get_net_ns_by_id(const struct net *net, int id); |
Nicolas Dichtel | 0c7aecd | 2015-01-15 15:11:15 +0100 | [diff] [blame] | 399 | |
Eric W. Biederman | 5f256be | 2007-09-12 11:50:50 +0200 | [diff] [blame] | 400 | struct pernet_operations { |
| 401 | struct list_head list; |
Kirill Tkhai | 6056415d | 2018-03-13 13:55:55 +0300 | [diff] [blame] | 402 | /* |
| 403 | * Below methods are called without any exclusive locks. |
| 404 | * More than one net may be constructed and destructed |
| 405 | * in parallel on several cpus. Every pernet_operations |
| 406 | * have to keep in mind all other pernet_operations and |
| 407 | * to introduce a locking, if they share common resources. |
| 408 | * |
Kirill Tkhai | 8518e9b | 2018-03-27 18:02:32 +0300 | [diff] [blame] | 409 | * The only time they are called with exclusive lock is |
| 410 | * from register_pernet_subsys(), unregister_pernet_subsys() |
| 411 | * register_pernet_device() and unregister_pernet_device(). |
| 412 | * |
Kirill Tkhai | 6056415d | 2018-03-13 13:55:55 +0300 | [diff] [blame] | 413 | * Exit methods using blocking RCU primitives, such as |
| 414 | * synchronize_rcu(), should be implemented via exit_batch. |
| 415 | * Then, destruction of a group of net requires single |
| 416 | * synchronize_rcu() related to these pernet_operations, |
| 417 | * instead of separate synchronize_rcu() for every net. |
| 418 | * Please, avoid synchronize_rcu() at all, where it's possible. |
Eric Dumazet | d7d9987 | 2019-06-18 11:08:59 -0700 | [diff] [blame] | 419 | * |
| 420 | * Note that a combination of pre_exit() and exit() can |
| 421 | * be used, since a synchronize_rcu() is guaranteed between |
| 422 | * the calls. |
Kirill Tkhai | 6056415d | 2018-03-13 13:55:55 +0300 | [diff] [blame] | 423 | */ |
Eric W. Biederman | 5f256be | 2007-09-12 11:50:50 +0200 | [diff] [blame] | 424 | int (*init)(struct net *net); |
Eric Dumazet | d7d9987 | 2019-06-18 11:08:59 -0700 | [diff] [blame] | 425 | void (*pre_exit)(struct net *net); |
Eric W. Biederman | 5f256be | 2007-09-12 11:50:50 +0200 | [diff] [blame] | 426 | void (*exit)(struct net *net); |
Eric W. Biederman | 72ad937 | 2009-12-03 02:29:03 +0000 | [diff] [blame] | 427 | void (*exit_batch)(struct list_head *net_exit_list); |
Alexey Dobriyan | c7d03a0 | 2016-11-17 04:58:21 +0300 | [diff] [blame] | 428 | unsigned int *id; |
Eric W. Biederman | f875bae | 2009-11-29 22:25:28 +0000 | [diff] [blame] | 429 | size_t size; |
Eric W. Biederman | 5f256be | 2007-09-12 11:50:50 +0200 | [diff] [blame] | 430 | }; |
| 431 | |
Eric W. Biederman | 17edde5 | 2009-02-22 00:11:09 -0800 | [diff] [blame] | 432 | /* |
| 433 | * Use these carefully. If you implement a network device and it |
| 434 | * needs per network namespace operations use device pernet operations, |
| 435 | * otherwise use pernet subsys operations. |
| 436 | * |
Johannes Berg | 4edf547 | 2009-07-15 06:16:34 +0000 | [diff] [blame] | 437 | * Network interfaces need to be removed from a dying netns _before_ |
| 438 | * subsys notifiers can be called, as most of the network code cleanup |
| 439 | * (which is done from subsys notifiers) runs with the assumption that |
| 440 | * dev_remove_pack has been called so no new packets will arrive during |
| 441 | * and after the cleanup functions have been called. dev_remove_pack |
| 442 | * is not per namespace so instead the guarantee of no more packets |
| 443 | * arriving in a network namespace is provided by ensuring that all |
| 444 | * network devices and all sockets have left the network namespace |
| 445 | * before the cleanup methods are called. |
Eric W. Biederman | 17edde5 | 2009-02-22 00:11:09 -0800 | [diff] [blame] | 446 | * |
| 447 | * For the longest time the ipv4 icmp code was registered as a pernet |
| 448 | * device which caused kernel oops, and panics during network |
| 449 | * namespace cleanup. So please don't get this wrong. |
| 450 | */ |
Joe Perches | e67e16e | 2013-09-21 10:22:48 -0700 | [diff] [blame] | 451 | int register_pernet_subsys(struct pernet_operations *); |
| 452 | void unregister_pernet_subsys(struct pernet_operations *); |
| 453 | int register_pernet_device(struct pernet_operations *); |
| 454 | void unregister_pernet_device(struct pernet_operations *); |
Eric W. Biederman | f875bae | 2009-11-29 22:25:28 +0000 | [diff] [blame] | 455 | |
Eric W. Biederman | 95bdfcc | 2007-11-30 23:55:42 +1100 | [diff] [blame] | 456 | struct ctl_table; |
Pavel Emelyanov | d62c612 | 2008-05-19 13:45:33 -0700 | [diff] [blame] | 457 | |
Eric W. Biederman | 2ca794e | 2012-04-19 13:20:32 +0000 | [diff] [blame] | 458 | #ifdef CONFIG_SYSCTL |
Joe Perches | e67e16e | 2013-09-21 10:22:48 -0700 | [diff] [blame] | 459 | int net_sysctl_init(void); |
| 460 | struct ctl_table_header *register_net_sysctl(struct net *net, const char *path, |
| 461 | struct ctl_table *table); |
| 462 | void unregister_net_sysctl_table(struct ctl_table_header *header); |
Eric W. Biederman | 48c7495 | 2012-04-23 12:13:02 +0000 | [diff] [blame] | 463 | #else |
| 464 | static inline int net_sysctl_init(void) { return 0; } |
| 465 | static inline struct ctl_table_header *register_net_sysctl(struct net *net, |
| 466 | const char *path, struct ctl_table *table) |
| 467 | { |
| 468 | return NULL; |
| 469 | } |
| 470 | static inline void unregister_net_sysctl_table(struct ctl_table_header *header) |
| 471 | { |
| 472 | } |
| 473 | #endif |
| 474 | |
Guillaume Nault | 56f200c | 2020-01-16 21:16:46 +0100 | [diff] [blame] | 475 | static inline int rt_genid_ipv4(const struct net *net) |
Nicolas Dichtel | b42664f | 2012-09-10 22:09:44 +0000 | [diff] [blame] | 476 | { |
fan.du | ca4c3fc | 2013-07-30 08:33:53 +0800 | [diff] [blame] | 477 | return atomic_read(&net->ipv4.rt_genid); |
Nicolas Dichtel | b42664f | 2012-09-10 22:09:44 +0000 | [diff] [blame] | 478 | } |
| 479 | |
David Ahern | 8f34e53b | 2020-05-01 08:53:08 -0600 | [diff] [blame] | 480 | #if IS_ENABLED(CONFIG_IPV6) |
| 481 | static inline int rt_genid_ipv6(const struct net *net) |
| 482 | { |
| 483 | return atomic_read(&net->ipv6.fib6_sernum); |
| 484 | } |
| 485 | #endif |
| 486 | |
fan.du | ca4c3fc | 2013-07-30 08:33:53 +0800 | [diff] [blame] | 487 | static inline void rt_genid_bump_ipv4(struct net *net) |
Nicolas Dichtel | b42664f | 2012-09-10 22:09:44 +0000 | [diff] [blame] | 488 | { |
fan.du | ca4c3fc | 2013-07-30 08:33:53 +0800 | [diff] [blame] | 489 | atomic_inc(&net->ipv4.rt_genid); |
| 490 | } |
| 491 | |
Hannes Frederic Sowa | 705f1c8 | 2014-09-28 00:46:06 +0200 | [diff] [blame] | 492 | extern void (*__fib6_flush_trees)(struct net *net); |
fan.du | ca4c3fc | 2013-07-30 08:33:53 +0800 | [diff] [blame] | 493 | static inline void rt_genid_bump_ipv6(struct net *net) |
| 494 | { |
Hannes Frederic Sowa | 705f1c8 | 2014-09-28 00:46:06 +0200 | [diff] [blame] | 495 | if (__fib6_flush_trees) |
| 496 | __fib6_flush_trees(net); |
fan.du | ca4c3fc | 2013-07-30 08:33:53 +0800 | [diff] [blame] | 497 | } |
fan.du | ca4c3fc | 2013-07-30 08:33:53 +0800 | [diff] [blame] | 498 | |
Luis R. Rodriguez | 599018a | 2014-04-17 18:22:54 -0700 | [diff] [blame] | 499 | #if IS_ENABLED(CONFIG_IEEE802154_6LOWPAN) |
| 500 | static inline struct netns_ieee802154_lowpan * |
| 501 | net_ieee802154_lowpan(struct net *net) |
| 502 | { |
| 503 | return &net->ieee802154_lowpan; |
| 504 | } |
Luis R. Rodriguez | 599018a | 2014-04-17 18:22:54 -0700 | [diff] [blame] | 505 | #endif |
| 506 | |
fan.du | ca4c3fc | 2013-07-30 08:33:53 +0800 | [diff] [blame] | 507 | /* For callers who don't really care about whether it's IPv4 or IPv6 */ |
| 508 | static inline void rt_genid_bump_all(struct net *net) |
| 509 | { |
| 510 | rt_genid_bump_ipv4(net); |
| 511 | rt_genid_bump_ipv6(net); |
Nicolas Dichtel | b42664f | 2012-09-10 22:09:44 +0000 | [diff] [blame] | 512 | } |
Eric W. Biederman | 95bdfcc | 2007-11-30 23:55:42 +1100 | [diff] [blame] | 513 | |
Guillaume Nault | 56f200c | 2020-01-16 21:16:46 +0100 | [diff] [blame] | 514 | static inline int fnhe_genid(const struct net *net) |
Timo Teräs | 5aad1de | 2013-05-27 20:46:33 +0000 | [diff] [blame] | 515 | { |
| 516 | return atomic_read(&net->fnhe_genid); |
| 517 | } |
| 518 | |
| 519 | static inline void fnhe_genid_bump(struct net *net) |
| 520 | { |
| 521 | atomic_inc(&net->fnhe_genid); |
| 522 | } |
| 523 | |
Eric Dumazet | 9c1be193 | 2022-02-05 09:01:25 -0800 | [diff] [blame] | 524 | #ifdef CONFIG_NET |
| 525 | void net_ns_init(void); |
| 526 | #else |
| 527 | static inline void net_ns_init(void) {} |
| 528 | #endif |
| 529 | |
Eric W. Biederman | 5f256be | 2007-09-12 11:50:50 +0200 | [diff] [blame] | 530 | #endif /* __NET_NET_NAMESPACE_H */ |