Skip to content

Commit ef33f02

Browse files
keesgregkh
authored andcommitted
bpf: Replace bpf_lpm_trie_key 0-length array with flexible array
[ Upstream commit 896880f ] Replace deprecated 0-length array in struct bpf_lpm_trie_key with flexible array. Found with GCC 13: ../kernel/bpf/lpm_trie.c:207:51: warning: array subscript i is outside array bounds of 'const __u8[0]' {aka 'const unsigned char[]'} [-Warray-bounds=] 207 | *(__be16 *)&key->data[i]); | ^~~~~~~~~~~~~ ../include/uapi/linux/swab.h:102:54: note: in definition of macro '__swab16' 102 | #define __swab16(x) (__u16)__builtin_bswap16((__u16)(x)) | ^ ../include/linux/byteorder/generic.h:97:21: note: in expansion of macro '__be16_to_cpu' 97 | #define be16_to_cpu __be16_to_cpu | ^~~~~~~~~~~~~ ../kernel/bpf/lpm_trie.c:206:28: note: in expansion of macro 'be16_to_cpu' 206 | u16 diff = be16_to_cpu(*(__be16 *)&node->data[i] ^ | ^~~~~~~~~~~ In file included from ../include/linux/bpf.h:7: ../include/uapi/linux/bpf.h:82:17: note: while referencing 'data' 82 | __u8 data[0]; /* Arbitrary size */ | ^~~~ And found at run-time under CONFIG_FORTIFY_SOURCE: UBSAN: array-index-out-of-bounds in kernel/bpf/lpm_trie.c:218:49 index 0 is out of range for type '__u8 [*]' Changing struct bpf_lpm_trie_key is difficult since has been used by userspace. For example, in Cilium: struct egress_gw_policy_key { struct bpf_lpm_trie_key lpm_key; __u32 saddr; __u32 daddr; }; While direct references to the "data" member haven't been found, there are static initializers what include the final member. For example, the "{}" here: struct egress_gw_policy_key in_key = { .lpm_key = { 32 + 24, {} }, .saddr = CLIENT_IP, .daddr = EXTERNAL_SVC_IP & 0Xffffff, }; To avoid the build time and run time warnings seen with a 0-sized trailing array for struct bpf_lpm_trie_key, introduce a new struct that correctly uses a flexible array for the trailing bytes, struct bpf_lpm_trie_key_u8. As part of this, include the "header" portion (which is just the "prefixlen" member), so it can be used by anything building a bpf_lpr_trie_key that has trailing members that aren't a u8 flexible array (like the self-test[1]), which is named struct bpf_lpm_trie_key_hdr. Unfortunately, C++ refuses to parse the __struct_group() helper, so it is not possible to define struct bpf_lpm_trie_key_hdr directly in struct bpf_lpm_trie_key_u8, so we must open-code the union directly. Adjust the kernel code to use struct bpf_lpm_trie_key_u8 through-out, and for the selftest to use struct bpf_lpm_trie_key_hdr. Add a comment to the UAPI header directing folks to the two new options. Reported-by: Mark Rutland <[email protected]> Signed-off-by: Kees Cook <[email protected]> Signed-off-by: Daniel Borkmann <[email protected]> Acked-by: Gustavo A. R. Silva <[email protected]> Closes: https://paste.debian.net/hidden/ca500597/ Link: https://lore.kernel.org/all/202206281009.4332AA33@keescook/ [1] Link: https://lore.kernel.org/bpf/[email protected] Stable-dep-of: 59f2f84 ("bpf: Avoid kfree_rcu() under lock in bpf_lpm_trie.") Signed-off-by: Sasha Levin <[email protected]>
1 parent 5fbbd95 commit ef33f02

File tree

8 files changed

+59
-25
lines changed

8 files changed

+59
-25
lines changed

Documentation/bpf/map_lpm_trie.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ significant byte.
1717

1818
LPM tries may be created with a maximum prefix length that is a multiple
1919
of 8, in the range from 8 to 2048. The key used for lookup and update
20-
operations is a ``struct bpf_lpm_trie_key``, extended by
20+
operations is a ``struct bpf_lpm_trie_key_u8``, extended by
2121
``max_prefixlen/8`` bytes.
2222

2323
- For IPv4 addresses the data length is 4 bytes

include/uapi/linux/bpf.h

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,12 +77,29 @@ struct bpf_insn {
7777
__s32 imm; /* signed immediate constant */
7878
};
7979

