Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tcp,udp: set TOS (TCLASS) for IPv6 sockets #1218

Merged
merged 2 commits into from
Dec 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 30 additions & 2 deletions src/tcp/tcp.c
Original file line number Diff line number Diff line change
Expand Up @@ -1450,12 +1450,25 @@ int tcp_settos(struct tcp_sock *ts, uint32_t tos)
{
int err = 0;
int v = tos;
struct sa sa;

if (!ts)
return EINVAL;

ts->tos = tos;
err = tcp_sock_setopt(ts, IPPROTO_IP, IP_TOS, &v, sizeof(v));
err = tcp_local_get(ts, &sa);
if (err)
return err;

if (sa_af(&sa) == AF_INET) {
err = tcp_sock_setopt(ts, IPPROTO_IP, IP_TOS, &v, sizeof(v));
}
#if defined(IPV6_TCLASS) && !defined(WIN32)
else if (sa_af(&sa) == AF_INET6) {
err = tcp_sock_setopt(ts, IPPROTO_IPV6, IPV6_TCLASS, &v,
sizeof(v));
}
#endif

return err;
}
Expand All @@ -1465,16 +1478,31 @@ int tcp_conn_settos(struct tcp_conn *tc, uint32_t tos)
{
int err = 0;
int v = tos;
struct sa sa;

if (!tc)
return EINVAL;

tc->tos = tos;
if (tc->fdc != RE_BAD_SOCK) {
if (tc->fdc == RE_BAD_SOCK)
return err;

err = tcp_conn_local_get(tc, &sa);
if (err)
return err;

if (sa_af(&sa) == AF_INET) {
if (0 != setsockopt(tc->fdc, IPPROTO_IP, IP_TOS,
BUF_CAST &v, sizeof(v)))
err = RE_ERRNO_SOCK;
}
#if defined(IPV6_TCLASS) && !defined(WIN32)
else if (sa_af(&sa) == AF_INET6) {
if (0 != setsockopt(tc->fdc, IPPROTO_IPV6, IPV6_TCLASS,
BUF_CAST &v, sizeof(v)))
err = RE_ERRNO_SOCK;
}
#endif

return err;
}
Expand Down
16 changes: 15 additions & 1 deletion src/udp/udp.c
Original file line number Diff line number Diff line change
Expand Up @@ -628,6 +628,7 @@ int udp_settos(struct udp_sock *us, uint8_t tos)
{
int err = 0;
int v = tos;
struct sa sa;
#ifdef WIN32
QOS_VERSION qos_version = { 1 , 0 };
QOS_TRAFFIC_TYPE qos_type = QOSTrafficTypeBestEffort;
Expand Down Expand Up @@ -660,7 +661,20 @@ int udp_settos(struct udp_sock *us, uint8_t tos)
return WSAGetLastError();
}
#endif
err = udp_setsockopt(us, IPPROTO_IP, IP_TOS, &v, sizeof(v));
err = udp_local_get(us, &sa);
if (err)
return err;

if (sa_af(&sa) == AF_INET) {
err = udp_setsockopt(us, IPPROTO_IP, IP_TOS, &v, sizeof(v));
}
#if defined(IPV6_TCLASS) && !defined(WIN32)
else if (sa_af(&sa) == AF_INET6) {
err = udp_setsockopt(us, IPPROTO_IPV6, IPV6_TCLASS, &v,
sizeof(v));
}
#endif

return err;
}

Expand Down
64 changes: 64 additions & 0 deletions test/tcp.c
Original file line number Diff line number Diff line change
Expand Up @@ -227,3 +227,67 @@ int test_tcp(void)

return err;
}


#if !defined(WIN32)
static int tcp_tos(const char *addr)
{
struct tcp_test *tt;
struct sa srv;
int err;

tt = mem_zalloc(sizeof(*tt), destructor);
if (!tt)
return ENOMEM;

err = sa_set_str(&srv, addr, 0);
TEST_ERR(err);

err = tcp_listen(&tt->ts, &srv, tcp_server_conn_handler, tt);
TEST_ERR(err);

err = tcp_settos(tt->ts, 184);
TEST_ERR(err);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why is TOS set on the same tcp server two times ?

is the TOS field working for TCP server or connection ?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why is TOS set on the same tcp server two times ?

Mistake, removed.

is the TOS field working for TCP server or connection ?

In this test, it is set for all incoming connections on the listening (server) TCP socket. With tcp_conn_settos we could also set it per connection.


err = tcp_local_get(tt->ts, &srv);
TEST_ERR(err);

err = tcp_connect(&tt->tc, &srv, tcp_client_estab_handler,
tcp_client_recv_handler, tcp_client_close_handler,
tt);
TEST_ERR(err);

err = re_main_timeout(500);
TEST_ERR(err);

if (tt->err)
err = tt->err;

out:
mem_deref(tt);

return err;
}


