Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net
authorLinus Torvalds <torvalds@linux-foundation.org>
Mon, 29 Oct 2018 03:17:49 +0000 (20:17 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Mon, 29 Oct 2018 03:17:49 +0000 (20:17 -0700)
Pull networking fixes from David Miller:

 1) GRO overflow entries are not unlinked properly, resulting in list
    poison pointers being dereferenced.

 2) Fix bridge build with ipv6 disabled, from Nikolay Aleksandrov.

 3) Direct packet access and other fixes in BPF from Daniel Borkmann.

 4) gred_change_table_def() gets passed the wrong pointer, a pointer to
    a set of unparsed attributes instead of the attribute itself. From
    Jakub Kicinski.

 5) Allow macsec device to be brought up even if it's lowerdev is down,
    from Sabrina Dubroca.

* git://git.kernel.org/pub/scm/linux/kernel/git/davem/net:
  net: diag: document swapped src/dst in udp_dump_one.
  macsec: let the administrator set UP state even if lowerdev is down
  macsec: update operstate when lower device changes
  net: sched: gred: pass the right attribute to gred_change_table_def()
  ptp: drop redundant kasprintf() to create worker name
  net: bridge: remove ipv6 zero address check in mcast queries
  net: Properly unlink GRO packets on overflow.
  bpf: fix wrong helper enablement in cgroup local storage
  bpf: add bpf_jit_limit knob to restrict unpriv allocations
  bpf: make direct packet write unclone more robust
  bpf: fix leaking uninitialized memory on pop/peek helpers
  bpf: fix direct packet write into pop/peek helpers
  bpf: fix cg_skb types to hint access type in may_access_direct_pkt_data
  bpf: fix direct packet access for flow dissector progs
  bpf: disallow direct packet access for unpriv in cg_skb
  bpf: fix test suite to enable all unpriv program types
  bpf, btf: fix a missing check bug in btf_parse
  selftests/bpf: add config fragments BPF_STREAM_PARSER and XDP_SOCKETS
  bpf: devmap: fix wrong interface selection in notifier_call

18 files changed:
Documentation/sysctl/net.txt
drivers/net/macsec.c
drivers/ptp/ptp_clock.c
include/linux/filter.h
kernel/bpf/btf.c
kernel/bpf/core.c
kernel/bpf/devmap.c
kernel/bpf/helpers.c
kernel/bpf/queue_stack_maps.c
kernel/bpf/verifier.c
net/bridge/br_multicast.c
net/core/dev.c
net/core/filter.c
net/core/sysctl_net_core.c
net/ipv4/udp_diag.c
net/sched/sch_gred.c
tools/testing/selftests/bpf/config
tools/testing/selftests/bpf/test_verifier.c

index 9ecde51..2793d4e 100644 (file)
@@ -92,6 +92,14 @@ Values :
        0 - disable JIT kallsyms export (default value)
        1 - enable JIT kallsyms export for privileged users only
 
+bpf_jit_limit
+-------------
+
+This enforces a global limit for memory allocations to the BPF JIT
+compiler in order to reject unprivileged JIT requests once it has
+been surpassed. bpf_jit_limit contains the value of the global limit
+in bytes.
+
 dev_weight
 --------------
 
index 4bb90b6..64a9825 100644 (file)
@@ -2812,9 +2812,6 @@ static int macsec_dev_open(struct net_device *dev)
        struct net_device *real_dev = macsec->real_dev;
        int err;
 
-       if (!(real_dev->flags & IFF_UP))
-               return -ENETDOWN;
-
        err = dev_uc_add(real_dev, dev->dev_addr);
        if (err < 0)
                return err;
