From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-9.8 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH, MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED, USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id D2D1FC433E1 for ; Wed, 17 Jun 2020 20:44:21 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id ADA4E212CC for ; Wed, 17 Jun 2020 20:44:21 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (1024-bit key) header.d=fb.com header.i=@fb.com header.b="E1m9SAxx" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726496AbgFQUoV (ORCPT ); Wed, 17 Jun 2020 16:44:21 -0400 Received: from mx0a-00082601.pphosted.com ([67.231.145.42]:15340 "EHLO mx0a-00082601.pphosted.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726879AbgFQUoV (ORCPT ); Wed, 17 Jun 2020 16:44:21 -0400 Received: from pps.filterd (m0109333.ppops.net [127.0.0.1]) by mx0a-00082601.pphosted.com (8.16.0.42/8.16.0.42) with SMTP id 05HKaFJ3014884 for ; Wed, 17 Jun 2020 13:44:19 -0700 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=fb.com; h=from : to : cc : subject : date : message-id : in-reply-to : references : mime-version : content-transfer-encoding : content-type; s=facebook; bh=9QRhVrr4kWRvyf0mqFG6JxCIv/WeEGtZaQAcwjGbv1s=; b=E1m9SAxxAC/i/upebrlhjH6pXgSutxmGIupWDcOutCS6HboOplM7FMKkHwkq9vSH8l1e BEvfGC1YDcOBldMlY48H3ownFmBPkCAbOrdg59jRMoCcEYVeq8XLmsbWJxcWkJMrfNsF niuReC8E544w3ymWdg2neN8dODXgdr/yDC4= Received: from maileast.thefacebook.com ([163.114.130.16]) by mx0a-00082601.pphosted.com with ESMTP id 31q65d80xe-2 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128 verify=NOT) for ; Wed, 17 Jun 2020 13:44:19 -0700 Received: from intmgw002.06.prn3.facebook.com (2620:10d:c0a8:1b::d) by mail.thefacebook.com (2620:10d:c0a8:82::c) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.1979.3; Wed, 17 Jun 2020 13:44:18 -0700 Received: by dev082.prn2.facebook.com (Postfix, from userid 572249) id 3AE683700B15; Wed, 17 Jun 2020 13:44:18 -0700 (PDT) Smtp-Origin-Hostprefix: dev From: Andrey Ignatov Smtp-Origin-Hostname: dev082.prn2.facebook.com To: CC: Andrey Ignatov , , , , Smtp-Origin-Cluster: prn2c23 Subject: [PATCH bpf-next 4/6] bpf: Support access to bpf map fields Date: Wed, 17 Jun 2020 13:43:45 -0700 Message-ID: <53fdc8f0c100fc50c8aa5fbc798d659e3dd77e92.1592426215.git.rdna@fb.com> X-Mailer: git-send-email 2.24.1 In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-FB-Internal: Safe Content-Type: text/plain X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10434:6.0.216,18.0.687 definitions=2020-06-17_11:2020-06-17,2020-06-17 signatures=0 X-Proofpoint-Spam-Details: rule=fb_default_notspam policy=fb_default score=0 mlxlogscore=999 bulkscore=0 adultscore=0 malwarescore=0 suspectscore=38 spamscore=0 clxscore=1015 lowpriorityscore=0 mlxscore=0 cotscore=-2147483648 phishscore=0 impostorscore=0 priorityscore=1501 classifier=spam adjust=0 reason=mlx scancount=1 engine=8.12.0-2004280000 definitions=main-2006170154 X-FB-Internal: deliver Sender: bpf-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: bpf@vger.kernel.org There are multiple use-cases when it's convenient to have access to bpf map fields, both `struct bpf_map` and map type specific struct-s such as `struct bpf_array`, `struct bpf_htab`, etc. For example while working with sock arrays it can be necessary to calculate the key based on map->max_entries (some_hash % max_entries). Currently this is solved by communicating max_entries via "out-of-band" channel, e.g. via additional map with known key to get info about target map. That works, but is not very convenient and error-prone while working with many maps. In other cases necessary data is dynamic (i.e. unknown at loading time) and it's impossible to get it at all. For example while working with a hash table it can be convenient to know how much capacity is already used (bpf_htab.count.counter for BPF_F_NO_PREALLOC case). At the same time kernel knows this info and can provide it to bpf program. Fill this gap by adding support to access bpf map fields from bpf program for both `struct bpf_map` and map type specific fields. Support is implemented via btf_struct_access() so that a user can define their own `struct bpf_map` or map type specific struct in their program with only necessary fields and preserve_access_index attribute, cast a map to this struct and use a field. For example: struct bpf_map { __u32 max_entries; } __attribute__((preserve_access_index)); struct bpf_array { struct bpf_map map; __u32 elem_size; } __attribute__((preserve_access_index)); struct { __uint(type, BPF_MAP_TYPE_ARRAY); __uint(max_entries, 4); __type(key, __u32); __type(value, __u32); } m_array SEC(".maps"); SEC("cgroup_skb/egress") int cg_skb(void *ctx) { struct bpf_array *array =3D (struct bpf_array *)&m_array; struct bpf_map *map =3D (struct bpf_map *)&m_array; /* .. use map->max_entries or array->map.max_entries .. */ } Similarly to other btf_struct_access() use-cases (e.g. struct tcp_sock in net/ipv4/bpf_tcp_ca.c) the patch allows access to any fields of corresponding struct. Only reading from map fields is supported. For btf_struct_access() to work there should be a way to know btf id of a struct that corresponds to a map type. To get btf id there should be a way to get a stringified name of map-specific struct, such as "bpf_array", "bpf_htab", etc for a map type. Such a stringified name is kept in a new field bpf_map_ops.map_btf_name, btf ids are calculated once while preparing btf_vmlinux and cached for future use. While calculating btf ids, struct names are checked for collision so that btf_parse_vmlinux() will fail if two map types use different map struct-s with same name. The only known collision for `struct bpf_htab` (kernel/bpf/hashtab.c vs net/core/sock_map.c) was fixed earlier. If map_btf_name field is not set for a map type, `struct bpf_map` is used by default and only common fields are available for this map type. Only `struct bpf_array` for BPF_MAP_TYPE_ARRAY and `struct bpf_htab` for BPF_MAP_TYPE_HASH are supported by this patch. Other map types will be supported separately. The feature is available only for CONFIG_DEBUG_INFO_BTF=3Dy and gated by perfmon_capable() so that unpriv programs won't have access to bpf map fields. Signed-off-by: Andrey Ignatov --- include/linux/bpf.h | 8 ++ include/linux/bpf_verifier.h | 1 + kernel/bpf/arraymap.c | 1 + kernel/bpf/btf.c | 66 ++++++++++++++++ kernel/bpf/hashtab.c | 1 + kernel/bpf/verifier.c | 77 +++++++++++++++++-- .../selftests/bpf/verifier/map_ptr_mixing.c | 2 +- 7 files changed, 147 insertions(+), 9 deletions(-) diff --git a/include/linux/bpf.h b/include/linux/bpf.h index 07052d44bca1..60a62b9f6ed5 100644 --- a/include/linux/bpf.h +++ b/include/linux/bpf.h @@ -92,6 +92,7 @@ struct bpf_map_ops { int (*map_mmap)(struct bpf_map *map, struct vm_area_struct *vma); __poll_t (*map_poll)(struct bpf_map *map, struct file *filp, struct poll_table_struct *pts); + const char * const map_btf_name; }; =20 struct bpf_map_memory { @@ -136,6 +137,8 @@ struct bpf_map { u64 writecnt; /* writable mmap cnt; protected by freeze_mutex */ }; =20 +u32 btf_vmlinux_map_id_by_type(enum bpf_map_type type); + static inline bool map_value_has_spin_lock(const struct bpf_map *map) { return map->spin_lock_off >=3D 0; @@ -1109,6 +1112,11 @@ static inline bool bpf_allow_ptr_leaks(void) return perfmon_capable(); } =20 +static inline bool bpf_allow_ptr_to_map_access(void) +{ + return perfmon_capable(); +} + static inline bool bpf_bypass_spec_v1(void) { return perfmon_capable(); diff --git a/include/linux/bpf_verifier.h b/include/linux/bpf_verifier.h index ca08db4ffb5f..53c7bd568c5d 100644 --- a/include/linux/bpf_verifier.h +++ b/include/linux/bpf_verifier.h @@ -379,6 +379,7 @@ struct bpf_verifier_env { u32 used_map_cnt; /* number of used maps */ u32 id_gen; /* used to generate unique reg IDs */ bool allow_ptr_leaks; + bool allow_ptr_to_map_access; bool bpf_capable; bool bypass_spec_v1; bool bypass_spec_v4; diff --git a/kernel/bpf/arraymap.c b/kernel/bpf/arraymap.c index 11584618e861..bff478799a83 100644 --- a/kernel/bpf/arraymap.c +++ b/kernel/bpf/arraymap.c @@ -510,6 +510,7 @@ const struct bpf_map_ops array_map_ops =3D { .map_check_btf =3D array_map_check_btf, .map_lookup_batch =3D generic_map_lookup_batch, .map_update_batch =3D generic_map_update_batch, + .map_btf_name =3D "bpf_array", }; =20 const struct bpf_map_ops percpu_array_map_ops =3D { diff --git a/kernel/bpf/btf.c b/kernel/bpf/btf.c index e5c5305e859c..fa21b1e766ae 100644 --- a/kernel/bpf/btf.c +++ b/kernel/bpf/btf.c @@ -3577,6 +3577,67 @@ btf_get_prog_ctx_type(struct bpf_verifier_log *log= , struct btf *btf, return ctx_type; } =20 +#define BPF_PROG_TYPE(_id, _name, prog_ctx_type, kern_ctx_type) +#define BPF_LINK_TYPE(_id, _name) +static const struct bpf_map_ops * const btf_vmlinux_map_ops[] =3D { +#define BPF_MAP_TYPE(_id, _ops) \ + [_id] =3D &_ops, +#include +#undef BPF_MAP_TYPE +}; +static u32 btf_vmlinux_map_ids[] =3D { +#define BPF_MAP_TYPE(_id, _ops) \ + [_id] =3D (u32)-1, +#include +#undef BPF_MAP_TYPE +}; +#undef BPF_PROG_TYPE +#undef BPF_LINK_TYPE + +static int btf_vmlinux_map_ids_init(const struct btf *btf, + struct bpf_verifier_log *log) +{ + int base_btf_id, btf_id, i; + const char *btf_name; + + base_btf_id =3D btf_find_by_name_kind(btf, "bpf_map", BTF_KIND_STRUCT); + if (base_btf_id < 0) + return base_btf_id; + + BUILD_BUG_ON(ARRAY_SIZE(btf_vmlinux_map_ops) !=3D + ARRAY_SIZE(btf_vmlinux_map_ids)); + + for (i =3D 0; i < ARRAY_SIZE(btf_vmlinux_map_ops); ++i) { + if (!btf_vmlinux_map_ops[i]) + continue; + btf_name =3D btf_vmlinux_map_ops[i]->map_btf_name; + if (!btf_name) { + btf_vmlinux_map_ids[i] =3D base_btf_id; + continue; + } + btf_id =3D btf_find_by_name_kind(btf, btf_name, BTF_KIND_STRUCT); + if (btf_id < 0) + return btf_id; + btf_vmlinux_map_ids[i] =3D btf_id; + btf_id =3D btf_find_by_name_kind_next(btf, btf_name, + BTF_KIND_STRUCT, + btf_id + 1); + if (btf_id > 0) { + bpf_log(log, + "Ambiguous btf_id for struct %s: %u, %u.\n", + btf_name, btf_vmlinux_map_ids[i], btf_id); + return -EINVAL; + } + } + + return 0; +} + +u32 btf_vmlinux_map_id_by_type(enum bpf_map_type type) +{ + return btf_vmlinux_map_ids[type]; +} + static int btf_translate_to_vmlinux(struct bpf_verifier_log *log, struct btf *btf, const struct btf_type *t, @@ -3639,6 +3700,11 @@ struct btf *btf_parse_vmlinux(void) /* btf_parse_vmlinux() runs under bpf_verifier_lock */ bpf_ctx_convert.t =3D btf_type_by_id(btf, btf_id); =20 + /* find bpf map structs for map_ptr access checking */ + err =3D btf_vmlinux_map_ids_init(btf, log); + if (err < 0) + goto errout; + bpf_struct_ops_init(btf, log); =20 btf_verifier_env_free(env); diff --git a/kernel/bpf/hashtab.c b/kernel/bpf/hashtab.c index b4b288a3c3c9..5c6344fd1eee 100644 --- a/kernel/bpf/hashtab.c +++ b/kernel/bpf/hashtab.c @@ -1625,6 +1625,7 @@ const struct bpf_map_ops htab_map_ops =3D { .map_gen_lookup =3D htab_map_gen_lookup, .map_seq_show_elem =3D htab_map_seq_show_elem, BATCH_OPS(htab), + .map_btf_name =3D "bpf_htab", }; =20 const struct bpf_map_ops htab_lru_map_ops =3D { diff --git a/kernel/bpf/verifier.c b/kernel/bpf/verifier.c index 34cde841ab68..9c9817b9e427 100644 --- a/kernel/bpf/verifier.c +++ b/kernel/bpf/verifier.c @@ -1351,6 +1351,19 @@ static void mark_reg_not_init(struct bpf_verifier_= env *env, __mark_reg_not_init(env, regs + regno); } =20 +static void mark_btf_ld_reg(struct bpf_verifier_env *env, + struct bpf_reg_state *regs, u32 regno, + enum bpf_reg_type reg_type, u32 btf_id) +{ + if (reg_type =3D=3D SCALAR_VALUE) { + mark_reg_unknown(env, regs, regno); + return; + } + mark_reg_known_zero(env, regs, regno); + regs[regno].type =3D PTR_TO_BTF_ID; + regs[regno].btf_id =3D btf_id; +} + #define DEF_NOT_SUBREG (0) static void init_reg_state(struct bpf_verifier_env *env, struct bpf_func_state *state) @@ -3182,19 +3195,63 @@ static int check_ptr_to_btf_access(struct bpf_ver= ifier_env *env, if (ret < 0) return ret; =20 - if (atype =3D=3D BPF_READ && value_regno >=3D 0) { - if (ret =3D=3D SCALAR_VALUE) { - mark_reg_unknown(env, regs, value_regno); - return 0; - } - mark_reg_known_zero(env, regs, value_regno); - regs[value_regno].type =3D PTR_TO_BTF_ID; - regs[value_regno].btf_id =3D btf_id; + if (atype =3D=3D BPF_READ && value_regno >=3D 0) + mark_btf_ld_reg(env, regs, value_regno, ret, btf_id); + + return 0; +} + +static int check_ptr_to_map_access(struct bpf_verifier_env *env, + struct bpf_reg_state *regs, + int regno, int off, int size, + enum bpf_access_type atype, + int value_regno) +{ + struct bpf_reg_state *reg =3D regs + regno; + struct bpf_map *map =3D reg->map_ptr; + const struct btf_type *t; + const char *tname; + u32 btf_id; + int ret; + + if (!btf_vmlinux) { + verbose(env, "map_ptr access not supported without CONFIG_DEBUG_INFO_B= TF\n"); + return -ENOTSUPP; + } + + t =3D btf_type_by_id(btf_vmlinux, + btf_vmlinux_map_id_by_type(map->map_type)); + tname =3D btf_name_by_offset(btf_vmlinux, t->name_off); + + if (!env->allow_ptr_to_map_access) { + verbose(env, + "%s access is allowed only to CAP_PERFMON and CAP_SYS_ADMIN\n", + tname); + return -EPERM; + } + + if (off < 0) { + verbose(env, "R%d is %s invalid negative access: off=3D%d\n", + regno, tname, off); + return -EACCES; + } + + if (atype !=3D BPF_READ) { + verbose(env, "only read from %s is supported\n", tname); + return -EACCES; } =20 + ret =3D btf_struct_access(&env->log, t, off, size, atype, &btf_id); + if (ret < 0) + return ret; + + if (value_regno >=3D 0) + mark_btf_ld_reg(env, regs, value_regno, ret, btf_id); + return 0; } =20 + /* check whether memory at (regno + off) is accessible for t =3D (read |= write) * if t=3D=3Dwrite, value_regno is a register which value is stored into= memory * if t=3D=3Dread, value_regno is a register which will receive the valu= e from memory @@ -3363,6 +3420,9 @@ static int check_mem_access(struct bpf_verifier_env= *env, int insn_idx, u32 regn } else if (reg->type =3D=3D PTR_TO_BTF_ID) { err =3D check_ptr_to_btf_access(env, regs, regno, off, size, t, value_regno); + } else if (reg->type =3D=3D CONST_PTR_TO_MAP) { + err =3D check_ptr_to_map_access(env, regs, regno, off, size, t, + value_regno); } else { verbose(env, "R%d invalid mem access '%s'\n", regno, reg_type_str[reg->type]); @@ -10946,6 +11006,7 @@ int bpf_check(struct bpf_prog **prog, union bpf_a= ttr *attr, env->strict_alignment =3D false; =20 env->allow_ptr_leaks =3D bpf_allow_ptr_leaks(); + env->allow_ptr_to_map_access =3D bpf_allow_ptr_to_map_access(); env->bypass_spec_v1 =3D bpf_bypass_spec_v1(); env->bypass_spec_v4 =3D bpf_bypass_spec_v4(); env->bpf_capable =3D bpf_capable(); diff --git a/tools/testing/selftests/bpf/verifier/map_ptr_mixing.c b/tool= s/testing/selftests/bpf/verifier/map_ptr_mixing.c index cd26ee6b7b1d..1f2b8c4cb26d 100644 --- a/tools/testing/selftests/bpf/verifier/map_ptr_mixing.c +++ b/tools/testing/selftests/bpf/verifier/map_ptr_mixing.c @@ -56,7 +56,7 @@ .fixup_map_in_map =3D { 16 }, .fixup_map_array_48b =3D { 13 }, .result =3D REJECT, - .errstr =3D "R0 invalid mem access 'map_ptr'", + .errstr =3D "only read from bpf_array is supported", }, { "cond: two branches returning different map pointers for lookup (tail, = tail)", --=20 2.24.1