mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-31 14:35:26 +00:00
ISC_SOCKEVENTATTR_TRUNC was not be set
This commit is contained in:
@@ -28,6 +28,7 @@
|
||||
|
||||
static isc_boolean_t recv_dscp;
|
||||
static unsigned int recv_dscp_value;
|
||||
static isc_boolean_t recv_trunc;
|
||||
|
||||
/*
|
||||
* Helper functions
|
||||
@@ -73,8 +74,10 @@ event_done(isc_task_t *task, isc_event_t *event) {
|
||||
if ((dev->attributes & ISC_SOCKEVENTATTR_DSCP) != 0) {
|
||||
recv_dscp = ISC_TRUE;
|
||||
recv_dscp_value = dev->dscp;;
|
||||
} else
|
||||
} else {
|
||||
recv_dscp = ISC_FALSE;
|
||||
}
|
||||
recv_trunc = ISC_TF((dev->attributes & ISC_SOCKEVENTATTR_TRUNC) != 0);
|
||||
isc_event_free(&event);
|
||||
}
|
||||
|
||||
@@ -777,6 +780,131 @@ ATF_TC_BODY(net_probedscp, tc) {
|
||||
#endif
|
||||
}
|
||||
|
||||
/* Test UDP truncation detection */
|
||||
ATF_TC(udp_trunc);
|
||||
ATF_TC_HEAD(udp_trunc, tc) {
|
||||
atf_tc_set_md_var(tc, "descr", "UDP Truncation detection");
|
||||
}
|
||||
ATF_TC_BODY(udp_trunc, tc) {
|
||||
isc_result_t result;
|
||||
isc_sockaddr_t addr1, addr2;
|
||||
struct in_addr in;
|
||||
isc_socket_t *s1 = NULL, *s2 = NULL;
|
||||
isc_task_t *task = NULL;
|
||||
char sendbuf[BUFSIZ*2], recvbuf[BUFSIZ];
|
||||
completion_t completion;
|
||||
isc_region_t r;
|
||||
isc_socketevent_t *socketevent;
|
||||
|
||||
UNUSED(tc);
|
||||
|
||||
result = isc_test_begin(NULL, ISC_TRUE, 0);
|
||||
ATF_REQUIRE_EQ(result, ISC_R_SUCCESS);
|
||||
|
||||
in.s_addr = inet_addr("127.0.0.1");
|
||||
isc_sockaddr_fromin(&addr1, &in, 0);
|
||||
isc_sockaddr_fromin(&addr2, &in, 0);
|
||||
|
||||
result = isc_socket_create(socketmgr, PF_INET, isc_sockettype_udp, &s1);
|
||||
ATF_CHECK_EQ_MSG(result, ISC_R_SUCCESS, "%s",
|
||||
isc_result_totext(result));
|
||||
result = isc_socket_bind(s1, &addr1, ISC_SOCKET_REUSEADDRESS);
|
||||
ATF_CHECK_EQ_MSG(result, ISC_R_SUCCESS, "%s",
|
||||
isc_result_totext(result));
|
||||
result = isc_socket_getsockname(s1, &addr1);
|
||||
ATF_CHECK_EQ_MSG(result, ISC_R_SUCCESS, "%s",
|
||||
isc_result_totext(result));
|
||||
ATF_REQUIRE(isc_sockaddr_getport(&addr1) != 0);
|
||||
|
||||
result = isc_socket_create(socketmgr, PF_INET, isc_sockettype_udp, &s2);
|
||||
ATF_CHECK_EQ_MSG(result, ISC_R_SUCCESS, "%s",
|
||||
isc_result_totext(result));
|
||||
result = isc_socket_bind(s2, &addr2, ISC_SOCKET_REUSEADDRESS);
|
||||
ATF_CHECK_EQ_MSG(result, ISC_R_SUCCESS, "%s",
|
||||
isc_result_totext(result));
|
||||
result = isc_socket_getsockname(s2, &addr2);
|
||||
ATF_CHECK_EQ_MSG(result, ISC_R_SUCCESS, "%s",
|
||||
isc_result_totext(result));
|
||||
ATF_REQUIRE(isc_sockaddr_getport(&addr2) != 0);
|
||||
|
||||
result = isc_task_create(taskmgr, 0, &task);
|
||||
ATF_CHECK_EQ_MSG(result, ISC_R_SUCCESS, "%s",
|
||||
isc_result_totext(result));
|
||||
|
||||
/*
|
||||
* Send a message that will not be truncated.
|
||||
*/
|
||||
memset(sendbuf, 0xff, sizeof(sendbuf));
|
||||
snprintf(sendbuf, sizeof(sendbuf), "Hello");
|
||||
r.base = (void *) sendbuf;
|
||||
r.length = strlen(sendbuf) + 1;
|
||||
|
||||
completion_init(&completion);
|
||||
|
||||
socketevent = isc_socket_socketevent(mctx, s1, ISC_SOCKEVENT_SENDDONE,
|
||||
event_done, &completion);
|
||||
ATF_REQUIRE(socketevent != NULL);
|
||||
|
||||
result = isc_socket_sendto2(s1, &r, task, &addr2, NULL, socketevent, 0);
|
||||
ATF_REQUIRE_EQ_MSG(result, ISC_R_SUCCESS, "%s",
|
||||
isc_result_totext(result));
|
||||
waitfor(&completion);
|
||||
ATF_CHECK(completion.done);
|
||||
ATF_CHECK_EQ(completion.result, ISC_R_SUCCESS);
|
||||
|
||||
r.base = (void *) recvbuf;
|
||||
r.length = BUFSIZ;
|
||||
completion_init(&completion);
|
||||
recv_trunc = ISC_FALSE;
|
||||
result = isc_socket_recv(s2, &r, 1, task, event_done, &completion);
|
||||
ATF_CHECK_EQ(result, ISC_R_SUCCESS);
|
||||
waitfor(&completion);
|
||||
ATF_CHECK(completion.done);
|
||||
ATF_CHECK_EQ(completion.result, ISC_R_SUCCESS);
|
||||
ATF_CHECK_STREQ(recvbuf, "Hello");
|
||||
ATF_CHECK_EQ(recv_trunc, ISC_FALSE);
|
||||
|
||||
/*
|
||||
* Send a message that will be truncated.
|
||||
*/
|
||||
memset(sendbuf, 0xff, sizeof(sendbuf));
|
||||
snprintf(sendbuf, sizeof(sendbuf), "Hello");
|
||||
r.base = (void *) sendbuf;
|
||||
r.length = sizeof(sendbuf);
|
||||
|
||||
completion_init(&completion);
|
||||
|
||||
socketevent = isc_socket_socketevent(mctx, s1, ISC_SOCKEVENT_SENDDONE,
|
||||
event_done, &completion);
|
||||
ATF_REQUIRE(socketevent != NULL);
|
||||
|
||||
result = isc_socket_sendto2(s1, &r, task, &addr2, NULL, socketevent, 0);
|
||||
ATF_REQUIRE_EQ_MSG(result, ISC_R_SUCCESS, "%s",
|
||||
isc_result_totext(result));
|
||||
waitfor(&completion);
|
||||
ATF_CHECK(completion.done);
|
||||
ATF_CHECK_EQ(completion.result, ISC_R_SUCCESS);
|
||||
|
||||
r.base = (void *) recvbuf;
|
||||
r.length = BUFSIZ;
|
||||
completion_init(&completion);
|
||||
recv_trunc = ISC_FALSE;
|
||||
result = isc_socket_recv(s2, &r, 1, task, event_done, &completion);
|
||||
ATF_CHECK_EQ(result, ISC_R_SUCCESS);
|
||||
waitfor(&completion);
|
||||
ATF_CHECK(completion.done);
|
||||
ATF_CHECK_EQ(completion.result, ISC_R_SUCCESS);
|
||||
ATF_CHECK_STREQ(recvbuf, "Hello");
|
||||
ATF_CHECK_EQ(recv_trunc, ISC_TRUE);
|
||||
|
||||
isc_task_detach(&task);
|
||||
|
||||
isc_socket_detach(&s1);
|
||||
isc_socket_detach(&s2);
|
||||
|
||||
isc_test_end();
|
||||
}
|
||||
|
||||
/*
|
||||
* Main
|
||||
*/
|
||||
@@ -788,6 +916,7 @@ ATF_TP_ADD_TCS(tp) {
|
||||
ATF_TP_ADD_TC(tp, udp_dscp_v4);
|
||||
ATF_TP_ADD_TC(tp, udp_dscp_v6);
|
||||
ATF_TP_ADD_TC(tp, net_probedscp);
|
||||
ATF_TP_ADD_TC(tp, udp_trunc);
|
||||
|
||||
return (atf_no_error());
|
||||
}
|
||||
|
Reference in New Issue
Block a user