xref: /openbmc/linux/kernel/bpf/cgroup.c (revision 32927393)
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3  * Functions to manage eBPF programs attached to cgroups
4  *
5  * Copyright (c) 2016 Daniel Mack
6  */
7 
8 #include <linux/kernel.h>
9 #include <linux/atomic.h>
10 #include <linux/cgroup.h>
11 #include <linux/filter.h>
12 #include <linux/slab.h>
13 #include <linux/sysctl.h>
14 #include <linux/string.h>
15 #include <linux/bpf.h>
16 #include <linux/bpf-cgroup.h>
17 #include <net/sock.h>
18 #include <net/bpf_sk_storage.h>
19 
20 #include "../cgroup/cgroup-internal.h"
21 
22 DEFINE_STATIC_KEY_FALSE(cgroup_bpf_enabled_key);
23 EXPORT_SYMBOL(cgroup_bpf_enabled_key);
24 
25 void cgroup_bpf_offline(struct cgroup *cgrp)
26 {
27 	cgroup_get(cgrp);
28 	percpu_ref_kill(&cgrp->bpf.refcnt);
29 }
30 
31 static void bpf_cgroup_storages_free(struct bpf_cgroup_storage *storages[])
32 {
33 	enum bpf_cgroup_storage_type stype;
34 
35 	for_each_cgroup_storage_type(stype)
36 		bpf_cgroup_storage_free(storages[stype]);
37 }
38 
39 static int bpf_cgroup_storages_alloc(struct bpf_cgroup_storage *storages[],
40 				     struct bpf_prog *prog)
41 {
42 	enum bpf_cgroup_storage_type stype;
43 
44 	for_each_cgroup_storage_type(stype) {
45 		storages[stype] = bpf_cgroup_storage_alloc(prog, stype);
46 		if (IS_ERR(storages[stype])) {
47 			storages[stype] = NULL;
48 			bpf_cgroup_storages_free(storages);
49 			return -ENOMEM;
50 		}
51 	}
52 
53 	return 0;
54 }
55 
56 static void bpf_cgroup_storages_assign(struct bpf_cgroup_storage *dst[],
57 				       struct bpf_cgroup_storage *src[])
58 {
59 	enum bpf_cgroup_storage_type stype;
60 
61 	for_each_cgroup_storage_type(stype)
62 		dst[stype] = src[stype];
63 }
64 
65 static void bpf_cgroup_storages_link(struct bpf_cgroup_storage *storages[],
66 				     struct cgroup* cgrp,
67 				     enum bpf_attach_type attach_type)
68 {
69 	enum bpf_cgroup_storage_type stype;
70 
71 	for_each_cgroup_storage_type(stype)
72 		bpf_cgroup_storage_link(storages[stype], cgrp, attach_type);
73 }
74 
75 static void bpf_cgroup_storages_unlink(struct bpf_cgroup_storage *storages[])
76 {
77 	enum bpf_cgroup_storage_type stype;
78 
79 	for_each_cgroup_storage_type(stype)
80 		bpf_cgroup_storage_unlink(storages[stype]);
81 }
82 
83 /* Called when bpf_cgroup_link is auto-detached from dying cgroup.
84  * It drops cgroup and bpf_prog refcounts, and marks bpf_link as defunct. It
85  * doesn't free link memory, which will eventually be done by bpf_link's
86  * release() callback, when its last FD is closed.
87  */
88 static void bpf_cgroup_link_auto_detach(struct bpf_cgroup_link *link)
89 {
90 	cgroup_put(link->cgroup);
91 	link->cgroup = NULL;
92 }
93 
94 /**
95  * cgroup_bpf_release() - put references of all bpf programs and
96  *                        release all cgroup bpf data
97  * @work: work structure embedded into the cgroup to modify
98  */
99 static void cgroup_bpf_release(struct work_struct *work)
100 {
101 	struct cgroup *p, *cgrp = container_of(work, struct cgroup,
102 					       bpf.release_work);
103 	struct bpf_prog_array *old_array;
104 	unsigned int type;
105 
106 	mutex_lock(&cgroup_mutex);
107 
108 	for (type = 0; type < ARRAY_SIZE(cgrp->bpf.progs); type++) {
109 		struct list_head *progs = &cgrp->bpf.progs[type];
110 		struct bpf_prog_list *pl, *tmp;
111 
112 		list_for_each_entry_safe(pl, tmp, progs, node) {
113 			list_del(&pl->node);
114 			if (pl->prog)
115 				bpf_prog_put(pl->prog);
116 			if (pl->link)
117 				bpf_cgroup_link_auto_detach(pl->link);
118 			bpf_cgroup_storages_unlink(pl->storage);
119 			bpf_cgroup_storages_free(pl->storage);
120 			kfree(pl);
121 			static_branch_dec(&cgroup_bpf_enabled_key);
122 		}
123 		old_array = rcu_dereference_protected(
124 				cgrp->bpf.effective[type],
125 				lockdep_is_held(&cgroup_mutex));
126 		bpf_prog_array_free(old_array);
127 	}
128 
129 	mutex_unlock(&cgroup_mutex);
130 
131 	for (p = cgroup_parent(cgrp); p; p = cgroup_parent(p))
132 		cgroup_bpf_put(p);
133 
134 	percpu_ref_exit(&cgrp->bpf.refcnt);
135 	cgroup_put(cgrp);
136 }
137 
138 /**
139  * cgroup_bpf_release_fn() - callback used to schedule releasing
140  *                           of bpf cgroup data
141  * @ref: percpu ref counter structure
142  */
143 static void cgroup_bpf_release_fn(struct percpu_ref *ref)
144 {
145 	struct cgroup *cgrp = container_of(ref, struct cgroup, bpf.refcnt);
146 
147 	INIT_WORK(&cgrp->bpf.release_work, cgroup_bpf_release);
148 	queue_work(system_wq, &cgrp->bpf.release_work);
149 }
150 
151 /* Get underlying bpf_prog of bpf_prog_list entry, regardless if it's through
152  * link or direct prog.
153  */
154 static struct bpf_prog *prog_list_prog(struct bpf_prog_list *pl)
155 {
156 	if (pl->prog)
157 		return pl->prog;
158 	if (pl->link)
159 		return pl->link->link.prog;
160 	return NULL;
161 }
162 
163 /* count number of elements in the list.
164  * it's slow but the list cannot be long
165  */
166 static u32 prog_list_length(struct list_head *head)
167 {
168 	struct bpf_prog_list *pl;
169 	u32 cnt = 0;
170 
171 	list_for_each_entry(pl, head, node) {
172 		if (!prog_list_prog(pl))
173 			continue;
174 		cnt++;
175 	}
176 	return cnt;
177 }
178 
179 /* if parent has non-overridable prog attached,
180  * disallow attaching new programs to the descendent cgroup.
181  * if parent has overridable or multi-prog, allow attaching
182  */
183 static bool hierarchy_allows_attach(struct cgroup *cgrp,
184 				    enum bpf_attach_type type)
185 {
186 	struct cgroup *p;
187 
188 	p = cgroup_parent(cgrp);
189 	if (!p)
190 		return true;
191 	do {
192 		u32 flags = p->bpf.flags[type];
193 		u32 cnt;
194 
195 		if (flags & BPF_F_ALLOW_MULTI)
196 			return true;
197 		cnt = prog_list_length(&p->bpf.progs[type]);
198 		WARN_ON_ONCE(cnt > 1);
199 		if (cnt == 1)
200 			return !!(flags & BPF_F_ALLOW_OVERRIDE);
201 		p = cgroup_parent(p);
202 	} while (p);
203 	return true;
204 }
205 
206 /* compute a chain of effective programs for a given cgroup:
207  * start from the list of programs in this cgroup and add
208  * all parent programs.
209  * Note that parent's F_ALLOW_OVERRIDE-type program is yielding
210  * to programs in this cgroup
211  */
212 static int compute_effective_progs(struct cgroup *cgrp,
213 				   enum bpf_attach_type type,
214 				   struct bpf_prog_array **array)
215 {
216 	struct bpf_prog_array_item *item;
217 	struct bpf_prog_array *progs;
218 	struct bpf_prog_list *pl;
219 	struct cgroup *p = cgrp;
220 	int cnt = 0;
221 
222 	/* count number of effective programs by walking parents */
223 	do {
224 		if (cnt == 0 || (p->bpf.flags[type] & BPF_F_ALLOW_MULTI))
225 			cnt += prog_list_length(&p->bpf.progs[type]);
226 		p = cgroup_parent(p);
227 	} while (p);
228 
229 	progs = bpf_prog_array_alloc(cnt, GFP_KERNEL);
230 	if (!progs)
231 		return -ENOMEM;
232 
233 	/* populate the array with effective progs */
234 	cnt = 0;
235 	p = cgrp;
236 	do {
237 		if (cnt > 0 && !(p->bpf.flags[type] & BPF_F_ALLOW_MULTI))
238 			continue;
239 
240 		list_for_each_entry(pl, &p->bpf.progs[type], node) {
241 			if (!prog_list_prog(pl))
242 				continue;
243 
244 			item = &progs->items[cnt];
245 			item->prog = prog_list_prog(pl);
246 			bpf_cgroup_storages_assign(item->cgroup_storage,
247 						   pl->storage);
248 			cnt++;
249 		}
250 	} while ((p = cgroup_parent(p)));
251 
252 	*array = progs;
253 	return 0;
254 }
255 
256 static void activate_effective_progs(struct cgroup *cgrp,
257 				     enum bpf_attach_type type,
258 				     struct bpf_prog_array *old_array)
259 {
260 	old_array = rcu_replace_pointer(cgrp->bpf.effective[type], old_array,
261 					lockdep_is_held(&cgroup_mutex));
262 	/* free prog array after grace period, since __cgroup_bpf_run_*()
263 	 * might be still walking the array
264 	 */
265 	bpf_prog_array_free(old_array);
266 }
267 
268 /**
269  * cgroup_bpf_inherit() - inherit effective programs from parent
270  * @cgrp: the cgroup to modify
271  */
272 int cgroup_bpf_inherit(struct cgroup *cgrp)
273 {
274 /* has to use marco instead of const int, since compiler thinks
275  * that array below is variable length
276  */
277 #define	NR ARRAY_SIZE(cgrp->bpf.effective)
278 	struct bpf_prog_array *arrays[NR] = {};
279 	struct cgroup *p;
280 	int ret, i;
281 
282 	ret = percpu_ref_init(&cgrp->bpf.refcnt, cgroup_bpf_release_fn, 0,
283 			      GFP_KERNEL);
284 	if (ret)
285 		return ret;
286 
287 	for (p = cgroup_parent(cgrp); p; p = cgroup_parent(p))
288 		cgroup_bpf_get(p);
289 
290 	for (i = 0; i < NR; i++)
291 		INIT_LIST_HEAD(&cgrp->bpf.progs[i]);
292 
293 	for (i = 0; i < NR; i++)
294 		if (compute_effective_progs(cgrp, i, &arrays[i]))
295 			goto cleanup;
296 
297 	for (i = 0; i < NR; i++)
298 		activate_effective_progs(cgrp, i, arrays[i]);
299 
300 	return 0;
301 cleanup:
302 	for (i = 0; i < NR; i++)
303 		bpf_prog_array_free(arrays[i]);
304 
305 	for (p = cgroup_parent(cgrp); p; p = cgroup_parent(p))
306 		cgroup_bpf_put(p);
307 
308 	percpu_ref_exit(&cgrp->bpf.refcnt);
309 
310 	return -ENOMEM;
311 }
312 
313 static int update_effective_progs(struct cgroup *cgrp,
314 				  enum bpf_attach_type type)
315 {
316 	struct cgroup_subsys_state *css;
317 	int err;
318 
319 	/* allocate and recompute effective prog arrays */
320 	css_for_each_descendant_pre(css, &cgrp->self) {
321 		struct cgroup *desc = container_of(css, struct cgroup, self);
322 
323 		if (percpu_ref_is_zero(&desc->bpf.refcnt))
324 			continue;
325 
326 		err = compute_effective_progs(desc, type, &desc->bpf.inactive);
327 		if (err)
328 			goto cleanup;
329 	}
330 
331 	/* all allocations were successful. Activate all prog arrays */
332 	css_for_each_descendant_pre(css, &cgrp->self) {
333 		struct cgroup *desc = container_of(css, struct cgroup, self);
334 
335 		if (percpu_ref_is_zero(&desc->bpf.refcnt)) {
336 			if (unlikely(desc->bpf.inactive)) {
337 				bpf_prog_array_free(desc->bpf.inactive);
338 				desc->bpf.inactive = NULL;
339 			}
340 			continue;
341 		}
342 
343 		activate_effective_progs(desc, type, desc->bpf.inactive);
344 		desc->bpf.inactive = NULL;
345 	}
346 
347 	return 0;
348 
349 cleanup:
350 	/* oom while computing effective. Free all computed effective arrays
351 	 * since they were not activated
352 	 */
353 	css_for_each_descendant_pre(css, &cgrp->self) {
354 		struct cgroup *desc = container_of(css, struct cgroup, self);
355 
356 		bpf_prog_array_free(desc->bpf.inactive);
357 		desc->bpf.inactive = NULL;
358 	}
359 
360 	return err;
361 }
362 
363 #define BPF_CGROUP_MAX_PROGS 64
364 
365 static struct bpf_prog_list *find_attach_entry(struct list_head *progs,
366 					       struct bpf_prog *prog,
367 					       struct bpf_cgroup_link *link,
368 					       struct bpf_prog *replace_prog,
369 					       bool allow_multi)
370 {
371 	struct bpf_prog_list *pl;
372 
373 	/* single-attach case */
374 	if (!allow_multi) {
375 		if (list_empty(progs))
376 			return NULL;
377 		return list_first_entry(progs, typeof(*pl), node);
378 	}
379 
380 	list_for_each_entry(pl, progs, node) {
381 		if (prog && pl->prog == prog)
382 			/* disallow attaching the same prog twice */
383 			return ERR_PTR(-EINVAL);
384 		if (link && pl->link == link)
385 			/* disallow attaching the same link twice */
386 			return ERR_PTR(-EINVAL);
387 	}
388 
389 	/* direct prog multi-attach w/ replacement case */
390 	if (replace_prog) {
391 		list_for_each_entry(pl, progs, node) {
392 			if (pl->prog == replace_prog)
393 				/* a match found */
394 				return pl;
395 		}
396 		/* prog to replace not found for cgroup */
397 		return ERR_PTR(-ENOENT);
398 	}
399 
400 	return NULL;
401 }
402 
403 /**
404  * __cgroup_bpf_attach() - Attach the program or the link to a cgroup, and
405  *                         propagate the change to descendants
406  * @cgrp: The cgroup which descendants to traverse
407  * @prog: A program to attach
408  * @link: A link to attach
409  * @replace_prog: Previously attached program to replace if BPF_F_REPLACE is set
410  * @type: Type of attach operation
411  * @flags: Option flags
412  *
413  * Exactly one of @prog or @link can be non-null.
414  * Must be called with cgroup_mutex held.
415  */
416 int __cgroup_bpf_attach(struct cgroup *cgrp,
417 			struct bpf_prog *prog, struct bpf_prog *replace_prog,
418 			struct bpf_cgroup_link *link,
419 			enum bpf_attach_type type, u32 flags)
420 {
421 	u32 saved_flags = (flags & (BPF_F_ALLOW_OVERRIDE | BPF_F_ALLOW_MULTI));
422 	struct list_head *progs = &cgrp->bpf.progs[type];
423 	struct bpf_prog *old_prog = NULL;
424 	struct bpf_cgroup_storage *storage[MAX_BPF_CGROUP_STORAGE_TYPE] = {};
425 	struct bpf_cgroup_storage *old_storage[MAX_BPF_CGROUP_STORAGE_TYPE] = {};
426 	struct bpf_prog_list *pl;
427 	int err;
428 
429 	if (((flags & BPF_F_ALLOW_OVERRIDE) && (flags & BPF_F_ALLOW_MULTI)) ||
430 	    ((flags & BPF_F_REPLACE) && !(flags & BPF_F_ALLOW_MULTI)))
431 		/* invalid combination */
432 		return -EINVAL;
433 	if (link && (prog || replace_prog))
434 		/* only either link or prog/replace_prog can be specified */
435 		return -EINVAL;
436 	if (!!replace_prog != !!(flags & BPF_F_REPLACE))
437 		/* replace_prog implies BPF_F_REPLACE, and vice versa */
438 		return -EINVAL;
439 
440 	if (!hierarchy_allows_attach(cgrp, type))
441 		return -EPERM;
442 
443 	if (!list_empty(progs) && cgrp->bpf.flags[type] != saved_flags)
444 		/* Disallow attaching non-overridable on top
445 		 * of existing overridable in this cgroup.
446 		 * Disallow attaching multi-prog if overridable or none
447 		 */
448 		return -EPERM;
449 
450 	if (prog_list_length(progs) >= BPF_CGROUP_MAX_PROGS)
451 		return -E2BIG;
452 
453 	pl = find_attach_entry(progs, prog, link, replace_prog,
454 			       flags & BPF_F_ALLOW_MULTI);
455 	if (IS_ERR(pl))
456 		return PTR_ERR(pl);
457 
458 	if (bpf_cgroup_storages_alloc(storage, prog ? : link->link.prog))
459 		return -ENOMEM;
460 
461 	if (pl) {
462 		old_prog = pl->prog;
463 		bpf_cgroup_storages_unlink(pl->storage);
464 		bpf_cgroup_storages_assign(old_storage, pl->storage);
465 	} else {
466 		pl = kmalloc(sizeof(*pl), GFP_KERNEL);
467 		if (!pl) {
468 			bpf_cgroup_storages_free(storage);
469 			return -ENOMEM;
470 		}
471 		list_add_tail(&pl->node, progs);
472 	}
473 
474 	pl->prog = prog;
475 	pl->link = link;
476 	bpf_cgroup_storages_assign(pl->storage, storage);
477 	cgrp->bpf.flags[type] = saved_flags;
478 
479 	err = update_effective_progs(cgrp, type);
480 	if (err)
481 		goto cleanup;
482 
483 	bpf_cgroup_storages_free(old_storage);
484 	if (old_prog)
485 		bpf_prog_put(old_prog);
486 	else
487 		static_branch_inc(&cgroup_bpf_enabled_key);
488 	bpf_cgroup_storages_link(pl->storage, cgrp, type);
489 	return 0;
490 
491 cleanup:
492 	if (old_prog) {
493 		pl->prog = old_prog;
494 		pl->link = NULL;
495 	}
496 	bpf_cgroup_storages_free(pl->storage);
497 	bpf_cgroup_storages_assign(pl->storage, old_storage);
498 	bpf_cgroup_storages_link(pl->storage, cgrp, type);
499 	if (!old_prog) {
500 		list_del(&pl->node);
501 		kfree(pl);
502 	}
503 	return err;
504 }
505 
506 /* Swap updated BPF program for given link in effective program arrays across
507  * all descendant cgroups. This function is guaranteed to succeed.
508  */
509 static void replace_effective_prog(struct cgroup *cgrp,
510 				   enum bpf_attach_type type,
511 				   struct bpf_cgroup_link *link)
512 {
513 	struct bpf_prog_array_item *item;
514 	struct cgroup_subsys_state *css;
515 	struct bpf_prog_array *progs;
516 	struct bpf_prog_list *pl;
517 	struct list_head *head;
518 	struct cgroup *cg;
519 	int pos;
520 
521 	css_for_each_descendant_pre(css, &cgrp->self) {
522 		struct cgroup *desc = container_of(css, struct cgroup, self);
523 
524 		if (percpu_ref_is_zero(&desc->bpf.refcnt))
525 			continue;
526 
527 		/* find position of link in effective progs array */
528 		for (pos = 0, cg = desc; cg; cg = cgroup_parent(cg)) {
529 			if (pos && !(cg->bpf.flags[type] & BPF_F_ALLOW_MULTI))
530 				continue;
531 
532 			head = &cg->bpf.progs[type];
533 			list_for_each_entry(pl, head, node) {
534 				if (!prog_list_prog(pl))
535 					continue;
536 				if (pl->link == link)
537 					goto found;
538 				pos++;
539 			}
540 		}
541 found:
542 		BUG_ON(!cg);
543 		progs = rcu_dereference_protected(
544 				desc->bpf.effective[type],
545 				lockdep_is_held(&cgroup_mutex));
546 		item = &progs->items[pos];
547 		WRITE_ONCE(item->prog, link->link.prog);
548 	}
549 }
550 
551 /**
552  * __cgroup_bpf_replace() - Replace link's program and propagate the change
553  *                          to descendants
554  * @cgrp: The cgroup which descendants to traverse
555  * @link: A link for which to replace BPF program
556  * @type: Type of attach operation
557  *
558  * Must be called with cgroup_mutex held.
559  */
560 int __cgroup_bpf_replace(struct cgroup *cgrp, struct bpf_cgroup_link *link,
561 			 struct bpf_prog *new_prog)
562 {
563 	struct list_head *progs = &cgrp->bpf.progs[link->type];
564 	struct bpf_prog *old_prog;
565 	struct bpf_prog_list *pl;
566 	bool found = false;
567 
568 	if (link->link.prog->type != new_prog->type)
569 		return -EINVAL;
570 
571 	list_for_each_entry(pl, progs, node) {
572 		if (pl->link == link) {
573 			found = true;
574 			break;
575 		}
576 	}
577 	if (!found)
578 		return -ENOENT;
579 
580 	old_prog = xchg(&link->link.prog, new_prog);
581 	replace_effective_prog(cgrp, link->type, link);
582 	bpf_prog_put(old_prog);
583 	return 0;
584 }
585 
586 static struct bpf_prog_list *find_detach_entry(struct list_head *progs,
587 					       struct bpf_prog *prog,
588 					       struct bpf_cgroup_link *link,
589 					       bool allow_multi)
590 {
591 	struct bpf_prog_list *pl;
592 
593 	if (!allow_multi) {
594 		if (list_empty(progs))
595 			/* report error when trying to detach and nothing is attached */
596 			return ERR_PTR(-ENOENT);
597 
598 		/* to maintain backward compatibility NONE and OVERRIDE cgroups
599 		 * allow detaching with invalid FD (prog==NULL) in legacy mode
600 		 */
601 		return list_first_entry(progs, typeof(*pl), node);
602 	}
603 
604 	if (!prog && !link)
605 		/* to detach MULTI prog the user has to specify valid FD
606 		 * of the program or link to be detached
607 		 */
608 		return ERR_PTR(-EINVAL);
609 
610 	/* find the prog or link and detach it */
611 	list_for_each_entry(pl, progs, node) {
612 		if (pl->prog == prog && pl->link == link)
613 			return pl;
614 	}
615 	return ERR_PTR(-ENOENT);
616 }
617 
618 /**
619  * __cgroup_bpf_detach() - Detach the program or link from a cgroup, and
620  *                         propagate the change to descendants
621  * @cgrp: The cgroup which descendants to traverse
622  * @prog: A program to detach or NULL
623  * @prog: A link to detach or NULL
624  * @type: Type of detach operation
625  *
626  * At most one of @prog or @link can be non-NULL.
627  * Must be called with cgroup_mutex held.
628  */
629 int __cgroup_bpf_detach(struct cgroup *cgrp, struct bpf_prog *prog,
630 			struct bpf_cgroup_link *link, enum bpf_attach_type type)
631 {
632 	struct list_head *progs = &cgrp->bpf.progs[type];
633 	u32 flags = cgrp->bpf.flags[type];
634 	struct bpf_prog_list *pl;
635 	struct bpf_prog *old_prog;
636 	int err;
637 
638 	if (prog && link)
639 		/* only one of prog or link can be specified */
640 		return -EINVAL;
641 
642 	pl = find_detach_entry(progs, prog, link, flags & BPF_F_ALLOW_MULTI);
643 	if (IS_ERR(pl))
644 		return PTR_ERR(pl);
645 
646 	/* mark it deleted, so it's ignored while recomputing effective */
647 	old_prog = pl->prog;
648 	pl->prog = NULL;
649 	pl->link = NULL;
650 
651 	err = update_effective_progs(cgrp, type);
652 	if (err)
653 		goto cleanup;
654 
655 	/* now can actually delete it from this cgroup list */
656 	list_del(&pl->node);
657 	bpf_cgroup_storages_unlink(pl->storage);
658 	bpf_cgroup_storages_free(pl->storage);
659 	kfree(pl);
660 	if (list_empty(progs))
661 		/* last program was detached, reset flags to zero */
662 		cgrp->bpf.flags[type] = 0;
663 	if (old_prog)
664 		bpf_prog_put(old_prog);
665 	static_branch_dec(&cgroup_bpf_enabled_key);
666 	return 0;
667 
668 cleanup:
669 	/* restore back prog or link */
670 	pl->prog = old_prog;
671 	pl->link = link;
672 	return err;
673 }
674 
675 /* Must be called with cgroup_mutex held to avoid races. */
676 int __cgroup_bpf_query(struct cgroup *cgrp, const union bpf_attr *attr,
677 		       union bpf_attr __user *uattr)
678 {
679 	__u32 __user *prog_ids = u64_to_user_ptr(attr->query.prog_ids);
680 	enum bpf_attach_type type = attr->query.attach_type;
681 	struct list_head *progs = &cgrp->bpf.progs[type];
682 	u32 flags = cgrp->bpf.flags[type];
683 	struct bpf_prog_array *effective;
684 	struct bpf_prog *prog;
685 	int cnt, ret = 0, i;
686 
687 	effective = rcu_dereference_protected(cgrp->bpf.effective[type],
688 					      lockdep_is_held(&cgroup_mutex));
689 
690 	if (attr->query.query_flags & BPF_F_QUERY_EFFECTIVE)
691 		cnt = bpf_prog_array_length(effective);
692 	else
693 		cnt = prog_list_length(progs);
694 
695 	if (copy_to_user(&uattr->query.attach_flags, &flags, sizeof(flags)))
696 		return -EFAULT;
697 	if (copy_to_user(&uattr->query.prog_cnt, &cnt, sizeof(cnt)))
698 		return -EFAULT;
699 	if (attr->query.prog_cnt == 0 || !prog_ids || !cnt)
700 		/* return early if user requested only program count + flags */
701 		return 0;
702 	if (attr->query.prog_cnt < cnt) {
703 		cnt = attr->query.prog_cnt;
704 		ret = -ENOSPC;
705 	}
706 
707 	if (attr->query.query_flags & BPF_F_QUERY_EFFECTIVE) {
708 		return bpf_prog_array_copy_to_user(effective, prog_ids, cnt);
709 	} else {
710 		struct bpf_prog_list *pl;
711 		u32 id;
712 
713 		i = 0;
714 		list_for_each_entry(pl, progs, node) {
715 			prog = prog_list_prog(pl);
716 			id = prog->aux->id;
717 			if (copy_to_user(prog_ids + i, &id, sizeof(id)))
718 				return -EFAULT;
719 			if (++i == cnt)
720 				break;
721 		}
722 	}
723 	return ret;
724 }
725 
726 int cgroup_bpf_prog_attach(const union bpf_attr *attr,
727 			   enum bpf_prog_type ptype, struct bpf_prog *prog)
728 {
729 	struct bpf_prog *replace_prog = NULL;
730 	struct cgroup *cgrp;
731 	int ret;
732 
733 	cgrp = cgroup_get_from_fd(attr->target_fd);
734 	if (IS_ERR(cgrp))
735 		return PTR_ERR(cgrp);
736 
737 	if ((attr->attach_flags & BPF_F_ALLOW_MULTI) &&
738 	    (attr->attach_flags & BPF_F_REPLACE)) {
739 		replace_prog = bpf_prog_get_type(attr->replace_bpf_fd, ptype);
740 		if (IS_ERR(replace_prog)) {
741 			cgroup_put(cgrp);
742 			return PTR_ERR(replace_prog);
743 		}
744 	}
745 
746 	ret = cgroup_bpf_attach(cgrp, prog, replace_prog, NULL,
747 				attr->attach_type, attr->attach_flags);
748 
749 	if (replace_prog)
750 		bpf_prog_put(replace_prog);
751 	cgroup_put(cgrp);
752 	return ret;
753 }
754 
755 int cgroup_bpf_prog_detach(const union bpf_attr *attr, enum bpf_prog_type ptype)
756 {
757 	struct bpf_prog *prog;
758 	struct cgroup *cgrp;
759 	int ret;
760 
761 	cgrp = cgroup_get_from_fd(attr->target_fd);
762 	if (IS_ERR(cgrp))
763 		return PTR_ERR(cgrp);
764 
765 	prog = bpf_prog_get_type(attr->attach_bpf_fd, ptype);
766 	if (IS_ERR(prog))
767 		prog = NULL;
768 
769 	ret = cgroup_bpf_detach(cgrp, prog, attr->attach_type);
770 	if (prog)
771 		bpf_prog_put(prog);
772 
773 	cgroup_put(cgrp);
774 	return ret;
775 }
776 
777 static void bpf_cgroup_link_release(struct bpf_link *link)
778 {
779 	struct bpf_cgroup_link *cg_link =
780 		container_of(link, struct bpf_cgroup_link, link);
781 
782 	/* link might have been auto-detached by dying cgroup already,
783 	 * in that case our work is done here
784 	 */
785 	if (!cg_link->cgroup)
786 		return;
787 
788 	mutex_lock(&cgroup_mutex);
789 
790 	/* re-check cgroup under lock again */
791 	if (!cg_link->cgroup) {
792 		mutex_unlock(&cgroup_mutex);
793 		return;
794 	}
795 
796 	WARN_ON(__cgroup_bpf_detach(cg_link->cgroup, NULL, cg_link,
797 				    cg_link->type));
798 
799 	mutex_unlock(&cgroup_mutex);
800 	cgroup_put(cg_link->cgroup);
801 }
802 
803 static void bpf_cgroup_link_dealloc(struct bpf_link *link)
804 {
805 	struct bpf_cgroup_link *cg_link =
806 		container_of(link, struct bpf_cgroup_link, link);
807 
808 	kfree(cg_link);
809 }
810 
811 const struct bpf_link_ops bpf_cgroup_link_lops = {
812 	.release = bpf_cgroup_link_release,
813 	.dealloc = bpf_cgroup_link_dealloc,
814 };
815 
816 int cgroup_bpf_link_attach(const union bpf_attr *attr, struct bpf_prog *prog)
817 {
818 	struct bpf_cgroup_link *link;
819 	struct file *link_file;
820 	struct cgroup *cgrp;
821 	int err, link_fd;
822 
823 	if (attr->link_create.flags)
824 		return -EINVAL;
825 
826 	cgrp = cgroup_get_from_fd(attr->link_create.target_fd);
827 	if (IS_ERR(cgrp))
828 		return PTR_ERR(cgrp);
829 
830 	link = kzalloc(sizeof(*link), GFP_USER);
831 	if (!link) {
832 		err = -ENOMEM;
833 		goto out_put_cgroup;
834 	}
835 	bpf_link_init(&link->link, &bpf_cgroup_link_lops, prog);
836 	link->cgroup = cgrp;
837 	link->type = attr->link_create.attach_type;
838 
839 	link_file = bpf_link_new_file(&link->link, &link_fd);
840 	if (IS_ERR(link_file)) {
841 		kfree(link);
842 		err = PTR_ERR(link_file);
843 		goto out_put_cgroup;
844 	}
845 
846 	err = cgroup_bpf_attach(cgrp, NULL, NULL, link, link->type,
847 				BPF_F_ALLOW_MULTI);
848 	if (err) {
849 		bpf_link_cleanup(&link->link, link_file, link_fd);
850 		goto out_put_cgroup;
851 	}
852 
853 	fd_install(link_fd, link_file);
854 	return link_fd;
855 
856 out_put_cgroup:
857 	cgroup_put(cgrp);
858 	return err;
859 }
860 
861 int cgroup_bpf_prog_query(const union bpf_attr *attr,
862 			  union bpf_attr __user *uattr)
863 {
864 	struct cgroup *cgrp;
865 	int ret;
866 
867 	cgrp = cgroup_get_from_fd(attr->query.target_fd);
868 	if (IS_ERR(cgrp))
869 		return PTR_ERR(cgrp);
870 
871 	ret = cgroup_bpf_query(cgrp, attr, uattr);
872 
873 	cgroup_put(cgrp);
874 	return ret;
875 }
876 
877 /**
878  * __cgroup_bpf_run_filter_skb() - Run a program for packet filtering
879  * @sk: The socket sending or receiving traffic
880  * @skb: The skb that is being sent or received
881  * @type: The type of program to be exectuted
882  *
883  * If no socket is passed, or the socket is not of type INET or INET6,
884  * this function does nothing and returns 0.
885  *
886  * The program type passed in via @type must be suitable for network
887  * filtering. No further check is performed to assert that.
888  *
889  * For egress packets, this function can return:
890  *   NET_XMIT_SUCCESS    (0)	- continue with packet output
891  *   NET_XMIT_DROP       (1)	- drop packet and notify TCP to call cwr
892  *   NET_XMIT_CN         (2)	- continue with packet output and notify TCP
893  *				  to call cwr
894  *   -EPERM			- drop packet
895  *
896  * For ingress packets, this function will return -EPERM if any
897  * attached program was found and if it returned != 1 during execution.
898  * Otherwise 0 is returned.
899  */
900 int __cgroup_bpf_run_filter_skb(struct sock *sk,
901 				struct sk_buff *skb,
902 				enum bpf_attach_type type)
903 {
904 	unsigned int offset = skb->data - skb_network_header(skb);
905 	struct sock *save_sk;
906 	void *saved_data_end;
907 	struct cgroup *cgrp;
908 	int ret;
909 
910 	if (!sk || !sk_fullsock(sk))
911 		return 0;
912 
913 	if (sk->sk_family != AF_INET && sk->sk_family != AF_INET6)
914 		return 0;
915 
916 	cgrp = sock_cgroup_ptr(&sk->sk_cgrp_data);
917 	save_sk = skb->sk;
918 	skb->sk = sk;
919 	__skb_push(skb, offset);
920 
921 	/* compute pointers for the bpf prog */
922 	bpf_compute_and_save_data_end(skb, &saved_data_end);
923 
924 	if (type == BPF_CGROUP_INET_EGRESS) {
925 		ret = BPF_PROG_CGROUP_INET_EGRESS_RUN_ARRAY(
926 			cgrp->bpf.effective[type], skb, __bpf_prog_run_save_cb);
927 	} else {
928 		ret = BPF_PROG_RUN_ARRAY(cgrp->bpf.effective[type], skb,
929 					  __bpf_prog_run_save_cb);
930 		ret = (ret == 1 ? 0 : -EPERM);
931 	}
932 	bpf_restore_data_end(skb, saved_data_end);
933 	__skb_pull(skb, offset);
934 	skb->sk = save_sk;
935 
936 	return ret;
937 }
938 EXPORT_SYMBOL(__cgroup_bpf_run_filter_skb);
939 
940 /**
941  * __cgroup_bpf_run_filter_sk() - Run a program on a sock
942  * @sk: sock structure to manipulate
943  * @type: The type of program to be exectuted
944  *
945  * socket is passed is expected to be of type INET or INET6.
946  *
947  * The program type passed in via @type must be suitable for sock
948  * filtering. No further check is performed to assert that.
949  *
950  * This function will return %-EPERM if any if an attached program was found
951  * and if it returned != 1 during execution. In all other cases, 0 is returned.
952  */
953 int __cgroup_bpf_run_filter_sk(struct sock *sk,
954 			       enum bpf_attach_type type)
955 {
956 	struct cgroup *cgrp = sock_cgroup_ptr(&sk->sk_cgrp_data);
957 	int ret;
958 
959 	ret = BPF_PROG_RUN_ARRAY(cgrp->bpf.effective[type], sk, BPF_PROG_RUN);
960 	return ret == 1 ? 0 : -EPERM;
961 }
962 EXPORT_SYMBOL(__cgroup_bpf_run_filter_sk);
963 
964 /**
965  * __cgroup_bpf_run_filter_sock_addr() - Run a program on a sock and
966  *                                       provided by user sockaddr
967  * @sk: sock struct that will use sockaddr
968  * @uaddr: sockaddr struct provided by user
969  * @type: The type of program to be exectuted
970  * @t_ctx: Pointer to attach type specific context
971  *
972  * socket is expected to be of type INET or INET6.
973  *
974  * This function will return %-EPERM if an attached program is found and
975  * returned value != 1 during execution. In all other cases, 0 is returned.
976  */
977 int __cgroup_bpf_run_filter_sock_addr(struct sock *sk,
978 				      struct sockaddr *uaddr,
979 				      enum bpf_attach_type type,
980 				      void *t_ctx)
981 {
982 	struct bpf_sock_addr_kern ctx = {
983 		.sk = sk,
984 		.uaddr = uaddr,
985 		.t_ctx = t_ctx,
986 	};
987 	struct sockaddr_storage unspec;
988 	struct cgroup *cgrp;
989 	int ret;
990 
991 	/* Check socket family since not all sockets represent network
992 	 * endpoint (e.g. AF_UNIX).
993 	 */
994 	if (sk->sk_family != AF_INET && sk->sk_family != AF_INET6)
995 		return 0;
996 
997 	if (!ctx.uaddr) {
998 		memset(&unspec, 0, sizeof(unspec));
999 		ctx.uaddr = (struct sockaddr *)&unspec;
1000 	}
1001 
1002 	cgrp = sock_cgroup_ptr(&sk->sk_cgrp_data);
1003 	ret = BPF_PROG_RUN_ARRAY(cgrp->bpf.effective[type], &ctx, BPF_PROG_RUN);
1004 
1005 	return ret == 1 ? 0 : -EPERM;
1006 }
1007 EXPORT_SYMBOL(__cgroup_bpf_run_filter_sock_addr);
1008 
1009 /**
1010  * __cgroup_bpf_run_filter_sock_ops() - Run a program on a sock
1011  * @sk: socket to get cgroup from
1012  * @sock_ops: bpf_sock_ops_kern struct to pass to program. Contains
1013  * sk with connection information (IP addresses, etc.) May not contain
1014  * cgroup info if it is a req sock.
1015  * @type: The type of program to be exectuted
1016  *
1017  * socket passed is expected to be of type INET or INET6.
1018  *
1019  * The program type passed in via @type must be suitable for sock_ops
1020  * filtering. No further check is performed to assert that.
1021  *
1022  * This function will return %-EPERM if any if an attached program was found
1023  * and if it returned != 1 during execution. In all other cases, 0 is returned.
1024  */
1025 int __cgroup_bpf_run_filter_sock_ops(struct sock *sk,
1026 				     struct bpf_sock_ops_kern *sock_ops,
1027 				     enum bpf_attach_type type)
1028 {
1029 	struct cgroup *cgrp = sock_cgroup_ptr(&sk->sk_cgrp_data);
1030 	int ret;
1031 
1032 	ret = BPF_PROG_RUN_ARRAY(cgrp->bpf.effective[type], sock_ops,
1033 				 BPF_PROG_RUN);
1034 	return ret == 1 ? 0 : -EPERM;
1035 }
1036 EXPORT_SYMBOL(__cgroup_bpf_run_filter_sock_ops);
1037 
1038 int __cgroup_bpf_check_dev_permission(short dev_type, u32 major, u32 minor,
1039 				      short access, enum bpf_attach_type type)
1040 {
1041 	struct cgroup *cgrp;
1042 	struct bpf_cgroup_dev_ctx ctx = {
1043 		.access_type = (access << 16) | dev_type,
1044 		.major = major,
1045 		.minor = minor,
1046 	};
1047 	int allow = 1;
1048 
1049 	rcu_read_lock();
1050 	cgrp = task_dfl_cgroup(current);
1051 	allow = BPF_PROG_RUN_ARRAY(cgrp->bpf.effective[type], &ctx,
1052 				   BPF_PROG_RUN);
1053 	rcu_read_unlock();
1054 
1055 	return !allow;
1056 }
1057 EXPORT_SYMBOL(__cgroup_bpf_check_dev_permission);
1058 
1059 static const struct bpf_func_proto *
1060 cgroup_base_func_proto(enum bpf_func_id func_id, const struct bpf_prog *prog)
1061 {
1062 	switch (func_id) {
1063 	case BPF_FUNC_map_lookup_elem:
1064 		return &bpf_map_lookup_elem_proto;
1065 	case BPF_FUNC_map_update_elem:
1066 		return &bpf_map_update_elem_proto;
1067 	case BPF_FUNC_map_delete_elem:
1068 		return &bpf_map_delete_elem_proto;
1069 	case BPF_FUNC_map_push_elem:
1070 		return &bpf_map_push_elem_proto;
1071 	case BPF_FUNC_map_pop_elem:
1072 		return &bpf_map_pop_elem_proto;
1073 	case BPF_FUNC_map_peek_elem:
1074 		return &bpf_map_peek_elem_proto;
1075 	case BPF_FUNC_get_current_uid_gid:
1076 		return &bpf_get_current_uid_gid_proto;
1077 	case BPF_FUNC_get_local_storage:
1078 		return &bpf_get_local_storage_proto;
1079 	case BPF_FUNC_get_current_cgroup_id:
1080 		return &bpf_get_current_cgroup_id_proto;
1081 	case BPF_FUNC_trace_printk:
1082 		if (capable(CAP_SYS_ADMIN))
1083 			return bpf_get_trace_printk_proto();
1084 		/* fall through */
1085 	default:
1086 		return NULL;
1087 	}
1088 }
1089 
1090 static const struct bpf_func_proto *
1091 cgroup_dev_func_proto(enum bpf_func_id func_id, const struct bpf_prog *prog)
1092 {
1093 	return cgroup_base_func_proto(func_id, prog);
1094 }
1095 
1096 static bool cgroup_dev_is_valid_access(int off, int size,
1097 				       enum bpf_access_type type,
1098 				       const struct bpf_prog *prog,
1099 				       struct bpf_insn_access_aux *info)
1100 {
1101 	const int size_default = sizeof(__u32);
1102 
1103 	if (type == BPF_WRITE)
1104 		return false;
1105 
1106 	if (off < 0 || off + size > sizeof(struct bpf_cgroup_dev_ctx))
1107 		return false;
1108 	/* The verifier guarantees that size > 0. */
1109 	if (off % size != 0)
1110 		return false;
1111 
1112 	switch (off) {
1113 	case bpf_ctx_range(struct bpf_cgroup_dev_ctx, access_type):
1114 		bpf_ctx_record_field_size(info, size_default);
1115 		if (!bpf_ctx_narrow_access_ok(off, size, size_default))
1116 			return false;
1117 		break;
1118 	default:
1119 		if (size != size_default)
1120 			return false;
1121 	}
1122 
1123 	return true;
1124 }
1125 
1126 const struct bpf_prog_ops cg_dev_prog_ops = {
1127 };
1128 
1129 const struct bpf_verifier_ops cg_dev_verifier_ops = {
1130 	.get_func_proto		= cgroup_dev_func_proto,
1131 	.is_valid_access	= cgroup_dev_is_valid_access,
1132 };
1133 
1134 /**
1135  * __cgroup_bpf_run_filter_sysctl - Run a program on sysctl
1136  *
1137  * @head: sysctl table header
1138  * @table: sysctl table
1139  * @write: sysctl is being read (= 0) or written (= 1)
1140  * @buf: pointer to buffer (in and out)
1141  * @pcount: value-result argument: value is size of buffer pointed to by @buf,
1142  *	result is size of @new_buf if program set new value, initial value
1143  *	otherwise
1144  * @ppos: value-result argument: value is position at which read from or write
1145  *	to sysctl is happening, result is new position if program overrode it,
1146  *	initial value otherwise
1147  * @type: type of program to be executed
1148  *
1149  * Program is run when sysctl is being accessed, either read or written, and
1150  * can allow or deny such access.
1151  *
1152  * This function will return %-EPERM if an attached program is found and
1153  * returned value != 1 during execution. In all other cases 0 is returned.
1154  */
1155 int __cgroup_bpf_run_filter_sysctl(struct ctl_table_header *head,
1156 				   struct ctl_table *table, int write,
1157 				   void **buf, size_t *pcount, loff_t *ppos,
1158 				   enum bpf_attach_type type)
1159 {
1160 	struct bpf_sysctl_kern ctx = {
1161 		.head = head,
1162 		.table = table,
1163 		.write = write,
1164 		.ppos = ppos,
1165 		.cur_val = NULL,
1166 		.cur_len = PAGE_SIZE,
1167 		.new_val = NULL,
1168 		.new_len = 0,
1169 		.new_updated = 0,
1170 	};
1171 	struct cgroup *cgrp;
1172 	loff_t pos = 0;
1173 	int ret;
1174 
1175 	ctx.cur_val = kmalloc_track_caller(ctx.cur_len, GFP_KERNEL);
1176 	if (!ctx.cur_val ||
1177 	    table->proc_handler(table, 0, ctx.cur_val, &ctx.cur_len, &pos)) {
1178 		/* Let BPF program decide how to proceed. */
1179 		ctx.cur_len = 0;
1180 	}
1181 
1182 	if (write && *buf && *pcount) {
1183 		/* BPF program should be able to override new value with a
1184 		 * buffer bigger than provided by user.
1185 		 */
1186 		ctx.new_val = kmalloc_track_caller(PAGE_SIZE, GFP_KERNEL);
1187 		ctx.new_len = min_t(size_t, PAGE_SIZE, *pcount);
1188 		if (ctx.new_val) {
1189 			memcpy(ctx.new_val, *buf, ctx.new_len);
1190 		} else {
1191 			/* Let BPF program decide how to proceed. */
1192 			ctx.new_len = 0;
1193 		}
1194 	}
1195 
1196 	rcu_read_lock();
1197 	cgrp = task_dfl_cgroup(current);
1198 	ret = BPF_PROG_RUN_ARRAY(cgrp->bpf.effective[type], &ctx, BPF_PROG_RUN);
1199 	rcu_read_unlock();
1200 
1201 	kfree(ctx.cur_val);
1202 
1203 	if (ret == 1 && ctx.new_updated) {
1204 		kfree(*buf);
1205 		*buf = ctx.new_val;
1206 		*pcount = ctx.new_len;
1207 	} else {
1208 		kfree(ctx.new_val);
1209 	}
1210 
1211 	return ret == 1 ? 0 : -EPERM;
1212 }
1213 EXPORT_SYMBOL(__cgroup_bpf_run_filter_sysctl);
1214 
1215 #ifdef CONFIG_NET
1216 static bool __cgroup_bpf_prog_array_is_empty(struct cgroup *cgrp,
1217 					     enum bpf_attach_type attach_type)
1218 {
1219 	struct bpf_prog_array *prog_array;
1220 	bool empty;
1221 
1222 	rcu_read_lock();
1223 	prog_array = rcu_dereference(cgrp->bpf.effective[attach_type]);
1224 	empty = bpf_prog_array_is_empty(prog_array);
1225 	rcu_read_unlock();
1226 
1227 	return empty;
1228 }
1229 
1230 static int sockopt_alloc_buf(struct bpf_sockopt_kern *ctx, int max_optlen)
1231 {
1232 	if (unlikely(max_optlen > PAGE_SIZE) || max_optlen < 0)
1233 		return -EINVAL;
1234 
1235 	ctx->optval = kzalloc(max_optlen, GFP_USER);
1236 	if (!ctx->optval)
1237 		return -ENOMEM;
1238 
1239 	ctx->optval_end = ctx->optval + max_optlen;
1240 
1241 	return 0;
1242 }
1243 
1244 static void sockopt_free_buf(struct bpf_sockopt_kern *ctx)
1245 {
1246 	kfree(ctx->optval);
1247 }
1248 
1249 int __cgroup_bpf_run_filter_setsockopt(struct sock *sk, int *level,
1250 				       int *optname, char __user *optval,
1251 				       int *optlen, char **kernel_optval)
1252 {
1253 	struct cgroup *cgrp = sock_cgroup_ptr(&sk->sk_cgrp_data);
1254 	struct bpf_sockopt_kern ctx = {
1255 		.sk = sk,
1256 		.level = *level,
1257 		.optname = *optname,
1258 	};
1259 	int ret, max_optlen;
1260 
1261 	/* Opportunistic check to see whether we have any BPF program
1262 	 * attached to the hook so we don't waste time allocating
1263 	 * memory and locking the socket.
1264 	 */
1265 	if (!cgroup_bpf_enabled ||
1266 	    __cgroup_bpf_prog_array_is_empty(cgrp, BPF_CGROUP_SETSOCKOPT))
1267 		return 0;
1268 
1269 	/* Allocate a bit more than the initial user buffer for
1270 	 * BPF program. The canonical use case is overriding
1271 	 * TCP_CONGESTION(nv) to TCP_CONGESTION(cubic).
1272 	 */
1273 	max_optlen = max_t(int, 16, *optlen);
1274 
1275 	ret = sockopt_alloc_buf(&ctx, max_optlen);
1276 	if (ret)
1277 		return ret;
1278 
1279 	ctx.optlen = *optlen;
1280 
1281 	if (copy_from_user(ctx.optval, optval, *optlen) != 0) {
1282 		ret = -EFAULT;
1283 		goto out;
1284 	}
1285 
1286 	lock_sock(sk);
1287 	ret = BPF_PROG_RUN_ARRAY(cgrp->bpf.effective[BPF_CGROUP_SETSOCKOPT],
1288 				 &ctx, BPF_PROG_RUN);
1289 	release_sock(sk);
1290 
1291 	if (!ret) {
1292 		ret = -EPERM;
1293 		goto out;
1294 	}
1295 
1296 	if (ctx.optlen == -1) {
1297 		/* optlen set to -1, bypass kernel */
1298 		ret = 1;
1299 	} else if (ctx.optlen > max_optlen || ctx.optlen < -1) {
1300 		/* optlen is out of bounds */
1301 		ret = -EFAULT;
1302 	} else {
1303 		/* optlen within bounds, run kernel handler */
1304 		ret = 0;
1305 
1306 		/* export any potential modifications */
1307 		*level = ctx.level;
1308 		*optname = ctx.optname;
1309 		*optlen = ctx.optlen;
1310 		*kernel_optval = ctx.optval;
1311 	}
1312 
1313 out:
1314 	if (ret)
1315 		sockopt_free_buf(&ctx);
1316 	return ret;
1317 }
1318 EXPORT_SYMBOL(__cgroup_bpf_run_filter_setsockopt);
1319 
1320 int __cgroup_bpf_run_filter_getsockopt(struct sock *sk, int level,
1321 				       int optname, char __user *optval,
1322 				       int __user *optlen, int max_optlen,
1323 				       int retval)
1324 {
1325 	struct cgroup *cgrp = sock_cgroup_ptr(&sk->sk_cgrp_data);
1326 	struct bpf_sockopt_kern ctx = {
1327 		.sk = sk,
1328 		.level = level,
1329 		.optname = optname,
1330 		.retval = retval,
1331 	};
1332 	int ret;
1333 
1334 	/* Opportunistic check to see whether we have any BPF program
1335 	 * attached to the hook so we don't waste time allocating
1336 	 * memory and locking the socket.
1337 	 */
1338 	if (!cgroup_bpf_enabled ||
1339 	    __cgroup_bpf_prog_array_is_empty(cgrp, BPF_CGROUP_GETSOCKOPT))
1340 		return retval;
1341 
1342 	ret = sockopt_alloc_buf(&ctx, max_optlen);
1343 	if (ret)
1344 		return ret;
1345 
1346 	ctx.optlen = max_optlen;
1347 
1348 	if (!retval) {
1349 		/* If kernel getsockopt finished successfully,
1350 		 * copy whatever was returned to the user back
1351 		 * into our temporary buffer. Set optlen to the
1352 		 * one that kernel returned as well to let
1353 		 * BPF programs inspect the value.
1354 		 */
1355 
1356 		if (get_user(ctx.optlen, optlen)) {
1357 			ret = -EFAULT;
1358 			goto out;
1359 		}
1360 
1361 		if (ctx.optlen > max_optlen)
1362 			ctx.optlen = max_optlen;
1363 
1364 		if (copy_from_user(ctx.optval, optval, ctx.optlen) != 0) {
1365 			ret = -EFAULT;
1366 			goto out;
1367 		}
1368 	}
1369 
1370 	lock_sock(sk);
1371 	ret = BPF_PROG_RUN_ARRAY(cgrp->bpf.effective[BPF_CGROUP_GETSOCKOPT],
1372 				 &ctx, BPF_PROG_RUN);
1373 	release_sock(sk);
1374 
1375 	if (!ret) {
1376 		ret = -EPERM;
1377 		goto out;
1378 	}
1379 
1380 	if (ctx.optlen > max_optlen) {
1381 		ret = -EFAULT;
1382 		goto out;
1383 	}
1384 
1385 	/* BPF programs only allowed to set retval to 0, not some
1386 	 * arbitrary value.
1387 	 */
1388 	if (ctx.retval != 0 && ctx.retval != retval) {
1389 		ret = -EFAULT;
1390 		goto out;
1391 	}
1392 
1393 	if (copy_to_user(optval, ctx.optval, ctx.optlen) ||
1394 	    put_user(ctx.optlen, optlen)) {
1395 		ret = -EFAULT;
1396 		goto out;
1397 	}
1398 
1399 	ret = ctx.retval;
1400 
1401 out:
1402 	sockopt_free_buf(&ctx);
1403 	return ret;
1404 }
1405 EXPORT_SYMBOL(__cgroup_bpf_run_filter_getsockopt);
1406 #endif
1407 
1408 static ssize_t sysctl_cpy_dir(const struct ctl_dir *dir, char **bufp,
1409 			      size_t *lenp)
1410 {
1411 	ssize_t tmp_ret = 0, ret;
1412 
1413 	if (dir->header.parent) {
1414 		tmp_ret = sysctl_cpy_dir(dir->header.parent, bufp, lenp);
1415 		if (tmp_ret < 0)
1416 			return tmp_ret;
1417 	}
1418 
1419 	ret = strscpy(*bufp, dir->header.ctl_table[0].procname, *lenp);
1420 	if (ret < 0)
1421 		return ret;
1422 	*bufp += ret;
1423 	*lenp -= ret;
1424 	ret += tmp_ret;
1425 
1426 	/* Avoid leading slash. */
1427 	if (!ret)
1428 		return ret;
1429 
1430 	tmp_ret = strscpy(*bufp, "/", *lenp);
1431 	if (tmp_ret < 0)
1432 		return tmp_ret;
1433 	*bufp += tmp_ret;
1434 	*lenp -= tmp_ret;
1435 
1436 	return ret + tmp_ret;
1437 }
1438 
1439 BPF_CALL_4(bpf_sysctl_get_name, struct bpf_sysctl_kern *, ctx, char *, buf,
1440 	   size_t, buf_len, u64, flags)
1441 {
1442 	ssize_t tmp_ret = 0, ret;
1443 
1444 	if (!buf)
1445 		return -EINVAL;
1446 
1447 	if (!(flags & BPF_F_SYSCTL_BASE_NAME)) {
1448 		if (!ctx->head)
1449 			return -EINVAL;
1450 		tmp_ret = sysctl_cpy_dir(ctx->head->parent, &buf, &buf_len);
1451 		if (tmp_ret < 0)
1452 			return tmp_ret;
1453 	}
1454 
1455 	ret = strscpy(buf, ctx->table->procname, buf_len);
1456 
1457 	return ret < 0 ? ret : tmp_ret + ret;
1458 }
1459 
1460 static const struct bpf_func_proto bpf_sysctl_get_name_proto = {
1461 	.func		= bpf_sysctl_get_name,
1462 	.gpl_only	= false,
1463 	.ret_type	= RET_INTEGER,
1464 	.arg1_type	= ARG_PTR_TO_CTX,
1465 	.arg2_type	= ARG_PTR_TO_MEM,
1466 	.arg3_type	= ARG_CONST_SIZE,
1467 	.arg4_type	= ARG_ANYTHING,
1468 };
1469 
1470 static int copy_sysctl_value(char *dst, size_t dst_len, char *src,
1471 			     size_t src_len)
1472 {
1473 	if (!dst)
1474 		return -EINVAL;
1475 
1476 	if (!dst_len)
1477 		return -E2BIG;
1478 
1479 	if (!src || !src_len) {
1480 		memset(dst, 0, dst_len);
1481 		return -EINVAL;
1482 	}
1483 
1484 	memcpy(dst, src, min(dst_len, src_len));
1485 
1486 	if (dst_len > src_len) {
1487 		memset(dst + src_len, '\0', dst_len - src_len);
1488 		return src_len;
1489 	}
1490 
1491 	dst[dst_len - 1] = '\0';
1492 
1493 	return -E2BIG;
1494 }
1495 
1496 BPF_CALL_3(bpf_sysctl_get_current_value, struct bpf_sysctl_kern *, ctx,
1497 	   char *, buf, size_t, buf_len)
1498 {
1499 	return copy_sysctl_value(buf, buf_len, ctx->cur_val, ctx->cur_len);
1500 }
1501 
1502 static const struct bpf_func_proto bpf_sysctl_get_current_value_proto = {
1503 	.func		= bpf_sysctl_get_current_value,
1504 	.gpl_only	= false,
1505 	.ret_type	= RET_INTEGER,
1506 	.arg1_type	= ARG_PTR_TO_CTX,
1507 	.arg2_type	= ARG_PTR_TO_UNINIT_MEM,
1508 	.arg3_type	= ARG_CONST_SIZE,
1509 };
1510 
1511 BPF_CALL_3(bpf_sysctl_get_new_value, struct bpf_sysctl_kern *, ctx, char *, buf,
1512 	   size_t, buf_len)
1513 {
1514 	if (!ctx->write) {
1515 		if (buf && buf_len)
1516 			memset(buf, '\0', buf_len);
1517 		return -EINVAL;
1518 	}
1519 	return copy_sysctl_value(buf, buf_len, ctx->new_val, ctx->new_len);
1520 }
1521 
1522 static const struct bpf_func_proto bpf_sysctl_get_new_value_proto = {
1523 	.func		= bpf_sysctl_get_new_value,
1524 	.gpl_only	= false,
1525 	.ret_type	= RET_INTEGER,
1526 	.arg1_type	= ARG_PTR_TO_CTX,
1527 	.arg2_type	= ARG_PTR_TO_UNINIT_MEM,
1528 	.arg3_type	= ARG_CONST_SIZE,
1529 };
1530 
1531 BPF_CALL_3(bpf_sysctl_set_new_value, struct bpf_sysctl_kern *, ctx,
1532 	   const char *, buf, size_t, buf_len)
1533 {
1534 	if (!ctx->write || !ctx->new_val || !ctx->new_len || !buf || !buf_len)
1535 		return -EINVAL;
1536 
1537 	if (buf_len > PAGE_SIZE - 1)
1538 		return -E2BIG;
1539 
1540 	memcpy(ctx->new_val, buf, buf_len);
1541 	ctx->new_len = buf_len;
1542 	ctx->new_updated = 1;
1543 
1544 	return 0;
1545 }
1546 
1547 static const struct bpf_func_proto bpf_sysctl_set_new_value_proto = {
1548 	.func		= bpf_sysctl_set_new_value,
1549 	.gpl_only	= false,
1550 	.ret_type	= RET_INTEGER,
1551 	.arg1_type	= ARG_PTR_TO_CTX,
1552 	.arg2_type	= ARG_PTR_TO_MEM,
1553 	.arg3_type	= ARG_CONST_SIZE,
1554 };
1555 
1556 static const struct bpf_func_proto *
1557 sysctl_func_proto(enum bpf_func_id func_id, const struct bpf_prog *prog)
1558 {
1559 	switch (func_id) {
1560 	case BPF_FUNC_strtol:
1561 		return &bpf_strtol_proto;
1562 	case BPF_FUNC_strtoul:
1563 		return &bpf_strtoul_proto;
1564 	case BPF_FUNC_sysctl_get_name:
1565 		return &bpf_sysctl_get_name_proto;
1566 	case BPF_FUNC_sysctl_get_current_value:
1567 		return &bpf_sysctl_get_current_value_proto;
1568 	case BPF_FUNC_sysctl_get_new_value:
1569 		return &bpf_sysctl_get_new_value_proto;
1570 	case BPF_FUNC_sysctl_set_new_value:
1571 		return &bpf_sysctl_set_new_value_proto;
1572 	default:
1573 		return cgroup_base_func_proto(func_id, prog);
1574 	}
1575 }
1576 
1577 static bool sysctl_is_valid_access(int off, int size, enum bpf_access_type type,
1578 				   const struct bpf_prog *prog,
1579 				   struct bpf_insn_access_aux *info)
1580 {
1581 	const int size_default = sizeof(__u32);
1582 
1583 	if (off < 0 || off + size > sizeof(struct bpf_sysctl) || off % size)
1584 		return false;
1585 
1586 	switch (off) {
1587 	case bpf_ctx_range(struct bpf_sysctl, write):
1588 		if (type != BPF_READ)
1589 			return false;
1590 		bpf_ctx_record_field_size(info, size_default);
1591 		return bpf_ctx_narrow_access_ok(off, size, size_default);
1592 	case bpf_ctx_range(struct bpf_sysctl, file_pos):
1593 		if (type == BPF_READ) {
1594 			bpf_ctx_record_field_size(info, size_default);
1595 			return bpf_ctx_narrow_access_ok(off, size, size_default);
1596 		} else {
1597 			return size == size_default;
1598 		}
1599 	default:
1600 		return false;
1601 	}
1602 }
1603 
1604 static u32 sysctl_convert_ctx_access(enum bpf_access_type type,
1605 				     const struct bpf_insn *si,
1606 				     struct bpf_insn *insn_buf,
1607 				     struct bpf_prog *prog, u32 *target_size)
1608 {
1609 	struct bpf_insn *insn = insn_buf;
1610 	u32 read_size;
1611 
1612 	switch (si->off) {
1613 	case offsetof(struct bpf_sysctl, write):
1614 		*insn++ = BPF_LDX_MEM(
1615 			BPF_SIZE(si->code), si->dst_reg, si->src_reg,
1616 			bpf_target_off(struct bpf_sysctl_kern, write,
1617 				       sizeof_field(struct bpf_sysctl_kern,
1618 						    write),
1619 				       target_size));
1620 		break;
1621 	case offsetof(struct bpf_sysctl, file_pos):
1622 		/* ppos is a pointer so it should be accessed via indirect
1623 		 * loads and stores. Also for stores additional temporary
1624 		 * register is used since neither src_reg nor dst_reg can be
1625 		 * overridden.
1626 		 */
1627 		if (type == BPF_WRITE) {
1628 			int treg = BPF_REG_9;
1629 
1630 			if (si->src_reg == treg || si->dst_reg == treg)
1631 				--treg;
1632 			if (si->src_reg == treg || si->dst_reg == treg)
1633 				--treg;
1634 			*insn++ = BPF_STX_MEM(
1635 				BPF_DW, si->dst_reg, treg,
1636 				offsetof(struct bpf_sysctl_kern, tmp_reg));
1637 			*insn++ = BPF_LDX_MEM(
1638 				BPF_FIELD_SIZEOF(struct bpf_sysctl_kern, ppos),
1639 				treg, si->dst_reg,
1640 				offsetof(struct bpf_sysctl_kern, ppos));
1641 			*insn++ = BPF_STX_MEM(
1642 				BPF_SIZEOF(u32), treg, si->src_reg,
1643 				bpf_ctx_narrow_access_offset(
1644 					0, sizeof(u32), sizeof(loff_t)));
1645 			*insn++ = BPF_LDX_MEM(
1646 				BPF_DW, treg, si->dst_reg,
1647 				offsetof(struct bpf_sysctl_kern, tmp_reg));
1648 		} else {
1649 			*insn++ = BPF_LDX_MEM(
1650 				BPF_FIELD_SIZEOF(struct bpf_sysctl_kern, ppos),
1651 				si->dst_reg, si->src_reg,
1652 				offsetof(struct bpf_sysctl_kern, ppos));
1653 			read_size = bpf_size_to_bytes(BPF_SIZE(si->code));
1654 			*insn++ = BPF_LDX_MEM(
1655 				BPF_SIZE(si->code), si->dst_reg, si->dst_reg,
1656 				bpf_ctx_narrow_access_offset(
1657 					0, read_size, sizeof(loff_t)));
1658 		}
1659 		*target_size = sizeof(u32);
1660 		break;
1661 	}
1662 
1663 	return insn - insn_buf;
1664 }
1665 
1666 const struct bpf_verifier_ops cg_sysctl_verifier_ops = {
1667 	.get_func_proto		= sysctl_func_proto,
1668 	.is_valid_access	= sysctl_is_valid_access,
1669 	.convert_ctx_access	= sysctl_convert_ctx_access,
1670 };
1671 
1672 const struct bpf_prog_ops cg_sysctl_prog_ops = {
1673 };
1674 
1675 static const struct bpf_func_proto *
1676 cg_sockopt_func_proto(enum bpf_func_id func_id, const struct bpf_prog *prog)
1677 {
1678 	switch (func_id) {
1679 #ifdef CONFIG_NET
1680 	case BPF_FUNC_sk_storage_get:
1681 		return &bpf_sk_storage_get_proto;
1682 	case BPF_FUNC_sk_storage_delete:
1683 		return &bpf_sk_storage_delete_proto;
1684 #endif
1685 #ifdef CONFIG_INET
1686 	case BPF_FUNC_tcp_sock:
1687 		return &bpf_tcp_sock_proto;
1688 #endif
1689 	default:
1690 		return cgroup_base_func_proto(func_id, prog);
1691 	}
1692 }
1693 
1694 static bool cg_sockopt_is_valid_access(int off, int size,
1695 				       enum bpf_access_type type,
1696 				       const struct bpf_prog *prog,
1697 				       struct bpf_insn_access_aux *info)
1698 {
1699 	const int size_default = sizeof(__u32);
1700 
1701 	if (off < 0 || off >= sizeof(struct bpf_sockopt))
1702 		return false;
1703 
1704 	if (off % size != 0)
1705 		return false;
1706 
1707 	if (type == BPF_WRITE) {
1708 		switch (off) {
1709 		case offsetof(struct bpf_sockopt, retval):
1710 			if (size != size_default)
1711 				return false;
1712 			return prog->expected_attach_type ==
1713 				BPF_CGROUP_GETSOCKOPT;
1714 		case offsetof(struct bpf_sockopt, optname):
1715 			/* fallthrough */
1716 		case offsetof(struct bpf_sockopt, level):
1717 			if (size != size_default)
1718 				return false;
1719 			return prog->expected_attach_type ==
1720 				BPF_CGROUP_SETSOCKOPT;
1721 		case offsetof(struct bpf_sockopt, optlen):
1722 			return size == size_default;
1723 		default:
1724 			return false;
1725 		}
1726 	}
1727 
1728 	switch (off) {
1729 	case offsetof(struct bpf_sockopt, sk):
1730 		if (size != sizeof(__u64))
1731 			return false;
1732 		info->reg_type = PTR_TO_SOCKET;
1733 		break;
1734 	case offsetof(struct bpf_sockopt, optval):
1735 		if (size != sizeof(__u64))
1736 			return false;
1737 		info->reg_type = PTR_TO_PACKET;
1738 		break;
1739 	case offsetof(struct bpf_sockopt, optval_end):
1740 		if (size != sizeof(__u64))
1741 			return false;
1742 		info->reg_type = PTR_TO_PACKET_END;
1743 		break;
1744 	case offsetof(struct bpf_sockopt, retval):
1745 		if (size != size_default)
1746 			return false;
1747 		return prog->expected_attach_type == BPF_CGROUP_GETSOCKOPT;
1748 	default:
1749 		if (size != size_default)
1750 			return false;
1751 		break;
1752 	}
1753 	return true;
1754 }
1755 
1756 #define CG_SOCKOPT_ACCESS_FIELD(T, F)					\
1757 	T(BPF_FIELD_SIZEOF(struct bpf_sockopt_kern, F),			\
1758 	  si->dst_reg, si->src_reg,					\
1759 	  offsetof(struct bpf_sockopt_kern, F))
1760 
1761 static u32 cg_sockopt_convert_ctx_access(enum bpf_access_type type,
1762 					 const struct bpf_insn *si,
1763 					 struct bpf_insn *insn_buf,
1764 					 struct bpf_prog *prog,
1765 					 u32 *target_size)
1766 {
1767 	struct bpf_insn *insn = insn_buf;
1768 
1769 	switch (si->off) {
1770 	case offsetof(struct bpf_sockopt, sk):
1771 		*insn++ = CG_SOCKOPT_ACCESS_FIELD(BPF_LDX_MEM, sk);
1772 		break;
1773 	case offsetof(struct bpf_sockopt, level):
1774 		if (type == BPF_WRITE)
1775 			*insn++ = CG_SOCKOPT_ACCESS_FIELD(BPF_STX_MEM, level);
1776 		else
1777 			*insn++ = CG_SOCKOPT_ACCESS_FIELD(BPF_LDX_MEM, level);
1778 		break;
1779 	case offsetof(struct bpf_sockopt, optname):
1780 		if (type == BPF_WRITE)
1781 			*insn++ = CG_SOCKOPT_ACCESS_FIELD(BPF_STX_MEM, optname);
1782 		else
1783 			*insn++ = CG_SOCKOPT_ACCESS_FIELD(BPF_LDX_MEM, optname);
1784 		break;
1785 	case offsetof(struct bpf_sockopt, optlen):
1786 		if (type == BPF_WRITE)
1787 			*insn++ = CG_SOCKOPT_ACCESS_FIELD(BPF_STX_MEM, optlen);
1788 		else
1789 			*insn++ = CG_SOCKOPT_ACCESS_FIELD(BPF_LDX_MEM, optlen);
1790 		break;
1791 	case offsetof(struct bpf_sockopt, retval):
1792 		if (type == BPF_WRITE)
1793 			*insn++ = CG_SOCKOPT_ACCESS_FIELD(BPF_STX_MEM, retval);
1794 		else
1795 			*insn++ = CG_SOCKOPT_ACCESS_FIELD(BPF_LDX_MEM, retval);
1796 		break;
1797 	case offsetof(struct bpf_sockopt, optval):
1798 		*insn++ = CG_SOCKOPT_ACCESS_FIELD(BPF_LDX_MEM, optval);
1799 		break;
1800 	case offsetof(struct bpf_sockopt, optval_end):
1801 		*insn++ = CG_SOCKOPT_ACCESS_FIELD(BPF_LDX_MEM, optval_end);
1802 		break;
1803 	}
1804 
1805 	return insn - insn_buf;
1806 }
1807 
1808 static int cg_sockopt_get_prologue(struct bpf_insn *insn_buf,
1809 				   bool direct_write,
1810 				   const struct bpf_prog *prog)
1811 {
1812 	/* Nothing to do for sockopt argument. The data is kzalloc'ated.
1813 	 */
1814 	return 0;
1815 }
1816 
1817 const struct bpf_verifier_ops cg_sockopt_verifier_ops = {
1818 	.get_func_proto		= cg_sockopt_func_proto,
1819 	.is_valid_access	= cg_sockopt_is_valid_access,
1820 	.convert_ctx_access	= cg_sockopt_convert_ctx_access,
1821 	.gen_prologue		= cg_sockopt_get_prologue,
1822 };
1823 
1824 const struct bpf_prog_ops cg_sockopt_prog_ops = {
1825 };
1826