blob: 0ff58259ccf84709a31a8f613dbbdaa417661d98 [file] [log] [blame]
KP Singhfc611f42020-03-29 01:43:49 +01001// SPDX-License-Identifier: GPL-2.0
2
3/*
4 * Copyright (C) 2020 Google LLC.
5 */
6
7#include <linux/filter.h>
8#include <linux/bpf.h>
9#include <linux/btf.h>
KP Singh3f6719c2020-11-17 23:29:28 +000010#include <linux/binfmts.h>
KP Singh9d3fdea2020-03-29 01:43:51 +010011#include <linux/lsm_hooks.h>
12#include <linux/bpf_lsm.h>
KP Singh9e4e01d2020-03-29 01:43:52 +010013#include <linux/kallsyms.h>
14#include <linux/bpf_verifier.h>
KP Singh30897832020-08-25 20:29:18 +020015#include <net/bpf_sk_storage.h>
16#include <linux/bpf_local_storage.h>
KP Singh6f64e472020-11-05 23:06:51 +000017#include <linux/btf_ids.h>
KP Singh27672f02020-11-24 15:12:09 +000018#include <linux/ima.h>
KP Singh9d3fdea2020-03-29 01:43:51 +010019
20/* For every LSM hook that allows attachment of BPF programs, declare a nop
21 * function where a BPF program can be attached.
22 */
23#define LSM_HOOK(RET, DEFAULT, NAME, ...) \
24noinline RET bpf_lsm_##NAME(__VA_ARGS__) \
25{ \
26 return DEFAULT; \
27}
28
29#include <linux/lsm_hook_defs.h>
30#undef LSM_HOOK
KP Singhfc611f42020-03-29 01:43:49 +010031
KP Singh6f64e472020-11-05 23:06:51 +000032#define LSM_HOOK(RET, DEFAULT, NAME, ...) BTF_ID(func, bpf_lsm_##NAME)
33BTF_SET_START(bpf_lsm_hooks)
34#include <linux/lsm_hook_defs.h>
35#undef LSM_HOOK
36BTF_SET_END(bpf_lsm_hooks)
KP Singh9e4e01d2020-03-29 01:43:52 +010037
38int bpf_lsm_verify_prog(struct bpf_verifier_log *vlog,
39 const struct bpf_prog *prog)
40{
41 if (!prog->gpl_compatible) {
42 bpf_log(vlog,
43 "LSM programs must have a GPL compatible license\n");
44 return -EINVAL;
45 }
46
KP Singh6f64e472020-11-05 23:06:51 +000047 if (!btf_id_set_contains(&bpf_lsm_hooks, prog->aux->attach_btf_id)) {
KP Singh9e4e01d2020-03-29 01:43:52 +010048 bpf_log(vlog, "attach_btf_id %u points to wrong type name %s\n",
49 prog->aux->attach_btf_id, prog->aux->attach_func_name);
50 return -EINVAL;
51 }
52
53 return 0;
54}
55
KP Singh3f6719c2020-11-17 23:29:28 +000056/* Mask for all the currently supported BPRM option flags */
57#define BPF_F_BRPM_OPTS_MASK BPF_F_BPRM_SECUREEXEC
58
59BPF_CALL_2(bpf_bprm_opts_set, struct linux_binprm *, bprm, u64, flags)
60{
61 if (flags & ~BPF_F_BRPM_OPTS_MASK)
62 return -EINVAL;
63
64 bprm->secureexec = (flags & BPF_F_BPRM_SECUREEXEC);
65 return 0;
66}
67
68BTF_ID_LIST_SINGLE(bpf_bprm_opts_set_btf_ids, struct, linux_binprm)
69
70const static struct bpf_func_proto bpf_bprm_opts_set_proto = {
71 .func = bpf_bprm_opts_set,
72 .gpl_only = false,
73 .ret_type = RET_INTEGER,
74 .arg1_type = ARG_PTR_TO_BTF_ID,
75 .arg1_btf_id = &bpf_bprm_opts_set_btf_ids[0],
76 .arg2_type = ARG_ANYTHING,
77};
78
KP Singh27672f02020-11-24 15:12:09 +000079BPF_CALL_3(bpf_ima_inode_hash, struct inode *, inode, void *, dst, u32, size)
80{
81 return ima_inode_hash(inode, dst, size);
82}
83
84static bool bpf_ima_inode_hash_allowed(const struct bpf_prog *prog)
85{
86 return bpf_lsm_is_sleepable_hook(prog->aux->attach_btf_id);
87}
88
89BTF_ID_LIST_SINGLE(bpf_ima_inode_hash_btf_ids, struct, inode)
90
91const static struct bpf_func_proto bpf_ima_inode_hash_proto = {
92 .func = bpf_ima_inode_hash,
93 .gpl_only = false,
94 .ret_type = RET_INTEGER,
95 .arg1_type = ARG_PTR_TO_BTF_ID,
96 .arg1_btf_id = &bpf_ima_inode_hash_btf_ids[0],
97 .arg2_type = ARG_PTR_TO_UNINIT_MEM,
98 .arg3_type = ARG_CONST_SIZE,
99 .allowed = bpf_ima_inode_hash_allowed,
100};
101
KP Singh30897832020-08-25 20:29:18 +0200102static const struct bpf_func_proto *
103bpf_lsm_func_proto(enum bpf_func_id func_id, const struct bpf_prog *prog)
104{
105 switch (func_id) {
106 case BPF_FUNC_inode_storage_get:
107 return &bpf_inode_storage_get_proto;
108 case BPF_FUNC_inode_storage_delete:
109 return &bpf_inode_storage_delete_proto;
110 case BPF_FUNC_sk_storage_get:
Martin KaFai Lau592a3492020-09-24 17:04:02 -0700111 return &bpf_sk_storage_get_proto;
KP Singh30897832020-08-25 20:29:18 +0200112 case BPF_FUNC_sk_storage_delete:
Martin KaFai Lau592a3492020-09-24 17:04:02 -0700113 return &bpf_sk_storage_delete_proto;
KP Singh9e7a4d92020-11-06 10:37:39 +0000114 case BPF_FUNC_spin_lock:
115 return &bpf_spin_lock_proto;
116 case BPF_FUNC_spin_unlock:
117 return &bpf_spin_unlock_proto;
KP Singh4cf1bc12020-11-06 10:37:40 +0000118 case BPF_FUNC_task_storage_get:
119 return &bpf_task_storage_get_proto;
120 case BPF_FUNC_task_storage_delete:
121 return &bpf_task_storage_delete_proto;
KP Singh3f6719c2020-11-17 23:29:28 +0000122 case BPF_FUNC_bprm_opts_set:
123 return &bpf_bprm_opts_set_proto;
KP Singh27672f02020-11-24 15:12:09 +0000124 case BPF_FUNC_ima_inode_hash:
125 return prog->aux->sleepable ? &bpf_ima_inode_hash_proto : NULL;
KP Singh30897832020-08-25 20:29:18 +0200126 default:
127 return tracing_prog_func_proto(func_id, prog);
128 }
129}
130
KP Singh423f1612020-11-13 00:59:29 +0000131/* The set of hooks which are called without pagefaults disabled and are allowed
132 * to "sleep" and thus can be used for sleeable BPF programs.
133 */
134BTF_SET_START(sleepable_lsm_hooks)
135BTF_ID(func, bpf_lsm_bpf)
136BTF_ID(func, bpf_lsm_bpf_map)
137BTF_ID(func, bpf_lsm_bpf_map_alloc_security)
138BTF_ID(func, bpf_lsm_bpf_map_free_security)
139BTF_ID(func, bpf_lsm_bpf_prog)
140BTF_ID(func, bpf_lsm_bprm_check_security)
141BTF_ID(func, bpf_lsm_bprm_committed_creds)
142BTF_ID(func, bpf_lsm_bprm_committing_creds)
143BTF_ID(func, bpf_lsm_bprm_creds_for_exec)
144BTF_ID(func, bpf_lsm_bprm_creds_from_file)
145BTF_ID(func, bpf_lsm_capget)
146BTF_ID(func, bpf_lsm_capset)
147BTF_ID(func, bpf_lsm_cred_prepare)
148BTF_ID(func, bpf_lsm_file_ioctl)
149BTF_ID(func, bpf_lsm_file_lock)
150BTF_ID(func, bpf_lsm_file_open)
151BTF_ID(func, bpf_lsm_file_receive)
Mikko Ylinen78031382021-01-25 08:39:36 +0200152
153#ifdef CONFIG_SECURITY_NETWORK
KP Singh423f1612020-11-13 00:59:29 +0000154BTF_ID(func, bpf_lsm_inet_conn_established)
Mikko Ylinen78031382021-01-25 08:39:36 +0200155#endif /* CONFIG_SECURITY_NETWORK */
156
KP Singh423f1612020-11-13 00:59:29 +0000157BTF_ID(func, bpf_lsm_inode_create)
158BTF_ID(func, bpf_lsm_inode_free_security)
159BTF_ID(func, bpf_lsm_inode_getattr)
160BTF_ID(func, bpf_lsm_inode_getxattr)
161BTF_ID(func, bpf_lsm_inode_mknod)
162BTF_ID(func, bpf_lsm_inode_need_killpriv)
163BTF_ID(func, bpf_lsm_inode_post_setxattr)
164BTF_ID(func, bpf_lsm_inode_readlink)
165BTF_ID(func, bpf_lsm_inode_rename)
166BTF_ID(func, bpf_lsm_inode_rmdir)
167BTF_ID(func, bpf_lsm_inode_setattr)
168BTF_ID(func, bpf_lsm_inode_setxattr)
169BTF_ID(func, bpf_lsm_inode_symlink)
170BTF_ID(func, bpf_lsm_inode_unlink)
171BTF_ID(func, bpf_lsm_kernel_module_request)
172BTF_ID(func, bpf_lsm_kernfs_init_security)
Mikko Ylinen78031382021-01-25 08:39:36 +0200173
174#ifdef CONFIG_KEYS
KP Singh423f1612020-11-13 00:59:29 +0000175BTF_ID(func, bpf_lsm_key_free)
Mikko Ylinen78031382021-01-25 08:39:36 +0200176#endif /* CONFIG_KEYS */
177
KP Singh423f1612020-11-13 00:59:29 +0000178BTF_ID(func, bpf_lsm_mmap_file)
179BTF_ID(func, bpf_lsm_netlink_send)
180BTF_ID(func, bpf_lsm_path_notify)
181BTF_ID(func, bpf_lsm_release_secctx)
182BTF_ID(func, bpf_lsm_sb_alloc_security)
183BTF_ID(func, bpf_lsm_sb_eat_lsm_opts)
184BTF_ID(func, bpf_lsm_sb_kern_mount)
185BTF_ID(func, bpf_lsm_sb_mount)
186BTF_ID(func, bpf_lsm_sb_remount)
187BTF_ID(func, bpf_lsm_sb_set_mnt_opts)
188BTF_ID(func, bpf_lsm_sb_show_options)
189BTF_ID(func, bpf_lsm_sb_statfs)
190BTF_ID(func, bpf_lsm_sb_umount)
191BTF_ID(func, bpf_lsm_settime)
Mikko Ylinen78031382021-01-25 08:39:36 +0200192
193#ifdef CONFIG_SECURITY_NETWORK
KP Singh423f1612020-11-13 00:59:29 +0000194BTF_ID(func, bpf_lsm_socket_accept)
195BTF_ID(func, bpf_lsm_socket_bind)
196BTF_ID(func, bpf_lsm_socket_connect)
197BTF_ID(func, bpf_lsm_socket_create)
198BTF_ID(func, bpf_lsm_socket_getpeername)
199BTF_ID(func, bpf_lsm_socket_getpeersec_dgram)
200BTF_ID(func, bpf_lsm_socket_getsockname)
201BTF_ID(func, bpf_lsm_socket_getsockopt)
202BTF_ID(func, bpf_lsm_socket_listen)
203BTF_ID(func, bpf_lsm_socket_post_create)
204BTF_ID(func, bpf_lsm_socket_recvmsg)
205BTF_ID(func, bpf_lsm_socket_sendmsg)
206BTF_ID(func, bpf_lsm_socket_shutdown)
207BTF_ID(func, bpf_lsm_socket_socketpair)
Mikko Ylinen78031382021-01-25 08:39:36 +0200208#endif /* CONFIG_SECURITY_NETWORK */
209
KP Singh423f1612020-11-13 00:59:29 +0000210BTF_ID(func, bpf_lsm_syslog)
211BTF_ID(func, bpf_lsm_task_alloc)
Paul Moore4ebd7652021-02-19 14:26:21 -0500212BTF_ID(func, bpf_lsm_task_getsecid_subj)
213BTF_ID(func, bpf_lsm_task_getsecid_obj)
KP Singh423f1612020-11-13 00:59:29 +0000214BTF_ID(func, bpf_lsm_task_prctl)
215BTF_ID(func, bpf_lsm_task_setscheduler)
216BTF_ID(func, bpf_lsm_task_to_inode)
217BTF_SET_END(sleepable_lsm_hooks)
218
219bool bpf_lsm_is_sleepable_hook(u32 btf_id)
220{
221 return btf_id_set_contains(&sleepable_lsm_hooks, btf_id);
222}
223
KP Singhfc611f42020-03-29 01:43:49 +0100224const struct bpf_prog_ops lsm_prog_ops = {
225};
226
227const struct bpf_verifier_ops lsm_verifier_ops = {
KP Singh30897832020-08-25 20:29:18 +0200228 .get_func_proto = bpf_lsm_func_proto,
KP Singhfc611f42020-03-29 01:43:49 +0100229 .is_valid_access = btf_ctx_access,
230};