mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
selftests/bpf: Add helpers for getting socket family & type name
Having string arrays to map socket family & type to a name prevents us from unrolling the test runner loop in the subsequent patch. Introduce helpers that do the same thing. Signed-off-by: Jakub Sitnicki <jakub@cloudflare.com> Signed-off-by: Alexei Starovoitov <ast@kernel.org> Link: https://lore.kernel.org/bpf/20191212102259.418536-5-jakub@cloudflare.com
This commit is contained in:
parent
11f80355d4
commit
a9ce4cf4e4
@ -674,12 +674,34 @@ static void cleanup(void)
|
|||||||
bpf_object__close(obj);
|
bpf_object__close(obj);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static const char *family_str(sa_family_t family)
|
||||||
|
{
|
||||||
|
switch (family) {
|
||||||
|
case AF_INET:
|
||||||
|
return "IPv4";
|
||||||
|
case AF_INET6:
|
||||||
|
return "IPv6";
|
||||||
|
default:
|
||||||
|
return "unknown";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static const char *sotype_str(int sotype)
|
||||||
|
{
|
||||||
|
switch (sotype) {
|
||||||
|
case SOCK_STREAM:
|
||||||
|
return "TCP";
|
||||||
|
case SOCK_DGRAM:
|
||||||
|
return "UDP";
|
||||||
|
default:
|
||||||
|
return "unknown";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
static void test_all(void)
|
static void test_all(void)
|
||||||
{
|
{
|
||||||
/* Extra SOCK_STREAM to test bind_inany==true */
|
/* Extra SOCK_STREAM to test bind_inany==true */
|
||||||
const int types[] = { SOCK_STREAM, SOCK_DGRAM, SOCK_STREAM };
|
const int types[] = { SOCK_STREAM, SOCK_DGRAM, SOCK_STREAM };
|
||||||
const char * const type_strings[] = { "TCP", "UDP", "TCP" };
|
|
||||||
const char * const family_strings[] = { "IPv6", "IPv4" };
|
|
||||||
const sa_family_t families[] = { AF_INET6, AF_INET };
|
const sa_family_t families[] = { AF_INET6, AF_INET };
|
||||||
const bool bind_inany[] = { false, false, true };
|
const bool bind_inany[] = { false, false, true };
|
||||||
int t, f, err;
|
int t, f, err;
|
||||||
@ -692,7 +714,7 @@ static void test_all(void)
|
|||||||
int type = types[t];
|
int type = types[t];
|
||||||
|
|
||||||
printf("######## %s/%s %s ########\n",
|
printf("######## %s/%s %s ########\n",
|
||||||
family_strings[f], type_strings[t],
|
family_str(family), sotype_str(type),
|
||||||
inany ? " INANY " : "LOOPBACK");
|
inany ? " INANY " : "LOOPBACK");
|
||||||
|
|
||||||
setup_per_test(type, family, inany);
|
setup_per_test(type, family, inany);
|
||||||
|
Loading…
Reference in New Issue
Block a user