xref: /openbmc/linux/kernel/bpf/bpf_local_storage.c (revision 08a7ce384e33e53e0732c500a8af67a73f8fceca)
1450af8d0SKP Singh // SPDX-License-Identifier: GPL-2.0
2450af8d0SKP Singh /* Copyright (c) 2019 Facebook  */
3450af8d0SKP Singh #include <linux/rculist.h>
4450af8d0SKP Singh #include <linux/list.h>
5450af8d0SKP Singh #include <linux/hash.h>
6450af8d0SKP Singh #include <linux/types.h>
7450af8d0SKP Singh #include <linux/spinlock.h>
8450af8d0SKP Singh #include <linux/bpf.h>
9450af8d0SKP Singh #include <linux/btf_ids.h>
10450af8d0SKP Singh #include <linux/bpf_local_storage.h>
11450af8d0SKP Singh #include <net/sock.h>
12450af8d0SKP Singh #include <uapi/linux/sock_diag.h>
13450af8d0SKP Singh #include <uapi/linux/btf.h>
140fe4b381SKP Singh #include <linux/rcupdate.h>
150fe4b381SKP Singh #include <linux/rcupdate_trace.h>
160fe4b381SKP Singh #include <linux/rcupdate_wait.h>
17450af8d0SKP Singh 
18450af8d0SKP Singh #define BPF_LOCAL_STORAGE_CREATE_FLAG_MASK (BPF_F_NO_PREALLOC | BPF_F_CLONE)
19450af8d0SKP Singh 
20450af8d0SKP Singh static struct bpf_local_storage_map_bucket *
21450af8d0SKP Singh select_bucket(struct bpf_local_storage_map *smap,
22450af8d0SKP Singh 	      struct bpf_local_storage_elem *selem)
23450af8d0SKP Singh {
24450af8d0SKP Singh 	return &smap->buckets[hash_ptr(selem, smap->bucket_log)];
25450af8d0SKP Singh }
26450af8d0SKP Singh 
27450af8d0SKP Singh static int mem_charge(struct bpf_local_storage_map *smap, void *owner, u32 size)
28450af8d0SKP Singh {
29450af8d0SKP Singh 	struct bpf_map *map = &smap->map;
30450af8d0SKP Singh 
31450af8d0SKP Singh 	if (!map->ops->map_local_storage_charge)
32450af8d0SKP Singh 		return 0;
33450af8d0SKP Singh 
34450af8d0SKP Singh 	return map->ops->map_local_storage_charge(smap, owner, size);
35450af8d0SKP Singh }
36450af8d0SKP Singh 
37450af8d0SKP Singh static void mem_uncharge(struct bpf_local_storage_map *smap, void *owner,
38450af8d0SKP Singh 			 u32 size)
39450af8d0SKP Singh {
40450af8d0SKP Singh 	struct bpf_map *map = &smap->map;
41450af8d0SKP Singh 
42450af8d0SKP Singh 	if (map->ops->map_local_storage_uncharge)
43450af8d0SKP Singh 		map->ops->map_local_storage_uncharge(smap, owner, size);
44450af8d0SKP Singh }
45450af8d0SKP Singh 
46450af8d0SKP Singh static struct bpf_local_storage __rcu **
47450af8d0SKP Singh owner_storage(struct bpf_local_storage_map *smap, void *owner)
48450af8d0SKP Singh {
49450af8d0SKP Singh 	struct bpf_map *map = &smap->map;
50450af8d0SKP Singh 
51450af8d0SKP Singh 	return map->ops->map_owner_storage_ptr(owner);
52450af8d0SKP Singh }
53450af8d0SKP Singh 
540a09a2f9SKumar Kartikeya Dwivedi static bool selem_linked_to_storage_lockless(const struct bpf_local_storage_elem *selem)
550a09a2f9SKumar Kartikeya Dwivedi {
560a09a2f9SKumar Kartikeya Dwivedi 	return !hlist_unhashed_lockless(&selem->snode);
570a09a2f9SKumar Kartikeya Dwivedi }
580a09a2f9SKumar Kartikeya Dwivedi 
59450af8d0SKP Singh static bool selem_linked_to_storage(const struct bpf_local_storage_elem *selem)
60450af8d0SKP Singh {
61450af8d0SKP Singh 	return !hlist_unhashed(&selem->snode);
62450af8d0SKP Singh }
63450af8d0SKP Singh 
640a09a2f9SKumar Kartikeya Dwivedi static bool selem_linked_to_map_lockless(const struct bpf_local_storage_elem *selem)
650a09a2f9SKumar Kartikeya Dwivedi {
660a09a2f9SKumar Kartikeya Dwivedi 	return !hlist_unhashed_lockless(&selem->map_node);
670a09a2f9SKumar Kartikeya Dwivedi }
680a09a2f9SKumar Kartikeya Dwivedi 
69450af8d0SKP Singh static bool selem_linked_to_map(const struct bpf_local_storage_elem *selem)
70450af8d0SKP Singh {
71450af8d0SKP Singh 	return !hlist_unhashed(&selem->map_node);
72450af8d0SKP Singh }
73450af8d0SKP Singh 
74450af8d0SKP Singh struct bpf_local_storage_elem *
75450af8d0SKP Singh bpf_selem_alloc(struct bpf_local_storage_map *smap, void *owner,
76b00fa38aSJoanne Koong 		void *value, bool charge_mem, gfp_t gfp_flags)
77450af8d0SKP Singh {
78450af8d0SKP Singh 	struct bpf_local_storage_elem *selem;
79450af8d0SKP Singh 
80450af8d0SKP Singh 	if (charge_mem && mem_charge(smap, owner, smap->elem_size))
81450af8d0SKP Singh 		return NULL;
82450af8d0SKP Singh 
83*08a7ce38SMartin KaFai Lau 	if (smap->bpf_ma) {
84*08a7ce38SMartin KaFai Lau 		migrate_disable();
85*08a7ce38SMartin KaFai Lau 		selem = bpf_mem_cache_alloc_flags(&smap->selem_ma, gfp_flags);
86*08a7ce38SMartin KaFai Lau 		migrate_enable();
87*08a7ce38SMartin KaFai Lau 		if (selem)
88*08a7ce38SMartin KaFai Lau 			/* Keep the original bpf_map_kzalloc behavior
89*08a7ce38SMartin KaFai Lau 			 * before started using the bpf_mem_cache_alloc.
90*08a7ce38SMartin KaFai Lau 			 *
91*08a7ce38SMartin KaFai Lau 			 * No need to use zero_map_value. The bpf_selem_free()
92*08a7ce38SMartin KaFai Lau 			 * only does bpf_mem_cache_free when there is
93*08a7ce38SMartin KaFai Lau 			 * no other bpf prog is using the selem.
94*08a7ce38SMartin KaFai Lau 			 */
95*08a7ce38SMartin KaFai Lau 			memset(SDATA(selem)->data, 0, smap->map.value_size);
96*08a7ce38SMartin KaFai Lau 	} else {
97e9aae8beSRoman Gushchin 		selem = bpf_map_kzalloc(&smap->map, smap->elem_size,
98b00fa38aSJoanne Koong 					gfp_flags | __GFP_NOWARN);
99*08a7ce38SMartin KaFai Lau 	}
100*08a7ce38SMartin KaFai Lau 
101450af8d0SKP Singh 	if (selem) {
102450af8d0SKP Singh 		if (value)
103836e49e1SXu Kuohai 			copy_map_value(&smap->map, SDATA(selem)->data, value);
1049db44fddSKumar Kartikeya Dwivedi 		/* No need to call check_and_init_map_value as memory is zero init */
105450af8d0SKP Singh 		return selem;
106450af8d0SKP Singh 	}
107450af8d0SKP Singh 
108450af8d0SKP Singh 	if (charge_mem)
109450af8d0SKP Singh 		mem_uncharge(smap, owner, smap->elem_size);
110450af8d0SKP Singh 
111450af8d0SKP Singh 	return NULL;
112450af8d0SKP Singh }
113450af8d0SKP Singh 
1144cbd23ccSMartin KaFai Lau static void bpf_local_storage_free_rcu(struct rcu_head *rcu)
1150fe4b381SKP Singh {
1160fe4b381SKP Singh 	struct bpf_local_storage *local_storage;
1170fe4b381SKP Singh 
1181288aaa2SMartin KaFai Lau 	local_storage = container_of(rcu, struct bpf_local_storage, rcu);
1191288aaa2SMartin KaFai Lau 	kfree(local_storage);
1201288aaa2SMartin KaFai Lau }
1211288aaa2SMartin KaFai Lau 
1221288aaa2SMartin KaFai Lau static void bpf_local_storage_free_trace_rcu(struct rcu_head *rcu)
1231288aaa2SMartin KaFai Lau {
124d39d1445SHou Tao 	/* If RCU Tasks Trace grace period implies RCU grace period, do
125d39d1445SHou Tao 	 * kfree(), else do kfree_rcu().
126d39d1445SHou Tao 	 */
127d39d1445SHou Tao 	if (rcu_trace_implies_rcu_gp())
1281288aaa2SMartin KaFai Lau 		bpf_local_storage_free_rcu(rcu);
129d39d1445SHou Tao 	else
1301288aaa2SMartin KaFai Lau 		call_rcu(rcu, bpf_local_storage_free_rcu);
1310fe4b381SKP Singh }
1320fe4b381SKP Singh 
1337e30a847SMartin KaFai Lau static void bpf_local_storage_free(struct bpf_local_storage *local_storage,
1347e30a847SMartin KaFai Lau 				   bool reuse_now)
1357e30a847SMartin KaFai Lau {
1367e30a847SMartin KaFai Lau 	if (!reuse_now)
1377e30a847SMartin KaFai Lau 		call_rcu_tasks_trace(&local_storage->rcu,
1387e30a847SMartin KaFai Lau 				     bpf_local_storage_free_trace_rcu);
1397e30a847SMartin KaFai Lau 	else
1407e30a847SMartin KaFai Lau 		call_rcu(&local_storage->rcu, bpf_local_storage_free_rcu);
1417e30a847SMartin KaFai Lau }
1427e30a847SMartin KaFai Lau 
143*08a7ce38SMartin KaFai Lau /* rcu tasks trace callback for bpf_ma == false */
144*08a7ce38SMartin KaFai Lau static void __bpf_selem_free_trace_rcu(struct rcu_head *rcu)
145*08a7ce38SMartin KaFai Lau {
146*08a7ce38SMartin KaFai Lau 	struct bpf_local_storage_elem *selem;
147*08a7ce38SMartin KaFai Lau 
148*08a7ce38SMartin KaFai Lau 	selem = container_of(rcu, struct bpf_local_storage_elem, rcu);
149*08a7ce38SMartin KaFai Lau 	if (rcu_trace_implies_rcu_gp())
150*08a7ce38SMartin KaFai Lau 		kfree(selem);
151*08a7ce38SMartin KaFai Lau 	else
152*08a7ce38SMartin KaFai Lau 		kfree_rcu(selem, rcu);
153*08a7ce38SMartin KaFai Lau }
154*08a7ce38SMartin KaFai Lau 
155*08a7ce38SMartin KaFai Lau /* Handle bpf_ma == false */
156*08a7ce38SMartin KaFai Lau static void __bpf_selem_free(struct bpf_local_storage_elem *selem,
157*08a7ce38SMartin KaFai Lau 			     bool vanilla_rcu)
158*08a7ce38SMartin KaFai Lau {
159*08a7ce38SMartin KaFai Lau 	if (vanilla_rcu)
160*08a7ce38SMartin KaFai Lau 		kfree_rcu(selem, rcu);
161*08a7ce38SMartin KaFai Lau 	else
162*08a7ce38SMartin KaFai Lau 		call_rcu_tasks_trace(&selem->rcu, __bpf_selem_free_trace_rcu);
163*08a7ce38SMartin KaFai Lau }
164*08a7ce38SMartin KaFai Lau 
165f8ccf30cSMartin KaFai Lau static void bpf_selem_free_rcu(struct rcu_head *rcu)
1660fe4b381SKP Singh {
1670fe4b381SKP Singh 	struct bpf_local_storage_elem *selem;
1680fe4b381SKP Singh 
1690fe4b381SKP Singh 	selem = container_of(rcu, struct bpf_local_storage_elem, rcu);
170*08a7ce38SMartin KaFai Lau 	bpf_mem_cache_raw_free(selem);
171f8ccf30cSMartin KaFai Lau }
172f8ccf30cSMartin KaFai Lau 
173f8ccf30cSMartin KaFai Lau static void bpf_selem_free_trace_rcu(struct rcu_head *rcu)
174f8ccf30cSMartin KaFai Lau {
175f8ccf30cSMartin KaFai Lau 	if (rcu_trace_implies_rcu_gp())
176f8ccf30cSMartin KaFai Lau 		bpf_selem_free_rcu(rcu);
177d39d1445SHou Tao 	else
178f8ccf30cSMartin KaFai Lau 		call_rcu(rcu, bpf_selem_free_rcu);
1790fe4b381SKP Singh }
1800fe4b381SKP Singh 
181c0d63f30SMartin KaFai Lau void bpf_selem_free(struct bpf_local_storage_elem *selem,
182c0d63f30SMartin KaFai Lau 		    struct bpf_local_storage_map *smap,
183c0d63f30SMartin KaFai Lau 		    bool reuse_now)
184c0d63f30SMartin KaFai Lau {
185c0d63f30SMartin KaFai Lau 	bpf_obj_free_fields(smap->map.record, SDATA(selem)->data);
186*08a7ce38SMartin KaFai Lau 
187*08a7ce38SMartin KaFai Lau 	if (!smap->bpf_ma) {
188*08a7ce38SMartin KaFai Lau 		__bpf_selem_free(selem, reuse_now);
189*08a7ce38SMartin KaFai Lau 		return;
190*08a7ce38SMartin KaFai Lau 	}
191*08a7ce38SMartin KaFai Lau 
192*08a7ce38SMartin KaFai Lau 	if (!reuse_now) {
193c0d63f30SMartin KaFai Lau 		call_rcu_tasks_trace(&selem->rcu, bpf_selem_free_trace_rcu);
194*08a7ce38SMartin KaFai Lau 	} else {
195*08a7ce38SMartin KaFai Lau 		/* Instead of using the vanilla call_rcu(),
196*08a7ce38SMartin KaFai Lau 		 * bpf_mem_cache_free will be able to reuse selem
197*08a7ce38SMartin KaFai Lau 		 * immediately.
198*08a7ce38SMartin KaFai Lau 		 */
199*08a7ce38SMartin KaFai Lau 		migrate_disable();
200*08a7ce38SMartin KaFai Lau 		bpf_mem_cache_free(&smap->selem_ma, selem);
201*08a7ce38SMartin KaFai Lau 		migrate_enable();
202*08a7ce38SMartin KaFai Lau 	}
203c0d63f30SMartin KaFai Lau }
204c0d63f30SMartin KaFai Lau 
205450af8d0SKP Singh /* local_storage->lock must be held and selem->local_storage == local_storage.
206450af8d0SKP Singh  * The caller must ensure selem->smap is still valid to be
207450af8d0SKP Singh  * dereferenced for its smap->elem_size and smap->cache_idx.
208450af8d0SKP Singh  */
209c83597faSYonghong Song static bool bpf_selem_unlink_storage_nolock(struct bpf_local_storage *local_storage,
210450af8d0SKP Singh 					    struct bpf_local_storage_elem *selem,
211a47eabf2SMartin KaFai Lau 					    bool uncharge_mem, bool reuse_now)
212450af8d0SKP Singh {
213450af8d0SKP Singh 	struct bpf_local_storage_map *smap;
214450af8d0SKP Singh 	bool free_local_storage;
215450af8d0SKP Singh 	void *owner;
216450af8d0SKP Singh 
2170fe4b381SKP Singh 	smap = rcu_dereference_check(SDATA(selem)->smap, bpf_rcu_lock_held());
218450af8d0SKP Singh 	owner = local_storage->owner;
219450af8d0SKP Singh 
220450af8d0SKP Singh 	/* All uncharging on the owner must be done first.
221450af8d0SKP Singh 	 * The owner may be freed once the last selem is unlinked
222450af8d0SKP Singh 	 * from local_storage.
223450af8d0SKP Singh 	 */
224450af8d0SKP Singh 	if (uncharge_mem)
225450af8d0SKP Singh 		mem_uncharge(smap, owner, smap->elem_size);
226450af8d0SKP Singh 
227450af8d0SKP Singh 	free_local_storage = hlist_is_singular_node(&selem->snode,
228450af8d0SKP Singh 						    &local_storage->list);
229450af8d0SKP Singh 	if (free_local_storage) {
230450af8d0SKP Singh 		mem_uncharge(smap, owner, sizeof(struct bpf_local_storage));
231450af8d0SKP Singh 		local_storage->owner = NULL;
232450af8d0SKP Singh 
233450af8d0SKP Singh 		/* After this RCU_INIT, owner may be freed and cannot be used */
234450af8d0SKP Singh 		RCU_INIT_POINTER(*owner_storage(smap, owner), NULL);
235450af8d0SKP Singh 
236450af8d0SKP Singh 		/* local_storage is not freed now.  local_storage->lock is
237450af8d0SKP Singh 		 * still held and raw_spin_unlock_bh(&local_storage->lock)
238450af8d0SKP Singh 		 * will be done by the caller.
239450af8d0SKP Singh 		 *
240450af8d0SKP Singh 		 * Although the unlock will be done under
241c561d110STom Rix 		 * rcu_read_lock(),  it is more intuitive to
2420fe4b381SKP Singh 		 * read if the freeing of the storage is done
243450af8d0SKP Singh 		 * after the raw_spin_unlock_bh(&local_storage->lock).
244450af8d0SKP Singh 		 *
245450af8d0SKP Singh 		 * Hence, a "bool free_local_storage" is returned
2460fe4b381SKP Singh 		 * to the caller which then calls then frees the storage after
2470fe4b381SKP Singh 		 * all the RCU grace periods have expired.
248450af8d0SKP Singh 		 */
249450af8d0SKP Singh 	}
250450af8d0SKP Singh 	hlist_del_init_rcu(&selem->snode);
251450af8d0SKP Singh 	if (rcu_access_pointer(local_storage->cache[smap->cache_idx]) ==
252450af8d0SKP Singh 	    SDATA(selem))
253450af8d0SKP Singh 		RCU_INIT_POINTER(local_storage->cache[smap->cache_idx], NULL);
254450af8d0SKP Singh 
255c0d63f30SMartin KaFai Lau 	bpf_selem_free(selem, smap, reuse_now);
256dcf456c9SKP Singh 
257fc6652aaSMartin KaFai Lau 	if (rcu_access_pointer(local_storage->smap) == smap)
258fc6652aaSMartin KaFai Lau 		RCU_INIT_POINTER(local_storage->smap, NULL);
259fc6652aaSMartin KaFai Lau 
260450af8d0SKP Singh 	return free_local_storage;
261450af8d0SKP Singh }
262450af8d0SKP Singh 
263121f31f3SMartin KaFai Lau static void bpf_selem_unlink_storage(struct bpf_local_storage_elem *selem,
264a47eabf2SMartin KaFai Lau 				     bool reuse_now)
265450af8d0SKP Singh {
266450af8d0SKP Singh 	struct bpf_local_storage *local_storage;
267450af8d0SKP Singh 	bool free_local_storage = false;
268a10787e6SSong Liu 	unsigned long flags;
269450af8d0SKP Singh 
2700a09a2f9SKumar Kartikeya Dwivedi 	if (unlikely(!selem_linked_to_storage_lockless(selem)))
271450af8d0SKP Singh 		/* selem has already been unlinked from sk */
272450af8d0SKP Singh 		return;
273450af8d0SKP Singh 
2740fe4b381SKP Singh 	local_storage = rcu_dereference_check(selem->local_storage,
2750fe4b381SKP Singh 					      bpf_rcu_lock_held());
276a10787e6SSong Liu 	raw_spin_lock_irqsave(&local_storage->lock, flags);
277450af8d0SKP Singh 	if (likely(selem_linked_to_storage(selem)))
278450af8d0SKP Singh 		free_local_storage = bpf_selem_unlink_storage_nolock(
279a47eabf2SMartin KaFai Lau 			local_storage, selem, true, reuse_now);
280a10787e6SSong Liu 	raw_spin_unlock_irqrestore(&local_storage->lock, flags);
281450af8d0SKP Singh 
2827e30a847SMartin KaFai Lau 	if (free_local_storage)
2837e30a847SMartin KaFai Lau 		bpf_local_storage_free(local_storage, reuse_now);
284450af8d0SKP Singh }
285450af8d0SKP Singh 
286450af8d0SKP Singh void bpf_selem_link_storage_nolock(struct bpf_local_storage *local_storage,
287450af8d0SKP Singh 				   struct bpf_local_storage_elem *selem)
288450af8d0SKP Singh {
289450af8d0SKP Singh 	RCU_INIT_POINTER(selem->local_storage, local_storage);
29070b97111SMartin KaFai Lau 	hlist_add_head_rcu(&selem->snode, &local_storage->list);
291450af8d0SKP Singh }
292450af8d0SKP Singh 
2934cbd23ccSMartin KaFai Lau static void bpf_selem_unlink_map(struct bpf_local_storage_elem *selem)
294450af8d0SKP Singh {
295450af8d0SKP Singh 	struct bpf_local_storage_map *smap;
296450af8d0SKP Singh 	struct bpf_local_storage_map_bucket *b;
297a10787e6SSong Liu 	unsigned long flags;
298450af8d0SKP Singh 
2990a09a2f9SKumar Kartikeya Dwivedi 	if (unlikely(!selem_linked_to_map_lockless(selem)))
300450af8d0SKP Singh 		/* selem has already be unlinked from smap */
301450af8d0SKP Singh 		return;
302450af8d0SKP Singh 
3030fe4b381SKP Singh 	smap = rcu_dereference_check(SDATA(selem)->smap, bpf_rcu_lock_held());
304450af8d0SKP Singh 	b = select_bucket(smap, selem);
305a10787e6SSong Liu 	raw_spin_lock_irqsave(&b->lock, flags);
306450af8d0SKP Singh 	if (likely(selem_linked_to_map(selem)))
307450af8d0SKP Singh 		hlist_del_init_rcu(&selem->map_node);
308a10787e6SSong Liu 	raw_spin_unlock_irqrestore(&b->lock, flags);
309450af8d0SKP Singh }
310450af8d0SKP Singh 
311450af8d0SKP Singh void bpf_selem_link_map(struct bpf_local_storage_map *smap,
312450af8d0SKP Singh 			struct bpf_local_storage_elem *selem)
313450af8d0SKP Singh {
314450af8d0SKP Singh 	struct bpf_local_storage_map_bucket *b = select_bucket(smap, selem);
315a10787e6SSong Liu 	unsigned long flags;
316450af8d0SKP Singh 
317a10787e6SSong Liu 	raw_spin_lock_irqsave(&b->lock, flags);
318450af8d0SKP Singh 	RCU_INIT_POINTER(SDATA(selem)->smap, smap);
319450af8d0SKP Singh 	hlist_add_head_rcu(&selem->map_node, &b->list);
320a10787e6SSong Liu 	raw_spin_unlock_irqrestore(&b->lock, flags);
321450af8d0SKP Singh }
322450af8d0SKP Singh 
323a47eabf2SMartin KaFai Lau void bpf_selem_unlink(struct bpf_local_storage_elem *selem, bool reuse_now)
324450af8d0SKP Singh {
325450af8d0SKP Singh 	/* Always unlink from map before unlinking from local_storage
326450af8d0SKP Singh 	 * because selem will be freed after successfully unlinked from
327450af8d0SKP Singh 	 * the local_storage.
328450af8d0SKP Singh 	 */
329450af8d0SKP Singh 	bpf_selem_unlink_map(selem);
330a47eabf2SMartin KaFai Lau 	bpf_selem_unlink_storage(selem, reuse_now);
331450af8d0SKP Singh }
332450af8d0SKP Singh 
333e8b02296SMartin KaFai Lau /* If cacheit_lockit is false, this lookup function is lockless */
334450af8d0SKP Singh struct bpf_local_storage_data *
335450af8d0SKP Singh bpf_local_storage_lookup(struct bpf_local_storage *local_storage,
336450af8d0SKP Singh 			 struct bpf_local_storage_map *smap,
337450af8d0SKP Singh 			 bool cacheit_lockit)
338450af8d0SKP Singh {
339450af8d0SKP Singh 	struct bpf_local_storage_data *sdata;
340450af8d0SKP Singh 	struct bpf_local_storage_elem *selem;
341450af8d0SKP Singh 
342450af8d0SKP Singh 	/* Fast path (cache hit) */
3430fe4b381SKP Singh 	sdata = rcu_dereference_check(local_storage->cache[smap->cache_idx],
3440fe4b381SKP Singh 				      bpf_rcu_lock_held());
345450af8d0SKP Singh 	if (sdata && rcu_access_pointer(sdata->smap) == smap)
346450af8d0SKP Singh 		return sdata;
347450af8d0SKP Singh 
348450af8d0SKP Singh 	/* Slow path (cache miss) */
3490fe4b381SKP Singh 	hlist_for_each_entry_rcu(selem, &local_storage->list, snode,
3500fe4b381SKP Singh 				  rcu_read_lock_trace_held())
351450af8d0SKP Singh 		if (rcu_access_pointer(SDATA(selem)->smap) == smap)
352450af8d0SKP Singh 			break;
353450af8d0SKP Singh 
354450af8d0SKP Singh 	if (!selem)
355450af8d0SKP Singh 		return NULL;
356450af8d0SKP Singh 
357450af8d0SKP Singh 	sdata = SDATA(selem);
358450af8d0SKP Singh 	if (cacheit_lockit) {
359a10787e6SSong Liu 		unsigned long flags;
360a10787e6SSong Liu 
361450af8d0SKP Singh 		/* spinlock is needed to avoid racing with the
362450af8d0SKP Singh 		 * parallel delete.  Otherwise, publishing an already
363450af8d0SKP Singh 		 * deleted sdata to the cache will become a use-after-free
364450af8d0SKP Singh 		 * problem in the next bpf_local_storage_lookup().
365450af8d0SKP Singh 		 */
366a10787e6SSong Liu 		raw_spin_lock_irqsave(&local_storage->lock, flags);
367450af8d0SKP Singh 		if (selem_linked_to_storage(selem))
368450af8d0SKP Singh 			rcu_assign_pointer(local_storage->cache[smap->cache_idx],
369450af8d0SKP Singh 					   sdata);
370a10787e6SSong Liu 		raw_spin_unlock_irqrestore(&local_storage->lock, flags);
371450af8d0SKP Singh 	}
372450af8d0SKP Singh 
373450af8d0SKP Singh 	return sdata;
374450af8d0SKP Singh }
375450af8d0SKP Singh 
376450af8d0SKP Singh static int check_flags(const struct bpf_local_storage_data *old_sdata,
377450af8d0SKP Singh 		       u64 map_flags)
378450af8d0SKP Singh {
379450af8d0SKP Singh 	if (old_sdata && (map_flags & ~BPF_F_LOCK) == BPF_NOEXIST)
380450af8d0SKP Singh 		/* elem already exists */
381450af8d0SKP Singh 		return -EEXIST;
382450af8d0SKP Singh 
383450af8d0SKP Singh 	if (!old_sdata && (map_flags & ~BPF_F_LOCK) == BPF_EXIST)
384450af8d0SKP Singh 		/* elem doesn't exist, cannot update it */
385450af8d0SKP Singh 		return -ENOENT;
386450af8d0SKP Singh 
387450af8d0SKP Singh 	return 0;
388450af8d0SKP Singh }
389450af8d0SKP Singh 
390450af8d0SKP Singh int bpf_local_storage_alloc(void *owner,
391450af8d0SKP Singh 			    struct bpf_local_storage_map *smap,
392b00fa38aSJoanne Koong 			    struct bpf_local_storage_elem *first_selem,
393b00fa38aSJoanne Koong 			    gfp_t gfp_flags)
394450af8d0SKP Singh {
395450af8d0SKP Singh 	struct bpf_local_storage *prev_storage, *storage;
396450af8d0SKP Singh 	struct bpf_local_storage **owner_storage_ptr;
397450af8d0SKP Singh 	int err;
398450af8d0SKP Singh 
399450af8d0SKP Singh 	err = mem_charge(smap, owner, sizeof(*storage));
400450af8d0SKP Singh 	if (err)
401450af8d0SKP Singh 		return err;
402450af8d0SKP Singh 
403e9aae8beSRoman Gushchin 	storage = bpf_map_kzalloc(&smap->map, sizeof(*storage),
404b00fa38aSJoanne Koong 				  gfp_flags | __GFP_NOWARN);
405450af8d0SKP Singh 	if (!storage) {
406450af8d0SKP Singh 		err = -ENOMEM;
407450af8d0SKP Singh 		goto uncharge;
408450af8d0SKP Singh 	}
409450af8d0SKP Singh 
410fc6652aaSMartin KaFai Lau 	RCU_INIT_POINTER(storage->smap, smap);
411450af8d0SKP Singh 	INIT_HLIST_HEAD(&storage->list);
412450af8d0SKP Singh 	raw_spin_lock_init(&storage->lock);
413450af8d0SKP Singh 	storage->owner = owner;
414450af8d0SKP Singh 
415450af8d0SKP Singh 	bpf_selem_link_storage_nolock(storage, first_selem);
416450af8d0SKP Singh 	bpf_selem_link_map(smap, first_selem);
417450af8d0SKP Singh 
418450af8d0SKP Singh 	owner_storage_ptr =
419450af8d0SKP Singh 		(struct bpf_local_storage **)owner_storage(smap, owner);
420450af8d0SKP Singh 	/* Publish storage to the owner.
421450af8d0SKP Singh 	 * Instead of using any lock of the kernel object (i.e. owner),
422450af8d0SKP Singh 	 * cmpxchg will work with any kernel object regardless what
423450af8d0SKP Singh 	 * the running context is, bh, irq...etc.
424450af8d0SKP Singh 	 *
425450af8d0SKP Singh 	 * From now on, the owner->storage pointer (e.g. sk->sk_bpf_storage)
426450af8d0SKP Singh 	 * is protected by the storage->lock.  Hence, when freeing
427450af8d0SKP Singh 	 * the owner->storage, the storage->lock must be held before
428450af8d0SKP Singh 	 * setting owner->storage ptr to NULL.
429450af8d0SKP Singh 	 */
430450af8d0SKP Singh 	prev_storage = cmpxchg(owner_storage_ptr, NULL, storage);
431450af8d0SKP Singh 	if (unlikely(prev_storage)) {
432450af8d0SKP Singh 		bpf_selem_unlink_map(first_selem);
433450af8d0SKP Singh 		err = -EAGAIN;
434450af8d0SKP Singh 		goto uncharge;
435450af8d0SKP Singh 
436450af8d0SKP Singh 		/* Note that even first_selem was linked to smap's
437450af8d0SKP Singh 		 * bucket->list, first_selem can be freed immediately
438450af8d0SKP Singh 		 * (instead of kfree_rcu) because
439450af8d0SKP Singh 		 * bpf_local_storage_map_free() does a
4400fe4b381SKP Singh 		 * synchronize_rcu_mult (waiting for both sleepable and
4410fe4b381SKP Singh 		 * normal programs) before walking the bucket->list.
442450af8d0SKP Singh 		 * Hence, no one is accessing selem from the
443450af8d0SKP Singh 		 * bucket->list under rcu_read_lock().
444450af8d0SKP Singh 		 */
445450af8d0SKP Singh 	}
446450af8d0SKP Singh 
447450af8d0SKP Singh 	return 0;
448450af8d0SKP Singh 
449450af8d0SKP Singh uncharge:
4507e30a847SMartin KaFai Lau 	bpf_local_storage_free(storage, true);
451450af8d0SKP Singh 	mem_uncharge(smap, owner, sizeof(*storage));
452450af8d0SKP Singh 	return err;
453450af8d0SKP Singh }
454450af8d0SKP Singh 
455450af8d0SKP Singh /* sk cannot be going away because it is linking new elem
456450af8d0SKP Singh  * to sk->sk_bpf_storage. (i.e. sk->sk_refcnt cannot be 0).
457450af8d0SKP Singh  * Otherwise, it will become a leak (and other memory issues
458450af8d0SKP Singh  * during map destruction).
459450af8d0SKP Singh  */
460450af8d0SKP Singh struct bpf_local_storage_data *
461450af8d0SKP Singh bpf_local_storage_update(void *owner, struct bpf_local_storage_map *smap,
462b00fa38aSJoanne Koong 			 void *value, u64 map_flags, gfp_t gfp_flags)
463450af8d0SKP Singh {
464450af8d0SKP Singh 	struct bpf_local_storage_data *old_sdata = NULL;
465b00fa38aSJoanne Koong 	struct bpf_local_storage_elem *selem = NULL;
466450af8d0SKP Singh 	struct bpf_local_storage *local_storage;
467a10787e6SSong Liu 	unsigned long flags;
468450af8d0SKP Singh 	int err;
469450af8d0SKP Singh 
470450af8d0SKP Singh 	/* BPF_EXIST and BPF_NOEXIST cannot be both set */
471450af8d0SKP Singh 	if (unlikely((map_flags & ~BPF_F_LOCK) > BPF_EXIST) ||
472450af8d0SKP Singh 	    /* BPF_F_LOCK can only be used in a value with spin_lock */
473450af8d0SKP Singh 	    unlikely((map_flags & BPF_F_LOCK) &&
474db559117SKumar Kartikeya Dwivedi 		     !btf_record_has_field(smap->map.record, BPF_SPIN_LOCK)))
475450af8d0SKP Singh 		return ERR_PTR(-EINVAL);
476450af8d0SKP Singh 
477b00fa38aSJoanne Koong 	if (gfp_flags == GFP_KERNEL && (map_flags & ~BPF_F_LOCK) != BPF_NOEXIST)
478b00fa38aSJoanne Koong 		return ERR_PTR(-EINVAL);
479b00fa38aSJoanne Koong 
4800fe4b381SKP Singh 	local_storage = rcu_dereference_check(*owner_storage(smap, owner),
4810fe4b381SKP Singh 					      bpf_rcu_lock_held());
482450af8d0SKP Singh 	if (!local_storage || hlist_empty(&local_storage->list)) {
483450af8d0SKP Singh 		/* Very first elem for the owner */
484450af8d0SKP Singh 		err = check_flags(NULL, map_flags);
485450af8d0SKP Singh 		if (err)
486450af8d0SKP Singh 			return ERR_PTR(err);
487450af8d0SKP Singh 
488b00fa38aSJoanne Koong 		selem = bpf_selem_alloc(smap, owner, value, true, gfp_flags);
489450af8d0SKP Singh 		if (!selem)
490450af8d0SKP Singh 			return ERR_PTR(-ENOMEM);
491450af8d0SKP Singh 
492b00fa38aSJoanne Koong 		err = bpf_local_storage_alloc(owner, smap, selem, gfp_flags);
493450af8d0SKP Singh 		if (err) {
494c0d63f30SMartin KaFai Lau 			bpf_selem_free(selem, smap, true);
495450af8d0SKP Singh 			mem_uncharge(smap, owner, smap->elem_size);
496450af8d0SKP Singh 			return ERR_PTR(err);
497450af8d0SKP Singh 		}
498450af8d0SKP Singh 
499450af8d0SKP Singh 		return SDATA(selem);
500450af8d0SKP Singh 	}
501450af8d0SKP Singh 
502450af8d0SKP Singh 	if ((map_flags & BPF_F_LOCK) && !(map_flags & BPF_NOEXIST)) {
503450af8d0SKP Singh 		/* Hoping to find an old_sdata to do inline update
504450af8d0SKP Singh 		 * such that it can avoid taking the local_storage->lock
505450af8d0SKP Singh 		 * and changing the lists.
506450af8d0SKP Singh 		 */
507450af8d0SKP Singh 		old_sdata =
508450af8d0SKP Singh 			bpf_local_storage_lookup(local_storage, smap, false);
509450af8d0SKP Singh 		err = check_flags(old_sdata, map_flags);
510450af8d0SKP Singh 		if (err)
511450af8d0SKP Singh 			return ERR_PTR(err);
5120a09a2f9SKumar Kartikeya Dwivedi 		if (old_sdata && selem_linked_to_storage_lockless(SELEM(old_sdata))) {
513450af8d0SKP Singh 			copy_map_value_locked(&smap->map, old_sdata->data,
514450af8d0SKP Singh 					      value, false);
515450af8d0SKP Singh 			return old_sdata;
516450af8d0SKP Singh 		}
517450af8d0SKP Singh 	}
518450af8d0SKP Singh 
519b00fa38aSJoanne Koong 	if (gfp_flags == GFP_KERNEL) {
520b00fa38aSJoanne Koong 		selem = bpf_selem_alloc(smap, owner, value, true, gfp_flags);
521b00fa38aSJoanne Koong 		if (!selem)
522b00fa38aSJoanne Koong 			return ERR_PTR(-ENOMEM);
523b00fa38aSJoanne Koong 	}
524b00fa38aSJoanne Koong 
525a10787e6SSong Liu 	raw_spin_lock_irqsave(&local_storage->lock, flags);
526450af8d0SKP Singh 
527450af8d0SKP Singh 	/* Recheck local_storage->list under local_storage->lock */
528450af8d0SKP Singh 	if (unlikely(hlist_empty(&local_storage->list))) {
529450af8d0SKP Singh 		/* A parallel del is happening and local_storage is going
530450af8d0SKP Singh 		 * away.  It has just been checked before, so very
531450af8d0SKP Singh 		 * unlikely.  Return instead of retry to keep things
532450af8d0SKP Singh 		 * simple.
533450af8d0SKP Singh 		 */
534450af8d0SKP Singh 		err = -EAGAIN;
535450af8d0SKP Singh 		goto unlock_err;
536450af8d0SKP Singh 	}
537450af8d0SKP Singh 
538450af8d0SKP Singh 	old_sdata = bpf_local_storage_lookup(local_storage, smap, false);
539450af8d0SKP Singh 	err = check_flags(old_sdata, map_flags);
540450af8d0SKP Singh 	if (err)
541450af8d0SKP Singh 		goto unlock_err;
542450af8d0SKP Singh 
543450af8d0SKP Singh 	if (old_sdata && (map_flags & BPF_F_LOCK)) {
544450af8d0SKP Singh 		copy_map_value_locked(&smap->map, old_sdata->data, value,
545450af8d0SKP Singh 				      false);
546450af8d0SKP Singh 		selem = SELEM(old_sdata);
547450af8d0SKP Singh 		goto unlock;
548450af8d0SKP Singh 	}
549450af8d0SKP Singh 
550b00fa38aSJoanne Koong 	if (gfp_flags != GFP_KERNEL) {
551450af8d0SKP Singh 		/* local_storage->lock is held.  Hence, we are sure
552450af8d0SKP Singh 		 * we can unlink and uncharge the old_sdata successfully
553450af8d0SKP Singh 		 * later.  Hence, instead of charging the new selem now
554450af8d0SKP Singh 		 * and then uncharge the old selem later (which may cause
555450af8d0SKP Singh 		 * a potential but unnecessary charge failure),  avoid taking
556450af8d0SKP Singh 		 * a charge at all here (the "!old_sdata" check) and the
557450af8d0SKP Singh 		 * old_sdata will not be uncharged later during
558450af8d0SKP Singh 		 * bpf_selem_unlink_storage_nolock().
559450af8d0SKP Singh 		 */
560b00fa38aSJoanne Koong 		selem = bpf_selem_alloc(smap, owner, value, !old_sdata, gfp_flags);
561450af8d0SKP Singh 		if (!selem) {
562450af8d0SKP Singh 			err = -ENOMEM;
563450af8d0SKP Singh 			goto unlock_err;
564450af8d0SKP Singh 		}
565b00fa38aSJoanne Koong 	}
566450af8d0SKP Singh 
567450af8d0SKP Singh 	/* First, link the new selem to the map */
568450af8d0SKP Singh 	bpf_selem_link_map(smap, selem);
569450af8d0SKP Singh 
570450af8d0SKP Singh 	/* Second, link (and publish) the new selem to local_storage */
571450af8d0SKP Singh 	bpf_selem_link_storage_nolock(local_storage, selem);
572450af8d0SKP Singh 
573450af8d0SKP Singh 	/* Third, remove old selem, SELEM(old_sdata) */
574450af8d0SKP Singh 	if (old_sdata) {
575450af8d0SKP Singh 		bpf_selem_unlink_map(SELEM(old_sdata));
576450af8d0SKP Singh 		bpf_selem_unlink_storage_nolock(local_storage, SELEM(old_sdata),
577a47eabf2SMartin KaFai Lau 						false, false);
578450af8d0SKP Singh 	}
579450af8d0SKP Singh 
580450af8d0SKP Singh unlock:
581a10787e6SSong Liu 	raw_spin_unlock_irqrestore(&local_storage->lock, flags);
582450af8d0SKP Singh 	return SDATA(selem);
583450af8d0SKP Singh 
584450af8d0SKP Singh unlock_err:
585a10787e6SSong Liu 	raw_spin_unlock_irqrestore(&local_storage->lock, flags);
586b00fa38aSJoanne Koong 	if (selem) {
587b00fa38aSJoanne Koong 		mem_uncharge(smap, owner, smap->elem_size);
588c0d63f30SMartin KaFai Lau 		bpf_selem_free(selem, smap, true);
589b00fa38aSJoanne Koong 	}
590450af8d0SKP Singh 	return ERR_PTR(err);
591450af8d0SKP Singh }
592450af8d0SKP Singh 
593c83597faSYonghong Song static u16 bpf_local_storage_cache_idx_get(struct bpf_local_storage_cache *cache)
594450af8d0SKP Singh {
595450af8d0SKP Singh 	u64 min_usage = U64_MAX;
596450af8d0SKP Singh 	u16 i, res = 0;
597450af8d0SKP Singh 
598450af8d0SKP Singh 	spin_lock(&cache->idx_lock);
599450af8d0SKP Singh 
600450af8d0SKP Singh 	for (i = 0; i < BPF_LOCAL_STORAGE_CACHE_SIZE; i++) {
601450af8d0SKP Singh 		if (cache->idx_usage_counts[i] < min_usage) {
602450af8d0SKP Singh 			min_usage = cache->idx_usage_counts[i];
603450af8d0SKP Singh 			res = i;
604450af8d0SKP Singh 
605450af8d0SKP Singh 			/* Found a free cache_idx */
606450af8d0SKP Singh 			if (!min_usage)
607450af8d0SKP Singh 				break;
608450af8d0SKP Singh 		}
609450af8d0SKP Singh 	}
610450af8d0SKP Singh 	cache->idx_usage_counts[res]++;
611450af8d0SKP Singh 
612450af8d0SKP Singh 	spin_unlock(&cache->idx_lock);
613450af8d0SKP Singh 
614450af8d0SKP Singh 	return res;
615450af8d0SKP Singh }
616450af8d0SKP Singh 
617c83597faSYonghong Song static void bpf_local_storage_cache_idx_free(struct bpf_local_storage_cache *cache,
618450af8d0SKP Singh 					     u16 idx)
619450af8d0SKP Singh {
620450af8d0SKP Singh 	spin_lock(&cache->idx_lock);
621450af8d0SKP Singh 	cache->idx_usage_counts[idx]--;
622450af8d0SKP Singh 	spin_unlock(&cache->idx_lock);
623450af8d0SKP Singh }
624450af8d0SKP Singh 
625c83597faSYonghong Song int bpf_local_storage_map_alloc_check(union bpf_attr *attr)
626c83597faSYonghong Song {
627c83597faSYonghong Song 	if (attr->map_flags & ~BPF_LOCAL_STORAGE_CREATE_FLAG_MASK ||
628c83597faSYonghong Song 	    !(attr->map_flags & BPF_F_NO_PREALLOC) ||
629c83597faSYonghong Song 	    attr->max_entries ||
630c83597faSYonghong Song 	    attr->key_size != sizeof(int) || !attr->value_size ||
631c83597faSYonghong Song 	    /* Enforce BTF for userspace sk dumping */
632c83597faSYonghong Song 	    !attr->btf_key_type_id || !attr->btf_value_type_id)
633c83597faSYonghong Song 		return -EINVAL;
634c83597faSYonghong Song 
635c83597faSYonghong Song 	if (!bpf_capable())
636c83597faSYonghong Song 		return -EPERM;
637c83597faSYonghong Song 
638c83597faSYonghong Song 	if (attr->value_size > BPF_LOCAL_STORAGE_MAX_VALUE_SIZE)
639c83597faSYonghong Song 		return -E2BIG;
640c83597faSYonghong Song 
641c83597faSYonghong Song 	return 0;
642c83597faSYonghong Song }
643c83597faSYonghong Song 
644c83597faSYonghong Song int bpf_local_storage_map_check_btf(const struct bpf_map *map,
645c83597faSYonghong Song 				    const struct btf *btf,
646c83597faSYonghong Song 				    const struct btf_type *key_type,
647c83597faSYonghong Song 				    const struct btf_type *value_type)
648c83597faSYonghong Song {
649c83597faSYonghong Song 	u32 int_data;
650c83597faSYonghong Song 
651c83597faSYonghong Song 	if (BTF_INFO_KIND(key_type->info) != BTF_KIND_INT)
652c83597faSYonghong Song 		return -EINVAL;
653c83597faSYonghong Song 
654c83597faSYonghong Song 	int_data = *(u32 *)(key_type + 1);
655c83597faSYonghong Song 	if (BTF_INT_BITS(int_data) != 32 || BTF_INT_OFFSET(int_data))
656c83597faSYonghong Song 		return -EINVAL;
657c83597faSYonghong Song 
658c83597faSYonghong Song 	return 0;
659c83597faSYonghong Song }
660c83597faSYonghong Song 
6612ffcb6fcSMartin KaFai Lau void bpf_local_storage_destroy(struct bpf_local_storage *local_storage)
662450af8d0SKP Singh {
663450af8d0SKP Singh 	struct bpf_local_storage_elem *selem;
664c83597faSYonghong Song 	bool free_storage = false;
665c83597faSYonghong Song 	struct hlist_node *n;
6662ffcb6fcSMartin KaFai Lau 	unsigned long flags;
667c83597faSYonghong Song 
668c83597faSYonghong Song 	/* Neither the bpf_prog nor the bpf_map's syscall
669c83597faSYonghong Song 	 * could be modifying the local_storage->list now.
670c83597faSYonghong Song 	 * Thus, no elem can be added to or deleted from the
671c83597faSYonghong Song 	 * local_storage->list by the bpf_prog or by the bpf_map's syscall.
672c83597faSYonghong Song 	 *
673c83597faSYonghong Song 	 * It is racing with bpf_local_storage_map_free() alone
674c83597faSYonghong Song 	 * when unlinking elem from the local_storage->list and
675c83597faSYonghong Song 	 * the map's bucket->list.
676c83597faSYonghong Song 	 */
6772ffcb6fcSMartin KaFai Lau 	raw_spin_lock_irqsave(&local_storage->lock, flags);
678c83597faSYonghong Song 	hlist_for_each_entry_safe(selem, n, &local_storage->list, snode) {
679c83597faSYonghong Song 		/* Always unlink from map before unlinking from
680c83597faSYonghong Song 		 * local_storage.
681c83597faSYonghong Song 		 */
682c83597faSYonghong Song 		bpf_selem_unlink_map(selem);
683c83597faSYonghong Song 		/* If local_storage list has only one element, the
684c83597faSYonghong Song 		 * bpf_selem_unlink_storage_nolock() will return true.
685c83597faSYonghong Song 		 * Otherwise, it will return false. The current loop iteration
686c83597faSYonghong Song 		 * intends to remove all local storage. So the last iteration
687c83597faSYonghong Song 		 * of the loop will set the free_cgroup_storage to true.
688c83597faSYonghong Song 		 */
689c83597faSYonghong Song 		free_storage = bpf_selem_unlink_storage_nolock(
690a47eabf2SMartin KaFai Lau 			local_storage, selem, false, true);
691c83597faSYonghong Song 	}
6922ffcb6fcSMartin KaFai Lau 	raw_spin_unlock_irqrestore(&local_storage->lock, flags);
693c83597faSYonghong Song 
6942ffcb6fcSMartin KaFai Lau 	if (free_storage)
6957e30a847SMartin KaFai Lau 		bpf_local_storage_free(local_storage, true);
696c83597faSYonghong Song }
697c83597faSYonghong Song 
6987490b7f1SYafang Shao u64 bpf_local_storage_map_mem_usage(const struct bpf_map *map)
6997490b7f1SYafang Shao {
7007490b7f1SYafang Shao 	struct bpf_local_storage_map *smap = (struct bpf_local_storage_map *)map;
7017490b7f1SYafang Shao 	u64 usage = sizeof(*smap);
7027490b7f1SYafang Shao 
7037490b7f1SYafang Shao 	/* The dynamically callocated selems are not counted currently. */
7047490b7f1SYafang Shao 	usage += sizeof(*smap->buckets) * (1ULL << smap->bucket_log);
7057490b7f1SYafang Shao 	return usage;
7067490b7f1SYafang Shao }
7077490b7f1SYafang Shao 
708*08a7ce38SMartin KaFai Lau /* When bpf_ma == true, the bpf_mem_alloc is used to allocate and free memory.
709*08a7ce38SMartin KaFai Lau  * A deadlock free allocator is useful for storage that the bpf prog can easily
710*08a7ce38SMartin KaFai Lau  * get a hold of the owner PTR_TO_BTF_ID in any context. eg. bpf_get_current_task_btf.
711*08a7ce38SMartin KaFai Lau  * The task and cgroup storage fall into this case. The bpf_mem_alloc reuses
712*08a7ce38SMartin KaFai Lau  * memory immediately. To be reuse-immediate safe, the owner destruction
713*08a7ce38SMartin KaFai Lau  * code path needs to go through a rcu grace period before calling
714*08a7ce38SMartin KaFai Lau  * bpf_local_storage_destroy().
715*08a7ce38SMartin KaFai Lau  *
716*08a7ce38SMartin KaFai Lau  * When bpf_ma == false, the kmalloc and kfree are used.
717*08a7ce38SMartin KaFai Lau  */
718c83597faSYonghong Song struct bpf_map *
719c83597faSYonghong Song bpf_local_storage_map_alloc(union bpf_attr *attr,
720*08a7ce38SMartin KaFai Lau 			    struct bpf_local_storage_cache *cache,
721*08a7ce38SMartin KaFai Lau 			    bool bpf_ma)
722c83597faSYonghong Song {
723c83597faSYonghong Song 	struct bpf_local_storage_map *smap;
72462827d61SMartin KaFai Lau 	unsigned int i;
72562827d61SMartin KaFai Lau 	u32 nbuckets;
726*08a7ce38SMartin KaFai Lau 	int err;
727c83597faSYonghong Song 
72862827d61SMartin KaFai Lau 	smap = bpf_map_area_alloc(sizeof(*smap), NUMA_NO_NODE);
72962827d61SMartin KaFai Lau 	if (!smap)
73062827d61SMartin KaFai Lau 		return ERR_PTR(-ENOMEM);
73162827d61SMartin KaFai Lau 	bpf_map_init_from_attr(&smap->map, attr);
73262827d61SMartin KaFai Lau 
73362827d61SMartin KaFai Lau 	nbuckets = roundup_pow_of_two(num_possible_cpus());
73462827d61SMartin KaFai Lau 	/* Use at least 2 buckets, select_bucket() is undefined behavior with 1 bucket */
73562827d61SMartin KaFai Lau 	nbuckets = max_t(u32, 2, nbuckets);
73662827d61SMartin KaFai Lau 	smap->bucket_log = ilog2(nbuckets);
73762827d61SMartin KaFai Lau 
73862827d61SMartin KaFai Lau 	smap->buckets = bpf_map_kvcalloc(&smap->map, sizeof(*smap->buckets),
73962827d61SMartin KaFai Lau 					 nbuckets, GFP_USER | __GFP_NOWARN);
74062827d61SMartin KaFai Lau 	if (!smap->buckets) {
741*08a7ce38SMartin KaFai Lau 		err = -ENOMEM;
742*08a7ce38SMartin KaFai Lau 		goto free_smap;
74362827d61SMartin KaFai Lau 	}
74462827d61SMartin KaFai Lau 
74562827d61SMartin KaFai Lau 	for (i = 0; i < nbuckets; i++) {
74662827d61SMartin KaFai Lau 		INIT_HLIST_HEAD(&smap->buckets[i].list);
74762827d61SMartin KaFai Lau 		raw_spin_lock_init(&smap->buckets[i].lock);
74862827d61SMartin KaFai Lau 	}
74962827d61SMartin KaFai Lau 
75062827d61SMartin KaFai Lau 	smap->elem_size = offsetof(struct bpf_local_storage_elem,
75162827d61SMartin KaFai Lau 				   sdata.data[attr->value_size]);
752c83597faSYonghong Song 
753*08a7ce38SMartin KaFai Lau 	smap->bpf_ma = bpf_ma;
754*08a7ce38SMartin KaFai Lau 	if (bpf_ma) {
755*08a7ce38SMartin KaFai Lau 		err = bpf_mem_alloc_init(&smap->selem_ma, smap->elem_size, false);
756*08a7ce38SMartin KaFai Lau 		if (err)
757*08a7ce38SMartin KaFai Lau 			goto free_smap;
758*08a7ce38SMartin KaFai Lau 	}
759*08a7ce38SMartin KaFai Lau 
760c83597faSYonghong Song 	smap->cache_idx = bpf_local_storage_cache_idx_get(cache);
761c83597faSYonghong Song 	return &smap->map;
762*08a7ce38SMartin KaFai Lau 
763*08a7ce38SMartin KaFai Lau free_smap:
764*08a7ce38SMartin KaFai Lau 	kvfree(smap->buckets);
765*08a7ce38SMartin KaFai Lau 	bpf_map_area_free(smap);
766*08a7ce38SMartin KaFai Lau 	return ERR_PTR(err);
767c83597faSYonghong Song }
768c83597faSYonghong Song 
769c83597faSYonghong Song void bpf_local_storage_map_free(struct bpf_map *map,
770c83597faSYonghong Song 				struct bpf_local_storage_cache *cache,
771c83597faSYonghong Song 				int __percpu *busy_counter)
772c83597faSYonghong Song {
773450af8d0SKP Singh 	struct bpf_local_storage_map_bucket *b;
774c83597faSYonghong Song 	struct bpf_local_storage_elem *selem;
775c83597faSYonghong Song 	struct bpf_local_storage_map *smap;
776450af8d0SKP Singh 	unsigned int i;
777450af8d0SKP Singh 
778c83597faSYonghong Song 	smap = (struct bpf_local_storage_map *)map;
779c83597faSYonghong Song 	bpf_local_storage_cache_idx_free(cache, smap->cache_idx);
780c83597faSYonghong Song 
781450af8d0SKP Singh 	/* Note that this map might be concurrently cloned from
782450af8d0SKP Singh 	 * bpf_sk_storage_clone. Wait for any existing bpf_sk_storage_clone
783450af8d0SKP Singh 	 * RCU read section to finish before proceeding. New RCU
784450af8d0SKP Singh 	 * read sections should be prevented via bpf_map_inc_not_zero.
785450af8d0SKP Singh 	 */
786450af8d0SKP Singh 	synchronize_rcu();
787450af8d0SKP Singh 
788450af8d0SKP Singh 	/* bpf prog and the userspace can no longer access this map
789450af8d0SKP Singh 	 * now.  No new selem (of this map) can be added
790450af8d0SKP Singh 	 * to the owner->storage or to the map bucket's list.
791450af8d0SKP Singh 	 *
792450af8d0SKP Singh 	 * The elem of this map can be cleaned up here
793450af8d0SKP Singh 	 * or when the storage is freed e.g.
794450af8d0SKP Singh 	 * by bpf_sk_storage_free() during __sk_destruct().
795450af8d0SKP Singh 	 */
796450af8d0SKP Singh 	for (i = 0; i < (1U << smap->bucket_log); i++) {
797450af8d0SKP Singh 		b = &smap->buckets[i];
798450af8d0SKP Singh 
799450af8d0SKP Singh 		rcu_read_lock();
800450af8d0SKP Singh 		/* No one is adding to b->list now */
801450af8d0SKP Singh 		while ((selem = hlist_entry_safe(
802450af8d0SKP Singh 				rcu_dereference_raw(hlist_first_rcu(&b->list)),
803450af8d0SKP Singh 				struct bpf_local_storage_elem, map_node))) {
804bc235cdbSSong Liu 			if (busy_counter) {
805bc235cdbSSong Liu 				migrate_disable();
806197827a0SHou Tao 				this_cpu_inc(*busy_counter);
807bc235cdbSSong Liu 			}
808a47eabf2SMartin KaFai Lau 			bpf_selem_unlink(selem, true);
809bc235cdbSSong Liu 			if (busy_counter) {
810197827a0SHou Tao 				this_cpu_dec(*busy_counter);
811bc235cdbSSong Liu 				migrate_enable();
812bc235cdbSSong Liu 			}
813450af8d0SKP Singh 			cond_resched_rcu();
814450af8d0SKP Singh 		}
815450af8d0SKP Singh 		rcu_read_unlock();
816450af8d0SKP Singh 	}
817450af8d0SKP Singh 
818450af8d0SKP Singh 	/* While freeing the storage we may still need to access the map.
819450af8d0SKP Singh 	 *
820450af8d0SKP Singh 	 * e.g. when bpf_sk_storage_free() has unlinked selem from the map
821450af8d0SKP Singh 	 * which then made the above while((selem = ...)) loop
822450af8d0SKP Singh 	 * exit immediately.
823450af8d0SKP Singh 	 *
824450af8d0SKP Singh 	 * However, while freeing the storage one still needs to access the
825450af8d0SKP Singh 	 * smap->elem_size to do the uncharging in
826450af8d0SKP Singh 	 * bpf_selem_unlink_storage_nolock().
827450af8d0SKP Singh 	 *
828450af8d0SKP Singh 	 * Hence, wait another rcu grace period for the storage to be freed.
829450af8d0SKP Singh 	 */
830450af8d0SKP Singh 	synchronize_rcu();
831450af8d0SKP Singh 
832*08a7ce38SMartin KaFai Lau 	if (smap->bpf_ma)
833*08a7ce38SMartin KaFai Lau 		bpf_mem_alloc_destroy(&smap->selem_ma);
834450af8d0SKP Singh 	kvfree(smap->buckets);
83573cf09a3SYafang Shao 	bpf_map_area_free(smap);
836450af8d0SKP Singh }
837