80-
/* Key of an a BPF_MAP_TYPE_LPM_TRIE entry */
80+
/* Deprecated: use struct bpf_lpm_trie_key_u8 (when the "data" member is needed for
81+
* byte access) or struct bpf_lpm_trie_key_hdr (when using an alternative type for
82+
* the trailing flexible array member) instead.
83+
*/
8184
struct bpf_lpm_trie_key {
8285
__u32 prefixlen; /* up to 32 for AF_INET, 128 for AF_INET6 */
8386
__u8 data[0]; /* Arbitrary size */
8487
};
8588

89+
/* Header for bpf_lpm_trie_key structs */
90+
struct bpf_lpm_trie_key_hdr {
91+
__u32 prefixlen;
92+
};
93+
94+
/* Key of an a BPF_MAP_TYPE_LPM_TRIE entry, with trailing byte array. */
95+
struct bpf_lpm_trie_key_u8 {
96+
union {
97+
struct bpf_lpm_trie_key_hdr hdr;
98+
__u32 prefixlen;
99+
};
100+
__u8 data[]; /* Arbitrary size */
101+
};
102+
86103
struct bpf_cgroup_storage_key {
87104
__u64 cgroup_inode_id; /* cgroup inode id */
88105
__u32 attach_type; /* program attach type (enum bpf_attach_type) */

kernel/bpf/lpm_trie.c

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -164,13 +164,13 @@ static inline int extract_bit(const u8 *data, size_t index)
164164
*/
165165
static size_t longest_prefix_match(const struct lpm_trie *trie,
166166
const struct lpm_trie_node *node,
167-
const struct bpf_lpm_trie_key *key)
167+
const struct bpf_lpm_trie_key_u8 *key)
168168
{
169169
u32 limit = min(node->prefixlen, key->prefixlen);
170170
u32 prefixlen = 0, i = 0;
171171

172172
BUILD_BUG_ON(offsetof(struct lpm_trie_node, data) % sizeof(u32));
173-
BUILD_BUG_ON(offsetof(struct bpf_lpm_trie_key, data) % sizeof(u32));
173+
BUILD_BUG_ON(offsetof(struct bpf_lpm_trie_key_u8, data) % sizeof(u32));
174174

175175
#if defined(CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS) && defined(CONFIG_64BIT)
176176

@@ -229,7 +229,7 @@ static void *trie_lookup_elem(struct bpf_map *map, void *_key)
229229
{
230230
struct lpm_trie *trie = container_of(map, struct lpm_trie, map);
231231
struct lpm_trie_node *node, *found = NULL;
232-
struct bpf_lpm_trie_key *key = _key;
232+
struct bpf_lpm_trie_key_u8 *key = _key;
233233

234234
if (key->prefixlen > trie->max_prefixlen)
235235
return NULL;
@@ -309,7 +309,7 @@ static long trie_update_elem(struct bpf_map *map,
309309
struct lpm_trie *trie = container_of(map, struct lpm_trie, map);
310310
struct lpm_trie_node *node, *im_node = NULL, *new_node = NULL;
311311
struct lpm_trie_node __rcu **slot;
312-
struct bpf_lpm_trie_key *key = _key;
312+
struct bpf_lpm_trie_key_u8 *key = _key;
313313
unsigned long irq_flags;
314314
unsigned int next_bit;
315315
size_t matchlen = 0;
@@ -437,7 +437,7 @@ static long trie_update_elem(struct bpf_map *map,
437437
static long trie_delete_elem(struct bpf_map *map, void *_key)
438438
{
439439
struct lpm_trie *trie = container_of(map, struct lpm_trie, map);
440-
struct bpf_lpm_trie_key *key = _key;
440+
struct bpf_lpm_trie_key_u8 *key = _key;
441441
struct lpm_trie_node __rcu **trim, **trim2;
442442
struct lpm_trie_node *node, *parent;
443443
unsigned long irq_flags;
@@ -536,7 +536,7 @@ static long trie_delete_elem(struct bpf_map *map, void *_key)
536536
sizeof(struct lpm_trie_node))
537537
#define LPM_VAL_SIZE_MIN 1
538538

539-
#define LPM_KEY_SIZE(X) (sizeof(struct bpf_lpm_trie_key) + (X))
539+
#define LPM_KEY_SIZE(X) (sizeof(struct bpf_lpm_trie_key_u8) + (X))
540540
#define LPM_KEY_SIZE_MAX LPM_KEY_SIZE(LPM_DATA_SIZE_MAX)
541541
#define LPM_KEY_SIZE_MIN LPM_KEY_SIZE(LPM_DATA_SIZE_MIN)
542542

@@ -565,7 +565,7 @@ static struct bpf_map *trie_alloc(union bpf_attr *attr)
565565
/* copy mandatory map attributes */
566566
bpf_map_init_from_attr(&trie->map, attr);
567567
trie->data_size = attr->key_size -
568-
offsetof(struct bpf_lpm_trie_key, data);
568+
offsetof(struct bpf_lpm_trie_key_u8, data);
569569
trie->max_prefixlen = trie->data_size * 8;
570570

571571
spin_lock_init(&trie->lock);
@@ -616,7 +616,7 @@ static int trie_get_next_key(struct bpf_map *map, void *_key, void *_next_key)
616616
{
617617
struct lpm_trie_node *node, *next_node = NULL, *parent, *search_root;
618618
struct lpm_trie *trie = container_of(map, struct lpm_trie, map);
619-
struct bpf_lpm_trie_key *key = _key, *next_key = _next_key;
619+
struct bpf_lpm_trie_key_u8 *key = _key, *next_key = _next_key;
620620
struct lpm_trie_node **node_stack = NULL;
621621
int err = 0, stack_ptr = -1;
622622
unsigned int next_bit;
@@ -703,7 +703,7 @@ static int trie_get_next_key(struct bpf_map *map, void *_key, void *_next_key)
703703
}
704704
do_copy:
705705
next_key->prefixlen = next_node->prefixlen;
706-
memcpy((void *)next_key + offsetof(struct bpf_lpm_trie_key, data),
706+
memcpy((void *)next_key + offsetof(struct bpf_lpm_trie_key_u8, data),
707707
next_node->data, trie->data_size);
708708
free_stack:
709709
kfree(node_stack);
@@ -715,7 +715,7 @@ static int trie_check_btf(const struct bpf_map *map,
715715
const struct btf_type *key_type,
716716
const struct btf_type *value_type)
717717
{
718-
/* Keys must have struct bpf_lpm_trie_key embedded. */
718+
/* Keys must have struct bpf_lpm_trie_key_u8 embedded. */
719719
return BTF_INFO_KIND(key_type->info) != BTF_KIND_STRUCT ?
720720
-EINVAL : 0;
721721
}

samples/bpf/map_perf_test_user.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -370,7 +370,7 @@ static void run_perf_test(int tasks)
370370

371371
static void fill_lpm_trie(void)
372372
{
373-
struct bpf_lpm_trie_key *key;
373+
struct bpf_lpm_trie_key_u8 *key;
374374
unsigned long value = 0;
375375
unsigned int i;
376376
int r;

samples/bpf/xdp_router_ipv4_user.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ static int recv_msg(struct sockaddr_nl sock_addr, int sock)
9191
static void read_route(struct nlmsghdr *nh, int nll)
9292
{
9393
char dsts[24], gws[24], ifs[16], dsts_len[24], metrics[24];
94-
struct bpf_lpm_trie_key *prefix_key;
94+
struct bpf_lpm_trie_key_u8 *prefix_key;
9595
struct rtattr *rt_attr;
9696
struct rtmsg *rt_msg;
9797
int rtm_family;

tools/include/uapi/linux/bpf.h

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,12 +77,29 @@ struct bpf_insn {
7777
__s32 imm; /* signed immediate constant */
7878
};
7979

80-
/* Key of an a BPF_MAP_TYPE_LPM_TRIE entry */
80+
/* Deprecated: use struct bpf_lpm_trie_key_u8 (when the "data" member is needed for
81+
* byte access) or struct bpf_lpm_trie_key_hdr (when using an alternative type for
82+
* the trailing flexible array member) instead.
83+
*/
8184
struct bpf_lpm_trie_key {
8285
__u32 prefixlen; /* up to 32 for AF_INET, 128 for AF_INET6 */
8386
__u8 data[0]; /* Arbitrary size */
8487
};
8588

89+
/* Header for bpf_lpm_trie_key structs */
90+
struct bpf_lpm_trie_key_hdr {
91+
__u32 prefixlen;
92+
};
93+
94+
/* Key of an a BPF_MAP_TYPE_LPM_TRIE entry, with trailing byte array. */
95+
struct bpf_lpm_trie_key_u8 {
96+
union {
97+
struct bpf_lpm_trie_key_hdr hdr;
98+
__u32 prefixlen;
99+
};
100+
__u8 data[]; /* Arbitrary size */
101+
};
102+
86103
struct bpf_cgroup_storage_key {
87104
__u64 cgroup_inode_id; /* cgroup inode id */
88105
__u32 attach_type; /* program attach type (enum bpf_attach_type) */

tools/testing/selftests/bpf/progs/map_ptr_kern.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ struct lpm_trie {
316316
} __attribute__((preserve_access_index));
317317

318318
struct lpm_key {
319-
struct bpf_lpm_trie_key trie_key;
319+
struct bpf_lpm_trie_key_hdr trie_key;
320320
__u32 data;
321321
};
322322

tools/testing/selftests/bpf/test_lpm_map.c

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ static void test_lpm_map(int keysize)
211211
volatile size_t n_matches, n_matches_after_delete;
212212
size_t i, j, n_nodes, n_lookups;
213213
struct tlpm_node *t, *list = NULL;
214-
struct bpf_lpm_trie_key *key;
214+
struct bpf_lpm_trie_key_u8 *key;
215215
uint8_t *data, *value;
216216
int r, map;
217217

@@ -331,8 +331,8 @@ static void test_lpm_map(int keysize)
331331
static void test_lpm_ipaddr(void)
332332
{
333333
LIBBPF_OPTS(bpf_map_create_opts, opts, .map_flags = BPF_F_NO_PREALLOC);
334-
struct bpf_lpm_trie_key *key_ipv4;
335-
struct bpf_lpm_trie_key *key_ipv6;
334+
struct bpf_lpm_trie_key_u8 *key_ipv4;
335+
struct bpf_lpm_trie_key_u8 *key_ipv6;
336336
size_t key_size_ipv4;
337337
size_t key_size_ipv6;
338338
int map_fd_ipv4;
@@ -423,7 +423,7 @@ static void test_lpm_ipaddr(void)
423423
static void test_lpm_delete(void)
424424
{
425425
LIBBPF_OPTS(bpf_map_create_opts, opts, .map_flags = BPF_F_NO_PREALLOC);
426-
struct bpf_lpm_trie_key *key;
426+
struct bpf_lpm_trie_key_u8 *key;
427427
size_t key_size;
428428
int map_fd;
429429
__u64 value;
@@ -532,7 +532,7 @@ static void test_lpm_delete(void)
532532
static void test_lpm_get_next_key(void)
533533
{
534534
LIBBPF_OPTS(bpf_map_create_opts, opts, .map_flags = BPF_F_NO_PREALLOC);
535-
struct bpf_lpm_trie_key *key_p, *next_key_p;
535+
struct bpf_lpm_trie_key_u8 *key_p, *next_key_p;
536536
size_t key_size;
537537
__u32 value = 0;
538538
int map_fd;
@@ -693,9 +693,9 @@ static void *lpm_test_command(void *arg)
693693
{
694694
int i, j, ret, iter, key_size;
695695
struct lpm_mt_test_info *info = arg;
696-
struct bpf_lpm_trie_key *key_p;
696+
struct bpf_lpm_trie_key_u8 *key_p;
697697

698-
key_size = sizeof(struct bpf_lpm_trie_key) + sizeof(__u32);
698+
key_size = sizeof(*key_p) + sizeof(__u32);
699699
key_p = alloca(key_size);
700700
for (iter = 0; iter < info->iter; iter++)
701701
for (i = 0; i < MAX_TEST_KEYS; i++) {
@@ -717,7 +717,7 @@ static void *lpm_test_command(void *arg)
717717
ret = bpf_map_lookup_elem(info->map_fd, key_p, &value);
718718
assert(ret == 0 || errno == ENOENT);
719719
} else {
720-
struct bpf_lpm_trie_key *next_key_p = alloca(key_size);
720+
struct bpf_lpm_trie_key_u8 *next_key_p = alloca(key_size);
721721
ret = bpf_map_get_next_key(info->map_fd, key_p, next_key_p);
722722
assert(ret == 0 || errno == ENOENT || errno == ENOMEM);
723723
}
@@ -752,7 +752,7 @@ static void test_lpm_multi_thread(void)
752752

753753
/* create a trie */
754754
value_size = sizeof(__u32);
755-
key_size = sizeof(struct bpf_lpm_trie_key) + value_size;
755+
key_size = sizeof(struct bpf_lpm_trie_key_hdr) + value_size;
756756
map_fd = bpf_map_create(BPF_MAP_TYPE_LPM_TRIE, NULL, key_size, value_size, 100, &opts);
757757

758758
/* create 4 threads to test update, delete, lookup and get_next_key */

0 commit comments

Comments
 (0)