RE: [PATCH bpf-next v2 11/11] selftests/bpf: Tests for SOCKMAP holding listening sockets

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Jakub Sitnicki wrote:
> Now that SOCKMAP can store listening sockets, user-space and BPF API is
> open to a new set of potential pitfalls. Exercise the map operations (with
> extra attention to code paths susceptible to races between map ops and
> socket cloning), and BPF helpers that work with SOCKMAP to gain confidence
> that all works as expected.
> 
> Signed-off-by: Jakub Sitnicki <jakub@xxxxxxxxxxxxxx>
> ---

[...]

> +static void test_sockmap_insert_listening(int family, int sotype, int mapfd)
> +{
> +	u64 value;
> +	u32 key;
> +	int s;
> +
> +	s = listen_loopback(family, sotype);
> +	if (s < 0)
> +		return;

Will the test be marked OK if listen fails here? Should we mark it skipped or
maybe even failed? Just concerned it may be passing even if the update doesn't
actually happen.

> +
> +	key = 0;
> +	value = s;
> +	xbpf_map_update_elem(mapfd, &key, &value, BPF_NOEXIST);
> +	xclose(s);
> +}

Thanks,
John



[Index of Archives]     [Linux Samsung SoC]     [Linux Rockchip SoC]     [Linux Actions SoC]     [Linux for Synopsys ARC Processors]     [Linux NFS]     [Linux NILFS]     [Linux USB Devel]     [Video for Linux]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]


  Powered by Linux