int test_tcp_tos(void)
{
int err;

err = tcp_tos("127.0.0.1");
TEST_ERR(err);

err = tcp_tos("::1");
TEST_ERR(err);

out:
return err;
}
#else
/* Outcome of the TOS test on Windows would be dependent on the
* DisableUserTOSSetting Windows registry setting. */
int test_tcp_tos(void)
{
return 0;
}
#endif
2 changes: 2 additions & 0 deletions test/test.c
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,7 @@ static const struct test tests[] = {
TEST(test_sys_fs_fopen),
TEST(test_sys_getenv),
TEST(test_tcp),
TEST(test_tcp_tos),
TEST(test_telev),
TEST(test_text2pcap),
#ifdef USE_TLS
Expand All @@ -236,6 +237,7 @@ static const struct test tests[] = {
TEST(test_turn),
TEST(test_turn_tcp),
TEST(test_udp),
TEST(test_udp_tos),
TEST(test_unixsock),
TEST(test_uri),
TEST(test_uri_encode),
Expand Down
2 changes: 2 additions & 0 deletions test/test.h
Original file line number Diff line number Diff line change
Expand Up @@ -332,6 +332,7 @@ int test_sys_fs_isfile(void);
int test_sys_fs_fopen(void);
int test_sys_getenv(void);
int test_tcp(void);
int test_tcp_tos(void);
int test_telev(void);
int test_text2pcap(void);
int test_thread(void);
Expand All @@ -343,6 +344,7 @@ int test_turn(void);
int test_turn_tcp(void);
int test_turn_thread(void);
int test_udp(void);
int test_udp_tos(void);
int test_unixsock(void);
int test_uri(void);
int test_uri_encode(void);
Expand Down
75 changes: 75 additions & 0 deletions test/udp.c
Original file line number Diff line number Diff line change
Expand Up @@ -213,3 +213,78 @@ int test_udp(void)

return err;
}


#if !defined(WIN32)
static int udp_tos(const char *addr)
{
struct udp_test *ut;
int layer = 0;
int err;

ut = mem_zalloc(sizeof(*ut), destructor);
if (!ut)
return ENOMEM;

err = sa_set_str(&ut->cli, addr, 0);
err |= sa_set_str(&ut->srv, addr, 0);
TEST_ERR(err);

err = udp_listen(&ut->usc, &ut->cli, udp_recv_client, ut);
err |= udp_listen(&ut->uss, &ut->srv, udp_recv_server, ut);
TEST_ERR(err);

err = udp_settos(ut->usc, 184);
err |= udp_settos(ut->uss, 120);
TEST_ERR(err);

err = udp_local_get(ut->usc, &ut->cli);
err |= udp_local_get(ut->uss, &ut->srv);
TEST_ERR(err);

err = udp_register_helper(&ut->uh, ut->usc, layer,
udp_helper_send, udp_helper_recv, ut);
TEST_ERR(err);

/* Send from connected client UDP socket */
err = udp_connect(ut->usc, &ut->srv);
TEST_ERR(err);

/* Start test */
err = send_data(ut->usc, &ut->srv, data0);
TEST_ERR(err);

err = re_main_timeout(100);
TEST_ERR(err);

if (ut->err)
err = ut->err;

out:
mem_deref(ut);

return err;
}


int test_udp_tos(void)
{
int err;

err = udp_tos("127.0.0.1");
TEST_ERR(err);

err = udp_tos("::1");
TEST_ERR(err);

out:
return err;
}
#else
/* Outcome of the TOS test on Windows would be dependent on the
* DisableUserTOSSetting Windows registry setting. */
int test_udp_tos(void)
{
return 0;
}
#endif
Loading