Re: [PATCH net-next 2/4] security: bpf: Add LSM hooks for bpf object related syscall
From: James Morris <hidden>
Date: 2017-10-12 00:31:34
Also in:
linux-security-module, selinux
From: James Morris <hidden>
Date: 2017-10-12 00:31:34
Also in:
linux-security-module, selinux
On Wed, 4 Oct 2017, Chenbo Feng wrote:
int bpf_map_new_fd(struct bpf_map *map, int flags)
{
+ if (security_bpf_map(map, OPEN_FMODE(flags)))
+ return -EPERM;
+Don't hardcode -EPERM here, return the actual error from security_bpf_map().
+ if (security_bpf_prog(prog)) + return -EPERM; +
Same.
+ err = security_bpf(cmd, &attr, size); + if (err) + return -EPERM;
Same. - James