@@ -3306,6 +3303,9 @@ static int macsec_newlink(struct net *net, struct net_device *dev,
        if (err < 0)
                goto del_dev;
 
+       netif_stacked_transfer_operstate(real_dev, dev);
+       linkwatch_fire_event(dev);
+
        macsec_generation++;
 
        return 0;
@@ -3490,6 +3490,20 @@ static int macsec_notify(struct notifier_block *this, unsigned long event,
                return NOTIFY_DONE;
 
        switch (event) {
+       case NETDEV_DOWN:
+       case NETDEV_UP:
+       case NETDEV_CHANGE: {
+               struct macsec_dev *m, *n;
+               struct macsec_rxh_data *rxd;
+
+               rxd = macsec_data_rtnl(real_dev);
+               list_for_each_entry_safe(m, n, &rxd->secys, secys) {
+                       struct net_device *dev = m->secy.netdev;
+
+                       netif_stacked_transfer_operstate(real_dev, dev);
+               }
+               break;
+       }
        case NETDEV_UNREGISTER: {
                struct macsec_dev *m, *n;
                struct macsec_rxh_data *rxd;
index 7eacc1c..5419a89 100644 (file)
@@ -232,12 +232,8 @@ struct ptp_clock *ptp_clock_register(struct ptp_clock_info *info,
        init_waitqueue_head(&ptp->tsev_wq);
 
        if (ptp->info->do_aux_work) {
-               char *worker_name = kasprintf(GFP_KERNEL, "ptp%d", ptp->index);
-
                kthread_init_delayed_work(&ptp->aux_work, ptp_aux_kworker);
-               ptp->kworker = kthread_create_worker(0, worker_name ?
-                                                    worker_name : info->name);
-               kfree(worker_name);
+               ptp->kworker = kthread_create_worker(0, "ptp%d", ptp->index);
                if (IS_ERR(ptp->kworker)) {
                        err = PTR_ERR(ptp->kworker);
                        pr_err("failed to create ptp aux_worker %d\n", err);
index 91b4c93..de629b7 100644 (file)
@@ -854,6 +854,7 @@ bpf_run_sk_reuseport(struct sock_reuseport *reuse, struct sock *sk,
 extern int bpf_jit_enable;
 extern int bpf_jit_harden;
 extern int bpf_jit_kallsyms;
+extern int bpf_jit_limit;
 
 typedef void (*bpf_jit_fill_hole_t)(void *area, unsigned int size);
 
index 378cef7..ee4c826 100644 (file)
@@ -2067,56 +2067,47 @@ static int btf_check_sec_info(struct btf_verifier_env *env,
        return 0;
 }
 
-static int btf_parse_hdr(struct btf_verifier_env *env, void __user *btf_data,
-                        u32 btf_data_size)
+static int btf_parse_hdr(struct btf_verifier_env *env)
 {
+       u32 hdr_len, hdr_copy, btf_data_size;
        const struct btf_header *hdr;
-       u32 hdr_len, hdr_copy;
-       /*
-        * Minimal part of the "struct btf_header" that
-        * contains the hdr_len.
-        */
-       struct btf_min_header {
-               u16     magic;
-               u8      version;
-               u8      flags;
-               u32     hdr_len;
-       } __user *min_hdr;
        struct btf *btf;
        int err;
 
        btf = env->btf;
-       min_hdr = btf_data;
+       btf_data_size = btf->data_size;
 
-       if (btf_data_size < sizeof(*min_hdr)) {
+       if (btf_data_size <
+           offsetof(struct btf_header, hdr_len) + sizeof(hdr->hdr_len)) {
                btf_verifier_log(env, "hdr_len not found");
                return -EINVAL;
        }
 
-       if (get_user(hdr_len, &min_hdr->hdr_len))
-               return -EFAULT;
-
+       hdr = btf->data;
+       hdr_len = hdr->hdr_len;
        if (btf_data_size < hdr_len) {
                btf_verifier_log(env, "btf_header not found");
                return -EINVAL;
        }
 
-       err = bpf_check_uarg_tail_zero(btf_data, sizeof(btf->hdr), hdr_len);
-       if (err) {
-               if (err == -E2BIG)
-                       btf_verifier_log(env, "Unsupported btf_header");
-               return err;
+       /* Ensure the unsupported header fields are zero */
+       if (hdr_len > sizeof(btf->hdr)) {
+               u8 *expected_zero = btf->data + sizeof(btf->hdr);
+               u8 *end = btf->data + hdr_len;
+
+               for (; expected_zero < end; expected_zero++) {
+                       if (*expected_zero) {
+                               btf_verifier_log(env, "Unsupported btf_header");
+                               return -E2BIG;
+                       }
+               }
        }
 
        hdr_copy = min_t(u32, hdr_len, sizeof(btf->hdr));
-       if (copy_from_user(&btf->hdr, btf_data, hdr_copy))
-               return -EFAULT;
+       memcpy(&btf->hdr, btf->data, hdr_copy);
 
        hdr = &btf->hdr;
 
-       if (hdr->hdr_len != hdr_len)
-               return -EINVAL;
-
        btf_verifier_log_hdr(env, btf_data_size);
 
        if (hdr->magic != BTF_MAGIC) {
@@ -2186,10 +2177,6 @@ static struct btf *btf_parse(void __user *btf_data, u32 btf_data_size,
        }
        env->btf = btf;
 
-       err = btf_parse_hdr(env, btf_data, btf_data_size);
-       if (err)
-               goto errout;
-
        data = kvmalloc(btf_data_size, GFP_KERNEL | __GFP_NOWARN);
        if (!data) {
                err = -ENOMEM;
@@ -2198,13 +2185,18 @@ static struct btf *btf_parse(void __user *btf_data, u32 btf_data_size,
 
        btf->data = data;
        btf->data_size = btf_data_size;
-       btf->nohdr_data = btf->data + btf->hdr.hdr_len;
 
        if (copy_from_user(data, btf_data, btf_data_size)) {
                err = -EFAULT;
                goto errout;
        }
 
+       err = btf_parse_hdr(env);
+       if (err)
+               goto errout;
+
+       btf->nohdr_data = btf->data + btf->hdr.hdr_len;
+
        err = btf_parse_str_sec(env);
        if (err)
                goto errout;
index 7c7eeea..6377225 100644 (file)
@@ -365,10 +365,13 @@ void bpf_prog_kallsyms_del_all(struct bpf_prog *fp)
 }
 
 #ifdef CONFIG_BPF_JIT
+# define BPF_JIT_LIMIT_DEFAULT (PAGE_SIZE * 40000)
+
 /* All BPF JIT sysctl knobs here. */
 int bpf_jit_enable   __read_mostly = IS_BUILTIN(CONFIG_BPF_JIT_ALWAYS_ON);
 int bpf_jit_harden   __read_mostly;
 int bpf_jit_kallsyms __read_mostly;
+int bpf_jit_limit    __read_mostly = BPF_JIT_LIMIT_DEFAULT;
 
 static __always_inline void
 bpf_get_prog_addr_region(const struct bpf_prog *prog,
@@ -577,27 +580,64 @@ int bpf_get_kallsym(unsigned int symnum, unsigned long *value, char *type,
        return ret;
 }
 
+static atomic_long_t bpf_jit_current;
+
+#if defined(MODULES_VADDR)
+static int __init bpf_jit_charge_init(void)
+{
+       /* Only used as heuristic here to derive limit. */
+       bpf_jit_limit = min_t(u64, round_up((MODULES_END - MODULES_VADDR) >> 2,
+                                           PAGE_SIZE), INT_MAX);
+       return 0;
+}
+pure_initcall(bpf_jit_charge_init);
+#endif
+
+static int bpf_jit_charge_modmem(u32 pages)
+{
+       if (atomic_long_add_return(pages, &bpf_jit_current) >
+           (bpf_jit_limit >> PAGE_SHIFT)) {
+               if (!capable(CAP_SYS_ADMIN)) {
+                       atomic_long_sub(pages, &bpf_jit_current);
+                       return -EPERM;
+               }
+       }
+
+       return 0;
+}
+
+static void bpf_jit_uncharge_modmem(u32 pages)
+{
+       atomic_long_sub(pages, &bpf_jit_current);
+}
+
 struct bpf_binary_header *
 bpf_jit_binary_alloc(unsigned int proglen, u8 **image_ptr,
                     unsigned int alignment,
                     bpf_jit_fill_hole_t bpf_fill_ill_insns)
 {
        struct bpf_binary_header *hdr;
-       unsigned int size, hole, start;
+       u32 size, hole, start, pages;
 
        /* Most of BPF filters are really small, but if some of them
         * fill a page, allow at least 128 extra bytes to insert a
         * random section of illegal instructions.
         */
        size = round_up(proglen + sizeof(*hdr) + 128, PAGE_SIZE);
+       pages = size / PAGE_SIZE;
+
+       if (bpf_jit_charge_modmem(pages))
+               return NULL;
        hdr = module_alloc(size);
-       if (hdr == NULL)
+       if (!hdr) {
+               bpf_jit_uncharge_modmem(pages);
                return NULL;
+       }
 
        /* Fill space with illegal/arch-dep instructions. */
        bpf_fill_ill_insns(hdr, size);
 
-       hdr->pages = size / PAGE_SIZE;
+       hdr->pages = pages;
        hole = min_t(unsigned int, size - (proglen + sizeof(*hdr)),
                     PAGE_SIZE - sizeof(*hdr));
        start = (get_random_int() % hole) & ~(alignment - 1);
@@ -610,7 +650,10 @@ bpf_jit_binary_alloc(unsigned int proglen, u8 **image_ptr,
 
 void bpf_jit_binary_free(struct bpf_binary_header *hdr)
 {
+       u32 pages = hdr->pages;
+
        module_memfree(hdr);
+       bpf_jit_uncharge_modmem(pages);
 }
 
 /* This symbol is only overridden by archs that have different
index 141710b..191b799 100644 (file)
@@ -512,8 +512,7 @@ static int dev_map_notification(struct notifier_block *notifier,
                                struct bpf_dtab_netdev *dev, *odev;
 
                                dev = READ_ONCE(dtab->netdev_map[i]);
-                               if (!dev ||
-                                   dev->dev->ifindex != netdev->ifindex)
+                               if (!dev || netdev != dev->dev)
                                        continue;
                                odev = cmpxchg(&dtab->netdev_map[i], dev, NULL);
                                if (dev == odev)
index ab0d5e3..a74972b 100644 (file)
@@ -99,7 +99,6 @@ BPF_CALL_2(bpf_map_pop_elem, struct bpf_map *, map, void *, value)
 const struct bpf_func_proto bpf_map_pop_elem_proto = {
        .func           = bpf_map_pop_elem,
        .gpl_only       = false,
-       .pkt_access     = true,
        .ret_type       = RET_INTEGER,
        .arg1_type      = ARG_CONST_MAP_PTR,
        .arg2_type      = ARG_PTR_TO_UNINIT_MAP_VALUE,
@@ -113,7 +112,6 @@ BPF_CALL_2(bpf_map_peek_elem, struct bpf_map *, map, void *, value)
 const struct bpf_func_proto bpf_map_peek_elem_proto = {
        .func           = bpf_map_pop_elem,
        .gpl_only       = false,
-       .pkt_access     = true,
        .ret_type       = RET_INTEGER,
        .arg1_type      = ARG_CONST_MAP_PTR,
        .arg2_type      = ARG_PTR_TO_UNINIT_MAP_VALUE,
index 12a93fb..8bbd72d 100644 (file)
@@ -122,6 +122,7 @@ static int __queue_map_get(struct bpf_map *map, void *value, bool delete)
        raw_spin_lock_irqsave(&qs->lock, flags);
 
        if (queue_stack_map_is_empty(qs)) {
+               memset(value, 0, qs->map.value_size);
                err = -ENOENT;
                goto out;
        }
@@ -151,6 +152,7 @@ static int __stack_map_get(struct bpf_map *map, void *value, bool delete)
        raw_spin_lock_irqsave(&qs->lock, flags);
 
        if (queue_stack_map_is_empty(qs)) {
+               memset(value, 0, qs->map.value_size);
                err = -ENOENT;
                goto out;
        }
index 98fa0be..171a2c8 100644 (file)
@@ -1387,21 +1387,24 @@ static bool may_access_direct_pkt_data(struct bpf_verifier_env *env,
                                       enum bpf_access_type t)
 {
        switch (env->prog->type) {
+       /* Program types only with direct read access go here! */
        case BPF_PROG_TYPE_LWT_IN:
        case BPF_PROG_TYPE_LWT_OUT:
        case BPF_PROG_TYPE_LWT_SEG6LOCAL:
        case BPF_PROG_TYPE_SK_REUSEPORT:
-               /* dst_input() and dst_output() can't write for now */
+       case BPF_PROG_TYPE_FLOW_DISSECTOR:
+       case BPF_PROG_TYPE_CGROUP_SKB:
                if (t == BPF_WRITE)
                        return false;
                /* fallthrough */
+
+       /* Program types with direct read + write access go here! */
        case BPF_PROG_TYPE_SCHED_CLS:
        case BPF_PROG_TYPE_SCHED_ACT:
        case BPF_PROG_TYPE_XDP:
        case BPF_PROG_TYPE_LWT_XMIT:
        case BPF_PROG_TYPE_SK_SKB:
        case BPF_PROG_TYPE_SK_MSG:
-       case BPF_PROG_TYPE_FLOW_DISSECTOR:
                if (meta)
                        return meta->pkt_access;
 
@@ -5706,7 +5709,11 @@ static int convert_ctx_accesses(struct bpf_verifier_env *env)
        bool is_narrower_load;
        u32 target_size;
 
-       if (ops->gen_prologue) {
+       if (ops->gen_prologue || env->seen_direct_write) {
+               if (!ops->gen_prologue) {
+                       verbose(env, "bpf verifier is misconfigured\n");
+                       return -EINVAL;
+               }
                cnt = ops->gen_prologue(insn_buf, env->seen_direct_write,
                                        env->prog);
                if (cnt >= ARRAY_SIZE(insn_buf)) {
index 41cdafb..6bac0d6 100644 (file)
@@ -1428,8 +1428,7 @@ static void br_multicast_query_received(struct net_bridge *br,
         * is 0.0.0.0 should not be added to router port list.
         */
        if ((saddr->proto == htons(ETH_P_IP) && saddr->u.ip4) ||
-           (saddr->proto == htons(ETH_P_IPV6) &&
-            !ipv6_addr_any(&saddr->u.ip6)))
+           saddr->proto == htons(ETH_P_IPV6))
                br_multicast_mark_router(br, port);
 }
 
index 022ad73..77d43ae 100644 (file)
@@ -5457,7 +5457,7 @@ static void gro_flush_oldest(struct list_head *head)
        /* Do not adjust napi->gro_hash[].count, caller is adding a new
         * SKB to the chain.
         */
-       list_del(&oldest->list);
+       skb_list_del_init(oldest);
        napi_gro_complete(oldest);
 }
 
index 35c6933..e521c5e 100644 (file)
@@ -5264,8 +5264,6 @@ sk_msg_func_proto(enum bpf_func_id func_id, const struct bpf_prog *prog)
                return &bpf_msg_pull_data_proto;
        case BPF_FUNC_msg_push_data:
                return &bpf_msg_push_data_proto;
-       case BPF_FUNC_get_local_storage:
-               return &bpf_get_local_storage_proto;
        default:
                return bpf_base_func_proto(func_id);
        }
@@ -5296,8 +5294,6 @@ sk_skb_func_proto(enum bpf_func_id func_id, const struct bpf_prog *prog)
                return &bpf_sk_redirect_map_proto;
        case BPF_FUNC_sk_redirect_hash:
                return &bpf_sk_redirect_hash_proto;
-       case BPF_FUNC_get_local_storage:
-               return &bpf_get_local_storage_proto;
 #ifdef CONFIG_INET
        case BPF_FUNC_sk_lookup_tcp:
                return &bpf_sk_lookup_tcp_proto;
@@ -5496,7 +5492,13 @@ static bool cg_skb_is_valid_access(int off, int size,
        case bpf_ctx_range(struct __sk_buff, data_meta):
        case bpf_ctx_range(struct __sk_buff, flow_keys):
                return false;
+       case bpf_ctx_range(struct __sk_buff, data):
+       case bpf_ctx_range(struct __sk_buff, data_end):
+               if (!capable(CAP_SYS_ADMIN))
+                       return false;
+               break;
        }
+
        if (type == BPF_WRITE) {
                switch (off) {
                case bpf_ctx_range(struct __sk_buff, mark):
@@ -5638,6 +5640,15 @@ static bool sock_filter_is_valid_access(int off, int size,
                                               prog->expected_attach_type);
 }
 
+static int bpf_noop_prologue(struct bpf_insn *insn_buf, bool direct_write,
+                            const struct bpf_prog *prog)
+{
+       /* Neither direct read nor direct write requires any preliminary
+        * action.
+        */
+       return 0;
+}
+
 static int bpf_unclone_prologue(struct bpf_insn *insn_buf, bool direct_write,
                                const struct bpf_prog *prog, int drop_verdict)
 {
@@ -7204,6 +7215,7 @@ const struct bpf_verifier_ops xdp_verifier_ops = {
        .get_func_proto         = xdp_func_proto,
        .is_valid_access        = xdp_is_valid_access,
        .convert_ctx_access     = xdp_convert_ctx_access,
+       .gen_prologue           = bpf_noop_prologue,
 };
 
 const struct bpf_prog_ops xdp_prog_ops = {
@@ -7302,6 +7314,7 @@ const struct bpf_verifier_ops sk_msg_verifier_ops = {
        .get_func_proto         = sk_msg_func_proto,
        .is_valid_access        = sk_msg_is_valid_access,
        .convert_ctx_access     = sk_msg_convert_ctx_access,
+       .gen_prologue           = bpf_noop_prologue,
 };
 
 const struct bpf_prog_ops sk_msg_prog_ops = {
index b1a2c5e..37b4667 100644 (file)
@@ -279,7 +279,6 @@ static int proc_dointvec_minmax_bpf_enable(struct ctl_table *table, int write,
        return ret;
 }
 
-# ifdef CONFIG_HAVE_EBPF_JIT
 static int
 proc_dointvec_minmax_bpf_restricted(struct ctl_table *table, int write,
                                    void __user *buffer, size_t *lenp,
@@ -290,7 +289,6 @@ proc_dointvec_minmax_bpf_restricted(struct ctl_table *table, int write,
 
        return proc_dointvec_minmax(table, write, buffer, lenp, ppos);
 }
-# endif
 #endif
 
 static struct ctl_table net_core_table[] = {
@@ -397,6 +395,14 @@ static struct ctl_table net_core_table[] = {
                .extra2         = &one,
        },
 # endif
+       {
+               .procname       = "bpf_jit_limit",
+               .data           = &bpf_jit_limit,
+               .maxlen         = sizeof(int),
+               .mode           = 0600,
+               .proc_handler   = proc_dointvec_minmax_bpf_restricted,
+               .extra1         = &one,
+       },
 #endif
        {
                .procname       = "netdev_tstamp_prequeue",
index d9ad986..5cbb9be 100644 (file)
@@ -42,6 +42,7 @@ static int udp_dump_one(struct udp_table *tbl, struct sk_buff *in_skb,
 
        rcu_read_lock();
        if (req->sdiag_family == AF_INET)
+               /* src and dst are swapped for historical reasons */
                sk = __udp4_lib_lookup(net,
                                req->id.idiag_src[0], req->id.idiag_sport,
                                req->id.idiag_dst[0], req->id.idiag_dport,
index cbe4831..4a042ab 100644 (file)
@@ -413,7 +413,7 @@ static int gred_change(struct Qdisc *sch, struct nlattr *opt,
        if (tb[TCA_GRED_PARMS] == NULL && tb[TCA_GRED_STAB] == NULL) {
                if (tb[TCA_GRED_LIMIT] != NULL)
                        sch->limit = nla_get_u32(tb[TCA_GRED_LIMIT]);
-               return gred_change_table_def(sch, opt);
+               return gred_change_table_def(sch, tb[TCA_GRED_DPS]);
        }
 
        if (tb[TCA_GRED_PARMS] == NULL ||
index dd49df5..7f90d36 100644 (file)
@@ -20,3 +20,5 @@ CONFIG_VXLAN=y
 CONFIG_GENEVE=y
 CONFIG_NET_CLS_FLOWER=m
 CONFIG_LWTUNNEL=y
+CONFIG_BPF_STREAM_PARSER=y
+CONFIG_XDP_SOCKETS=y
index 769d68a..36f3d30 100644 (file)
@@ -4891,6 +4891,8 @@ static struct bpf_test tests[] = {
                        BPF_EXIT_INSN(),
                },
                .result = ACCEPT,
+               .result_unpriv = REJECT,
+               .errstr_unpriv = "invalid bpf_context access off=76 size=4",
                .prog_type = BPF_PROG_TYPE_CGROUP_SKB,
        },
        {
@@ -5146,6 +5148,7 @@ static struct bpf_test tests[] = {
                .fixup_cgroup_storage = { 1 },
                .result = REJECT,
                .errstr = "get_local_storage() doesn't support non-zero flags",
+               .errstr_unpriv = "R2 leaks addr into helper function",
                .prog_type = BPF_PROG_TYPE_CGROUP_SKB,
        },
        {
@@ -5261,6 +5264,7 @@ static struct bpf_test tests[] = {
                .fixup_percpu_cgroup_storage = { 1 },
                .result = REJECT,
                .errstr = "get_local_storage() doesn't support non-zero flags",
+               .errstr_unpriv = "R2 leaks addr into helper function",
                .prog_type = BPF_PROG_TYPE_CGROUP_SKB,
        },
        {
@@ -14050,6 +14054,13 @@ static void get_unpriv_disabled()
        fclose(fd);
 }
 
+static bool test_as_unpriv(struct bpf_test *test)
+{
+       return !test->prog_type ||
+              test->prog_type == BPF_PROG_TYPE_SOCKET_FILTER ||
+              test->prog_type == BPF_PROG_TYPE_CGROUP_SKB;
+}
+
 static int do_test(bool unpriv, unsigned int from, unsigned int to)
 {
        int i, passes = 0, errors = 0, skips = 0;
@@ -14060,10 +14071,10 @@ static int do_test(bool unpriv, unsigned int from, unsigned int to)
                /* Program types that are not supported by non-root we
                 * skip right away.
                 */
-               if (!test->prog_type && unpriv_disabled) {
+               if (test_as_unpriv(test) && unpriv_disabled) {
                        printf("#%d/u %s SKIP\n", i, test->descr);
                        skips++;
-               } else if (!test->prog_type) {
+               } else if (test_as_unpriv(test)) {
                        if (!unpriv)
                                set_admin(false);
                        printf("#%d/u %s ", i, test->descr);