Skip to content

Commit

Permalink
selftests: udp gso with corking
Browse files Browse the repository at this point in the history
Corked sockets take a different path to construct a udp datagram than
the lockless fast path. Test this alternate path.

Signed-off-by: Willem de Bruijn <willemb@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Willem de Bruijn authored and David S. Miller committed Apr 26, 2018
1 parent e5b2d91 commit 3f12817
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 10 deletions.
42 changes: 32 additions & 10 deletions tools/testing/selftests/net/udpgso.c
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ static bool cfg_do_ipv4;
static bool cfg_do_ipv6;
static bool cfg_do_connected;
static bool cfg_do_connectionless;
static bool cfg_do_msgmore;
static bool cfg_do_setsockopt;
static int cfg_specific_test_id = -1;

Expand Down Expand Up @@ -369,14 +370,30 @@ static void set_route_mtu(int mtu, bool is_ipv4)
fprintf(stderr, "route mtu (test): %u\n", mtu);
}

static bool __send_one(int fd, struct msghdr *msg, int flags)
{
int ret;

ret = sendmsg(fd, msg, flags);
if (ret == -1 && (errno == EMSGSIZE || errno == ENOMEM))
return false;
if (ret == -1)
error(1, errno, "sendmsg");
if (ret != msg->msg_iov->iov_len)
error(1, 0, "sendto: %d != %lu", ret, msg->msg_iov->iov_len);
if (msg->msg_flags)
error(1, 0, "sendmsg: return flags 0x%x\n", msg->msg_flags);

return true;
}

static bool send_one(int fd, int len, int gso_len,
struct sockaddr *addr, socklen_t alen)
{
char control[CMSG_SPACE(sizeof(uint16_t))] = {0};
struct msghdr msg = {0};
struct iovec iov = {0};
struct cmsghdr *cm;
int ret;

iov.iov_base = buf;
iov.iov_len = len;
Expand All @@ -398,15 +415,17 @@ static bool send_one(int fd, int len, int gso_len,
*((uint16_t *) CMSG_DATA(cm)) = gso_len;
}

ret = sendmsg(fd, &msg, 0);
if (ret == -1 && (errno == EMSGSIZE || errno == ENOMEM))
return false;
if (ret == -1)
error(1, errno, "sendmsg");
if (ret != len)
error(1, 0, "sendto: %d != %u", ret, len);
/* If MSG_MORE, send 1 byte followed by remainder */
if (cfg_do_msgmore && len > 1) {
iov.iov_len = 1;
if (!__send_one(fd, &msg, MSG_MORE))
error(1, 0, "send 1B failed");

return true;
iov.iov_base++;
iov.iov_len = len - 1;
}

return __send_one(fd, &msg, 0);
}

static int recv_one(int fd, int flags)
Expand Down Expand Up @@ -558,7 +577,7 @@ static void parse_opts(int argc, char **argv)
{
int c;

while ((c = getopt(argc, argv, "46cCst:")) != -1) {
while ((c = getopt(argc, argv, "46cCmst:")) != -1) {
switch (c) {
case '4':
cfg_do_ipv4 = true;
Expand All @@ -572,6 +591,9 @@ static void parse_opts(int argc, char **argv)
case 'C':
cfg_do_connectionless = true;
break;
case 'm':
cfg_do_msgmore = true;
break;
case 's':
cfg_do_setsockopt = true;
break;
Expand Down
6 changes: 6 additions & 0 deletions tools/testing/selftests/net/udpgso.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,9 @@ echo "ipv4 connected"
# blocked on 2nd loopback address
# echo "ipv6 connected"
# ./in_netns.sh ./udpgso -6 -c

echo "ipv4 msg_more"
./in_netns.sh ./udpgso -4 -C -m

echo "ipv6 msg_more"
./in_netns.sh ./udpgso -6 -C -m

0 comments on commit 3f12817

Please sign in to comment.