Skip to content

Commit

Permalink
net: switch copy_bpf_fprog_from_user to sockptr_t
Browse files Browse the repository at this point in the history
Pass a sockptr_t to prepare for set_fs-less handling of the kernel
pointer from bpf-cgroup.

Signed-off-by: Christoph Hellwig <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
  • Loading branch information
Christoph Hellwig authored and davem330 committed Jul 24, 2020
1 parent ba423fd commit b1ea9ff
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 8 deletions.
3 changes: 2 additions & 1 deletion include/linux/filter.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
#include <linux/kallsyms.h>
#include <linux/if_vlan.h>
#include <linux/vmalloc.h>
#include <linux/sockptr.h>
#include <crypto/sha.h>

#include <net/sch_generic.h>
Expand Down Expand Up @@ -1276,7 +1277,7 @@ struct bpf_sockopt_kern {
s32 retval;
};

int copy_bpf_fprog_from_user(struct sock_fprog *dst, void __user *src, int len);
int copy_bpf_fprog_from_user(struct sock_fprog *dst, sockptr_t src, int len);

struct bpf_sk_lookup_kern {
u16 family;
Expand Down
6 changes: 3 additions & 3 deletions net/core/filter.c
Original file line number Diff line number Diff line change
Expand Up @@ -77,22 +77,22 @@
#include <net/transp_v6.h>
#include <linux/btf_ids.h>

int copy_bpf_fprog_from_user(struct sock_fprog *dst, void __user *src, int len)
int copy_bpf_fprog_from_user(struct sock_fprog *dst, sockptr_t src, int len)
{
if (in_compat_syscall()) {
struct compat_sock_fprog f32;

if (len != sizeof(f32))
return -EINVAL;
if (copy_from_user(&f32, src, sizeof(f32)))
if (copy_from_sockptr(&f32, src, sizeof(f32)))
return -EFAULT;
memset(dst, 0, sizeof(*dst));
dst->len = f32.len;
dst->filter = compat_ptr(f32.filter);
} else {
if (len != sizeof(*dst))
return -EINVAL;
if (copy_from_user(dst, src, sizeof(*dst)))
if (copy_from_sockptr(dst, src, sizeof(*dst)))
return -EFAULT;
}

Expand Down
6 changes: 4 additions & 2 deletions net/core/sock.c
Original file line number Diff line number Diff line change
Expand Up @@ -1063,7 +1063,8 @@ int sock_setsockopt(struct socket *sock, int level, int optname,
case SO_ATTACH_FILTER: {
struct sock_fprog fprog;

ret = copy_bpf_fprog_from_user(&fprog, optval, optlen);
ret = copy_bpf_fprog_from_user(&fprog, USER_SOCKPTR(optval),
optlen);
if (!ret)
ret = sk_attach_filter(&fprog, sk);
break;
Expand All @@ -1084,7 +1085,8 @@ int sock_setsockopt(struct socket *sock, int level, int optname,
case SO_ATTACH_REUSEPORT_CBPF: {
struct sock_fprog fprog;

ret = copy_bpf_fprog_from_user(&fprog, optval, optlen);
ret = copy_bpf_fprog_from_user(&fprog, USER_SOCKPTR(optval),
optlen);
if (!ret)
ret = sk_reuseport_attach_filter(&fprog, sk);
break;
Expand Down
4 changes: 2 additions & 2 deletions net/packet/af_packet.c
Original file line number Diff line number Diff line change
Expand Up @@ -1536,7 +1536,7 @@ static void __fanout_set_data_bpf(struct packet_fanout *f, struct bpf_prog *new)
}
}

static int fanout_set_data_cbpf(struct packet_sock *po, char __user *data,
static int fanout_set_data_cbpf(struct packet_sock *po, sockptr_t data,
unsigned int len)
{
struct bpf_prog *new;
Expand Down Expand Up @@ -1584,7 +1584,7 @@ static int fanout_set_data(struct packet_sock *po, char __user *data,
{
switch (po->fanout->type) {
case PACKET_FANOUT_CBPF:
return fanout_set_data_cbpf(po, data, len);
return fanout_set_data_cbpf(po, USER_SOCKPTR(data), len);
case PACKET_FANOUT_EBPF:
return fanout_set_data_ebpf(po, data, len);
default:
Expand Down

0 comments on commit b1ea9ff

Please sign in to comment.