2016-11-23 15:52:26 +00:00
|
|
|
#ifndef _BPF_CGROUP_H
|
|
|
|
#define _BPF_CGROUP_H
|
|
|
|
|
|
|
|
#include <linux/jump_label.h>
|
|
|
|
#include <uapi/linux/bpf.h>
|
|
|
|
|
|
|
|
struct sock;
|
|
|
|
struct cgroup;
|
|
|
|
struct sk_buff;
|
|
|
|
|
|
|
|
#ifdef CONFIG_CGROUP_BPF
|
|
|
|
|
|
|
|
extern struct static_key_false cgroup_bpf_enabled_key;
|
|
|
|
#define cgroup_bpf_enabled static_branch_unlikely(&cgroup_bpf_enabled_key)
|
|
|
|
|
|
|
|
struct cgroup_bpf {
|
|
|
|
/*
|
|
|
|
* Store two sets of bpf_prog pointers, one for programs that are
|
|
|
|
* pinned directly to this cgroup, and one for those that are effective
|
|
|
|
* when this cgroup is accessed.
|
|
|
|
*/
|
|
|
|
struct bpf_prog *prog[MAX_BPF_ATTACH_TYPE];
|
2016-12-15 09:53:21 +00:00
|
|
|
struct bpf_prog __rcu *effective[MAX_BPF_ATTACH_TYPE];
|
2016-11-23 15:52:26 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
void cgroup_bpf_put(struct cgroup *cgrp);
|
|
|
|
void cgroup_bpf_inherit(struct cgroup *cgrp, struct cgroup *parent);
|
|
|
|
|
|
|
|
void __cgroup_bpf_update(struct cgroup *cgrp,
|
|
|
|
struct cgroup *parent,
|
|
|
|
struct bpf_prog *prog,
|
|
|
|
enum bpf_attach_type type);
|
|
|
|
|
|
|
|
/* Wrapper for __cgroup_bpf_update() protected by cgroup_mutex */
|
|
|
|
void cgroup_bpf_update(struct cgroup *cgrp,
|
|
|
|
struct bpf_prog *prog,
|
|
|
|
enum bpf_attach_type type);
|
|
|
|
|
2016-12-01 16:48:03 +00:00
|
|
|
int __cgroup_bpf_run_filter_skb(struct sock *sk,
|
|
|
|
struct sk_buff *skb,
|
|
|
|
enum bpf_attach_type type);
|
|
|
|
|
2016-12-01 16:48:04 +00:00
|
|
|
int __cgroup_bpf_run_filter_sk(struct sock *sk,
|
|
|
|
enum bpf_attach_type type);
|
|
|
|
|
2016-12-01 16:48:03 +00:00
|
|
|
/* Wrappers for __cgroup_bpf_run_filter_skb() guarded by cgroup_bpf_enabled. */
|
|
|
|
#define BPF_CGROUP_RUN_PROG_INET_INGRESS(sk, skb) \
|
|
|
|
({ \
|
|
|
|
int __ret = 0; \
|
|
|
|
if (cgroup_bpf_enabled) \
|
|
|
|
__ret = __cgroup_bpf_run_filter_skb(sk, skb, \
|
|
|
|
BPF_CGROUP_INET_INGRESS); \
|
|
|
|
\
|
|
|
|
__ret; \
|
2016-11-23 15:52:26 +00:00
|
|
|
})
|
|
|
|
|
2016-12-01 16:48:03 +00:00
|
|
|
#define BPF_CGROUP_RUN_PROG_INET_EGRESS(sk, skb) \
|
|
|
|
({ \
|
|
|
|
int __ret = 0; \
|
|
|
|
if (cgroup_bpf_enabled && sk && sk == skb->sk) { \
|
|
|
|
typeof(sk) __sk = sk_to_full_sk(sk); \
|
|
|
|
if (sk_fullsock(__sk)) \
|
|
|
|
__ret = __cgroup_bpf_run_filter_skb(__sk, skb, \
|
|
|
|
BPF_CGROUP_INET_EGRESS); \
|
|
|
|
} \
|
|
|
|
__ret; \
|
2016-11-23 15:52:26 +00:00
|
|
|
})
|
|
|
|
|
2016-12-01 16:48:04 +00:00
|
|
|
#define BPF_CGROUP_RUN_PROG_INET_SOCK(sk) \
|
|
|
|
({ \
|
|
|
|
int __ret = 0; \
|
|
|
|
if (cgroup_bpf_enabled && sk) { \
|
|
|
|
__ret = __cgroup_bpf_run_filter_sk(sk, \
|
|
|
|
BPF_CGROUP_INET_SOCK_CREATE); \
|
|
|
|
} \
|
|
|
|
__ret; \
|
|
|
|
})
|
|
|
|
|
2016-11-23 15:52:26 +00:00
|
|
|
#else
|
|
|
|
|
|
|
|
struct cgroup_bpf {};
|
|
|
|
static inline void cgroup_bpf_put(struct cgroup *cgrp) {}
|
|
|
|
static inline void cgroup_bpf_inherit(struct cgroup *cgrp,
|
|
|
|
struct cgroup *parent) {}
|
|
|
|
|
|
|
|
#define BPF_CGROUP_RUN_PROG_INET_INGRESS(sk,skb) ({ 0; })
|
|
|
|
#define BPF_CGROUP_RUN_PROG_INET_EGRESS(sk,skb) ({ 0; })
|
2016-12-01 16:48:04 +00:00
|
|
|
#define BPF_CGROUP_RUN_PROG_INET_SOCK(sk) ({ 0; })
|
2016-11-23 15:52:26 +00:00
|
|
|
|
|
|
|
#endif /* CONFIG_CGROUP_BPF */
|
|
|
|
|
|
|
|
#endif /* _BPF_CGROUP_H */
|