2011-04-18 11:10:18 -07:00
|
|
|
/* Copyright Joyent, Inc. and other Node contributors. All rights reserved.
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to
|
|
|
|
* deal in the Software without restriction, including without limitation the
|
|
|
|
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
|
|
* sell copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
|
|
* IN THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2011-07-06 15:28:18 -07:00
|
|
|
#include "uv.h"
|
2011-04-19 04:26:32 +02:00
|
|
|
#include "task.h"
|
|
|
|
|
2011-04-05 01:43:17 +02:00
|
|
|
#include <stdio.h>
|
2018-05-21 17:02:49 -07:00
|
|
|
#include <stdlib.h>
|
2020-11-09 21:50:09 -05:00
|
|
|
#include <string.h> /* strlen */
|
2011-03-31 00:21:15 -07:00
|
|
|
|
|
|
|
static int completed_pingers = 0;
|
|
|
|
|
2018-01-14 16:04:59 -05:00
|
|
|
#if defined(__CYGWIN__) || defined(__MSYS__) || defined(__MVS__)
|
2017-04-06 21:56:34 -04:00
|
|
|
#define NUM_PINGS 100 /* fewer pings to avoid timeout */
|
|
|
|
#else
|
2011-04-07 04:51:59 +02:00
|
|
|
#define NUM_PINGS 1000
|
2017-04-06 21:56:34 -04:00
|
|
|
#endif
|
2011-04-05 01:43:17 +02:00
|
|
|
|
2011-04-07 04:51:59 +02:00
|
|
|
static char PING[] = "PING\n";
|
2020-11-09 21:50:09 -05:00
|
|
|
static char PONG[] = "PONG\n";
|
2011-07-20 12:14:15 -07:00
|
|
|
static int pinger_on_connect_count;
|
2011-03-31 00:21:15 -07:00
|
|
|
|
|
|
|
|
|
|
|
typedef struct {
|
2018-05-21 17:02:49 -07:00
|
|
|
int vectored_writes;
|
2020-11-09 21:50:09 -05:00
|
|
|
unsigned pongs;
|
|
|
|
unsigned state;
|
2011-07-01 17:54:17 -07:00
|
|
|
union {
|
|
|
|
uv_tcp_t tcp;
|
|
|
|
uv_pipe_t pipe;
|
2011-09-13 21:50:32 -07:00
|
|
|
} stream;
|
2011-07-13 22:04:51 +02:00
|
|
|
uv_connect_t connect_req;
|
2020-11-09 21:50:09 -05:00
|
|
|
char* pong;
|
2011-04-07 04:51:59 +02:00
|
|
|
} pinger_t;
|
|
|
|
|
2011-03-31 00:21:15 -07:00
|
|
|
|
2013-08-31 15:48:23 +02:00
|
|
|
static void alloc_cb(uv_handle_t* handle, size_t size, uv_buf_t* buf) {
|
|
|
|
buf->base = malloc(size);
|
|
|
|
buf->len = size;
|
2011-06-01 21:04:01 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-11-09 21:50:09 -05:00
|
|
|
static void ponger_on_close(uv_handle_t* handle) {
|
|
|
|
if (handle->data)
|
|
|
|
free(handle->data);
|
|
|
|
else
|
|
|
|
free(handle);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-06-08 12:02:42 +02:00
|
|
|
static void pinger_on_close(uv_handle_t* handle) {
|
2020-11-09 21:50:09 -05:00
|
|
|
pinger_t* pinger = (pinger_t*) handle->data;
|
2011-04-01 00:09:06 +02:00
|
|
|
|
2020-11-09 21:50:09 -05:00
|
|
|
ASSERT_EQ(NUM_PINGS, pinger->pongs);
|
2011-04-07 04:51:59 +02:00
|
|
|
|
2020-11-09 21:50:09 -05:00
|
|
|
if (handle == (uv_handle_t*) &pinger->stream.tcp) {
|
|
|
|
free(pinger); /* also frees handle */
|
|
|
|
} else {
|
|
|
|
uv_close((uv_handle_t*) &pinger->stream.tcp, ponger_on_close);
|
|
|
|
free(handle);
|
|
|
|
}
|
2011-04-07 04:51:59 +02:00
|
|
|
|
2011-03-31 00:21:15 -07:00
|
|
|
completed_pingers++;
|
|
|
|
}
|
|
|
|
|
2011-04-07 04:51:59 +02:00
|
|
|
|
2020-08-21 17:25:42 -04:00
|
|
|
static void pinger_after_write(uv_write_t* req, int status) {
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(status);
|
2021-10-09 18:57:43 -04:00
|
|
|
free(req->data);
|
2011-04-07 04:51:59 +02:00
|
|
|
free(req);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-04-16 14:04:45 -07:00
|
|
|
static void pinger_write_ping(pinger_t* pinger) {
|
2020-11-09 21:50:09 -05:00
|
|
|
uv_stream_t* stream;
|
2020-08-21 17:25:42 -04:00
|
|
|
uv_write_t* req;
|
2018-05-21 17:02:49 -07:00
|
|
|
uv_buf_t bufs[sizeof PING - 1];
|
|
|
|
int i, nbufs;
|
|
|
|
|
2020-11-09 21:50:09 -05:00
|
|
|
stream = (uv_stream_t*) &pinger->stream.tcp;
|
|
|
|
|
2018-05-21 17:02:49 -07:00
|
|
|
if (!pinger->vectored_writes) {
|
|
|
|
/* Write a single buffer. */
|
|
|
|
nbufs = 1;
|
|
|
|
bufs[0] = uv_buf_init(PING, sizeof PING - 1);
|
|
|
|
} else {
|
|
|
|
/* Write multiple buffers, each with one byte in them. */
|
|
|
|
nbufs = sizeof PING - 1;
|
|
|
|
for (i = 0; i < nbufs; i++) {
|
|
|
|
bufs[i] = uv_buf_init(&PING[i], 1);
|
|
|
|
}
|
|
|
|
}
|
2011-04-15 03:32:55 +02:00
|
|
|
|
2012-12-14 11:36:17 +01:00
|
|
|
req = malloc(sizeof(*req));
|
2020-11-09 21:50:09 -05:00
|
|
|
ASSERT_NOT_NULL(req);
|
2021-10-09 18:57:43 -04:00
|
|
|
req->data = NULL;
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(uv_write(req, stream, bufs, nbufs, pinger_after_write));
|
2011-04-16 14:04:45 -07:00
|
|
|
|
|
|
|
puts("PING");
|
2011-04-07 04:51:59 +02:00
|
|
|
}
|
|
|
|
|
2011-04-16 14:04:45 -07:00
|
|
|
|
2013-08-31 02:15:08 +02:00
|
|
|
static void pinger_read_cb(uv_stream_t* stream,
|
|
|
|
ssize_t nread,
|
|
|
|
const uv_buf_t* buf) {
|
2011-08-17 13:23:18 +02:00
|
|
|
ssize_t i;
|
2011-04-07 04:51:59 +02:00
|
|
|
pinger_t* pinger;
|
|
|
|
|
2020-08-21 17:25:42 -04:00
|
|
|
pinger = (pinger_t*) stream->data;
|
2011-04-20 22:28:36 +02:00
|
|
|
|
2011-05-03 02:35:11 +02:00
|
|
|
if (nread < 0) {
|
2020-11-09 21:50:09 -05:00
|
|
|
ASSERT_EQ(nread, UV_EOF);
|
2011-03-31 00:21:15 -07:00
|
|
|
|
2011-04-16 14:04:45 -07:00
|
|
|
puts("got EOF");
|
2013-08-31 02:15:08 +02:00
|
|
|
free(buf->base);
|
2011-05-03 02:35:11 +02:00
|
|
|
|
2020-11-09 21:50:09 -05:00
|
|
|
uv_close((uv_handle_t*) stream, pinger_on_close);
|
2011-05-03 02:35:11 +02:00
|
|
|
|
2011-03-31 00:21:15 -07:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-11-09 21:50:09 -05:00
|
|
|
/* Now we count the pongs */
|
2011-03-31 00:21:15 -07:00
|
|
|
for (i = 0; i < nread; i++) {
|
2020-11-09 21:50:09 -05:00
|
|
|
ASSERT_EQ(buf->base[i], pinger->pong[pinger->state]);
|
|
|
|
pinger->state = (pinger->state + 1) % strlen(pinger->pong);
|
2012-09-30 23:35:22 +02:00
|
|
|
|
|
|
|
if (pinger->state != 0)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
printf("PONG %d\n", pinger->pongs);
|
|
|
|
pinger->pongs++;
|
|
|
|
|
|
|
|
if (pinger->pongs < NUM_PINGS) {
|
|
|
|
pinger_write_ping(pinger);
|
|
|
|
} else {
|
2020-11-09 21:50:09 -05:00
|
|
|
uv_close((uv_handle_t*) stream, pinger_on_close);
|
2012-09-30 23:35:22 +02:00
|
|
|
break;
|
2011-03-31 00:21:15 -07:00
|
|
|
}
|
|
|
|
}
|
2012-09-30 23:35:22 +02:00
|
|
|
|
2013-08-31 02:15:08 +02:00
|
|
|
free(buf->base);
|
2011-03-31 00:21:15 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-11-09 21:50:09 -05:00
|
|
|
static void ponger_read_cb(uv_stream_t* stream,
|
|
|
|
ssize_t nread,
|
|
|
|
const uv_buf_t* buf) {
|
|
|
|
uv_buf_t writebuf;
|
|
|
|
uv_write_t* req;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (nread < 0) {
|
|
|
|
ASSERT_EQ(nread, UV_EOF);
|
|
|
|
|
|
|
|
puts("got EOF");
|
|
|
|
free(buf->base);
|
|
|
|
|
|
|
|
uv_close((uv_handle_t*) stream, ponger_on_close);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Echo back */
|
|
|
|
for (i = 0; i < nread; i++) {
|
|
|
|
if (buf->base[i] == 'I')
|
|
|
|
buf->base[i] = 'O';
|
|
|
|
}
|
|
|
|
|
|
|
|
writebuf = uv_buf_init(buf->base, nread);
|
|
|
|
req = malloc(sizeof(*req));
|
|
|
|
ASSERT_NOT_NULL(req);
|
2021-10-09 18:57:43 -04:00
|
|
|
req->data = buf->base;
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(uv_write(req, stream, &writebuf, 1, pinger_after_write));
|
2020-11-09 21:50:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-08-21 17:25:42 -04:00
|
|
|
static void pinger_on_connect(uv_connect_t* req, int status) {
|
2020-11-09 21:50:09 -05:00
|
|
|
pinger_t* pinger = (pinger_t*) req->handle->data;
|
2011-03-31 00:21:15 -07:00
|
|
|
|
2011-07-20 12:14:15 -07:00
|
|
|
pinger_on_connect_count++;
|
|
|
|
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(status);
|
2011-04-05 01:43:17 +02:00
|
|
|
|
2020-11-09 21:50:09 -05:00
|
|
|
ASSERT_EQ(1, uv_is_readable(req->handle));
|
|
|
|
ASSERT_EQ(1, uv_is_writable(req->handle));
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(uv_is_closing((uv_handle_t *) req->handle));
|
2012-02-08 12:01:33 -08:00
|
|
|
|
2011-04-07 04:51:59 +02:00
|
|
|
pinger_write_ping(pinger);
|
2011-05-04 17:10:33 +02:00
|
|
|
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(uv_read_start((uv_stream_t*) req->handle,
|
|
|
|
alloc_cb,
|
|
|
|
pinger_read_cb));
|
2011-04-07 04:51:59 +02:00
|
|
|
}
|
2011-03-31 00:21:15 -07:00
|
|
|
|
|
|
|
|
2011-07-01 17:54:17 -07:00
|
|
|
/* same ping-pong test, but using IPv6 connection */
|
2018-05-21 17:02:49 -07:00
|
|
|
static void tcp_pinger_v6_new(int vectored_writes) {
|
2011-04-16 14:04:45 -07:00
|
|
|
int r;
|
2013-08-31 03:00:34 +02:00
|
|
|
struct sockaddr_in6 server_addr;
|
2020-08-21 17:25:42 -04:00
|
|
|
pinger_t* pinger;
|
2011-03-31 00:21:15 -07:00
|
|
|
|
2014-04-16 22:24:52 +02:00
|
|
|
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(uv_ip6_addr("::1", TEST_PORT, &server_addr));
|
2013-08-31 03:00:34 +02:00
|
|
|
pinger = malloc(sizeof(*pinger));
|
2020-11-09 21:50:09 -05:00
|
|
|
ASSERT_NOT_NULL(pinger);
|
2018-05-21 17:02:49 -07:00
|
|
|
pinger->vectored_writes = vectored_writes;
|
2011-04-07 04:51:59 +02:00
|
|
|
pinger->state = 0;
|
|
|
|
pinger->pongs = 0;
|
2020-11-09 21:50:09 -05:00
|
|
|
pinger->pong = PING;
|
2011-03-31 00:21:15 -07:00
|
|
|
|
2011-11-30 11:26:52 +07:00
|
|
|
/* Try to connect to the server and do NUM_PINGS ping-pongs. */
|
2011-09-13 21:50:32 -07:00
|
|
|
r = uv_tcp_init(uv_default_loop(), &pinger->stream.tcp);
|
|
|
|
pinger->stream.tcp.data = pinger;
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(r);
|
2011-04-07 04:51:59 +02:00
|
|
|
|
2018-05-28 21:34:03 -07:00
|
|
|
/* We are never doing multiple reads/connects at a time anyway, so these
|
|
|
|
* handles can be pre-initialized. */
|
2013-09-03 23:12:07 +02:00
|
|
|
r = uv_tcp_connect(&pinger->connect_req,
|
|
|
|
&pinger->stream.tcp,
|
|
|
|
(const struct sockaddr*) &server_addr,
|
|
|
|
pinger_on_connect);
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(r);
|
2011-07-20 12:14:15 -07:00
|
|
|
|
|
|
|
/* Synchronous connect callbacks are not allowed. */
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(pinger_on_connect_count);
|
2011-03-31 00:21:15 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-05-21 17:02:49 -07:00
|
|
|
static void tcp_pinger_new(int vectored_writes) {
|
2011-07-01 17:54:17 -07:00
|
|
|
int r;
|
2013-08-31 03:00:34 +02:00
|
|
|
struct sockaddr_in server_addr;
|
2020-08-21 17:25:42 -04:00
|
|
|
pinger_t* pinger;
|
2011-03-31 00:21:15 -07:00
|
|
|
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(uv_ip4_addr("127.0.0.1", TEST_PORT, &server_addr));
|
2013-08-31 03:00:34 +02:00
|
|
|
pinger = malloc(sizeof(*pinger));
|
2020-11-09 21:50:09 -05:00
|
|
|
ASSERT_NOT_NULL(pinger);
|
2018-05-21 17:02:49 -07:00
|
|
|
pinger->vectored_writes = vectored_writes;
|
2011-07-01 17:54:17 -07:00
|
|
|
pinger->state = 0;
|
|
|
|
pinger->pongs = 0;
|
2020-11-09 21:50:09 -05:00
|
|
|
pinger->pong = PING;
|
2011-03-31 00:21:15 -07:00
|
|
|
|
2011-11-30 11:26:52 +07:00
|
|
|
/* Try to connect to the server and do NUM_PINGS ping-pongs. */
|
2011-09-13 21:50:32 -07:00
|
|
|
r = uv_tcp_init(uv_default_loop(), &pinger->stream.tcp);
|
|
|
|
pinger->stream.tcp.data = pinger;
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(r);
|
2011-03-31 00:21:15 -07:00
|
|
|
|
2018-05-28 21:34:03 -07:00
|
|
|
/* We are never doing multiple reads/connects at a time anyway, so these
|
|
|
|
* handles can be pre-initialized. */
|
2013-08-31 05:24:30 +02:00
|
|
|
r = uv_tcp_connect(&pinger->connect_req,
|
|
|
|
&pinger->stream.tcp,
|
2013-09-03 23:12:07 +02:00
|
|
|
(const struct sockaddr*) &server_addr,
|
2013-08-31 05:24:30 +02:00
|
|
|
pinger_on_connect);
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(r);
|
2011-07-20 12:14:15 -07:00
|
|
|
|
|
|
|
/* Synchronous connect callbacks are not allowed. */
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(pinger_on_connect_count);
|
2011-03-31 00:21:15 -07:00
|
|
|
}
|
2011-07-01 17:04:05 -07:00
|
|
|
|
|
|
|
|
2018-05-21 17:02:49 -07:00
|
|
|
static void pipe_pinger_new(int vectored_writes) {
|
2011-07-01 17:04:05 -07:00
|
|
|
int r;
|
2020-08-21 17:25:42 -04:00
|
|
|
pinger_t* pinger;
|
2011-07-01 17:04:05 -07:00
|
|
|
|
2020-08-21 17:25:42 -04:00
|
|
|
pinger = malloc(sizeof(*pinger));
|
2020-11-09 21:50:09 -05:00
|
|
|
ASSERT_NOT_NULL(pinger);
|
2018-05-21 17:02:49 -07:00
|
|
|
pinger->vectored_writes = vectored_writes;
|
2011-07-01 17:04:05 -07:00
|
|
|
pinger->state = 0;
|
|
|
|
pinger->pongs = 0;
|
2020-11-09 21:50:09 -05:00
|
|
|
pinger->pong = PING;
|
2011-07-01 17:04:05 -07:00
|
|
|
|
2011-11-30 11:26:52 +07:00
|
|
|
/* Try to connect to the server and do NUM_PINGS ping-pongs. */
|
2011-09-26 09:42:41 -07:00
|
|
|
r = uv_pipe_init(uv_default_loop(), &pinger->stream.pipe, 0);
|
2011-09-13 21:50:32 -07:00
|
|
|
pinger->stream.pipe.data = pinger;
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(r);
|
2011-07-01 17:04:05 -07:00
|
|
|
|
2018-05-28 21:34:03 -07:00
|
|
|
/* We are never doing multiple reads/connects at a time anyway, so these
|
|
|
|
* handles can be pre-initialized. */
|
2011-11-04 16:06:53 -07:00
|
|
|
uv_pipe_connect(&pinger->connect_req, &pinger->stream.pipe, TEST_PIPENAME,
|
2011-07-20 12:14:15 -07:00
|
|
|
pinger_on_connect);
|
|
|
|
|
|
|
|
/* Synchronous connect callbacks are not allowed. */
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(pinger_on_connect_count);
|
2011-07-01 17:04:05 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-11-09 21:50:09 -05:00
|
|
|
static void socketpair_pinger_new(int vectored_writes) {
|
|
|
|
pinger_t* pinger;
|
|
|
|
uv_os_sock_t fds[2];
|
|
|
|
uv_tcp_t* ponger;
|
|
|
|
|
|
|
|
pinger = malloc(sizeof(*pinger));
|
|
|
|
ASSERT_NOT_NULL(pinger);
|
|
|
|
pinger->vectored_writes = vectored_writes;
|
|
|
|
pinger->state = 0;
|
|
|
|
pinger->pongs = 0;
|
|
|
|
pinger->pong = PONG;
|
|
|
|
|
|
|
|
/* Try to make a socketpair and do NUM_PINGS ping-pongs. */
|
|
|
|
(void)uv_default_loop(); /* ensure WSAStartup has been performed */
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(uv_socketpair(SOCK_STREAM, 0, fds, UV_NONBLOCK_PIPE, UV_NONBLOCK_PIPE));
|
2020-11-09 21:50:09 -05:00
|
|
|
#ifndef _WIN32
|
|
|
|
/* On Windows, this is actually a UV_TCP, but libuv doesn't detect that. */
|
|
|
|
ASSERT_EQ(uv_guess_handle((uv_file) fds[0]), UV_NAMED_PIPE);
|
|
|
|
ASSERT_EQ(uv_guess_handle((uv_file) fds[1]), UV_NAMED_PIPE);
|
|
|
|
#endif
|
|
|
|
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(uv_tcp_init(uv_default_loop(), &pinger->stream.tcp));
|
2020-11-09 21:50:09 -05:00
|
|
|
pinger->stream.pipe.data = pinger;
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(uv_tcp_open(&pinger->stream.tcp, fds[1]));
|
2020-11-09 21:50:09 -05:00
|
|
|
|
|
|
|
ponger = malloc(sizeof(*ponger));
|
|
|
|
ASSERT_NOT_NULL(ponger);
|
|
|
|
ponger->data = NULL;
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(uv_tcp_init(uv_default_loop(), ponger));
|
|
|
|
ASSERT_OK(uv_tcp_open(ponger, fds[0]));
|
2020-11-09 21:50:09 -05:00
|
|
|
|
|
|
|
pinger_write_ping(pinger);
|
|
|
|
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(uv_read_start((uv_stream_t*) &pinger->stream.tcp,
|
|
|
|
alloc_cb,
|
|
|
|
pinger_read_cb));
|
|
|
|
ASSERT_OK(uv_read_start((uv_stream_t*) ponger,
|
|
|
|
alloc_cb,
|
|
|
|
ponger_read_cb));
|
2020-11-09 21:50:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void pipe2_pinger_new(int vectored_writes) {
|
|
|
|
uv_file fds[2];
|
|
|
|
pinger_t* pinger;
|
|
|
|
uv_pipe_t* ponger;
|
|
|
|
|
|
|
|
/* Try to make a pipe and do NUM_PINGS pings. */
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(uv_pipe(fds, UV_NONBLOCK_PIPE, UV_NONBLOCK_PIPE));
|
2020-11-09 21:50:09 -05:00
|
|
|
ASSERT_EQ(uv_guess_handle(fds[0]), UV_NAMED_PIPE);
|
|
|
|
ASSERT_EQ(uv_guess_handle(fds[1]), UV_NAMED_PIPE);
|
|
|
|
|
|
|
|
ponger = malloc(sizeof(*ponger));
|
|
|
|
ASSERT_NOT_NULL(ponger);
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(uv_pipe_init(uv_default_loop(), ponger, 0));
|
|
|
|
ASSERT_OK(uv_pipe_open(ponger, fds[0]));
|
2020-11-09 21:50:09 -05:00
|
|
|
|
|
|
|
pinger = malloc(sizeof(*pinger));
|
|
|
|
ASSERT_NOT_NULL(pinger);
|
|
|
|
pinger->vectored_writes = vectored_writes;
|
|
|
|
pinger->state = 0;
|
|
|
|
pinger->pongs = 0;
|
|
|
|
pinger->pong = PING;
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(uv_pipe_init(uv_default_loop(), &pinger->stream.pipe, 0));
|
|
|
|
ASSERT_OK(uv_pipe_open(&pinger->stream.pipe, fds[1]));
|
2020-11-09 21:50:09 -05:00
|
|
|
pinger->stream.pipe.data = pinger; /* record for close_cb */
|
|
|
|
ponger->data = pinger; /* record for read_cb */
|
|
|
|
|
|
|
|
pinger_write_ping(pinger);
|
|
|
|
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(uv_read_start((uv_stream_t*) ponger, alloc_cb, pinger_read_cb));
|
2020-11-09 21:50:09 -05:00
|
|
|
}
|
|
|
|
|
2018-05-21 17:02:49 -07:00
|
|
|
static int run_ping_pong_test(void) {
|
2013-01-16 23:20:03 +01:00
|
|
|
uv_run(uv_default_loop(), UV_RUN_DEFAULT);
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_EQ(1, completed_pingers);
|
2011-07-01 17:54:17 -07:00
|
|
|
|
2023-03-12 07:59:00 -06:00
|
|
|
MAKE_VALGRIND_HAPPY(uv_default_loop());
|
2011-07-01 17:54:17 -07:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-05-21 17:02:49 -07:00
|
|
|
TEST_IMPL(tcp_ping_pong) {
|
|
|
|
tcp_pinger_new(0);
|
2020-11-09 21:50:09 -05:00
|
|
|
run_ping_pong_test();
|
|
|
|
|
|
|
|
completed_pingers = 0;
|
|
|
|
socketpair_pinger_new(0);
|
2018-05-21 17:02:49 -07:00
|
|
|
return run_ping_pong_test();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TEST_IMPL(tcp_ping_pong_vec) {
|
|
|
|
tcp_pinger_new(1);
|
2020-11-09 21:50:09 -05:00
|
|
|
run_ping_pong_test();
|
|
|
|
|
|
|
|
completed_pingers = 0;
|
|
|
|
socketpair_pinger_new(1);
|
2018-05-21 17:02:49 -07:00
|
|
|
return run_ping_pong_test();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TEST_IMPL(tcp6_ping_pong) {
|
2014-12-29 00:10:45 +01:00
|
|
|
if (!can_ipv6())
|
|
|
|
RETURN_SKIP("IPv6 not supported");
|
2018-05-21 17:02:49 -07:00
|
|
|
tcp_pinger_v6_new(0);
|
|
|
|
return run_ping_pong_test();
|
|
|
|
}
|
2014-12-29 00:10:45 +01:00
|
|
|
|
2011-07-01 17:54:17 -07:00
|
|
|
|
2018-05-21 17:02:49 -07:00
|
|
|
TEST_IMPL(tcp6_ping_pong_vec) {
|
|
|
|
if (!can_ipv6())
|
|
|
|
RETURN_SKIP("IPv6 not supported");
|
|
|
|
tcp_pinger_v6_new(1);
|
|
|
|
return run_ping_pong_test();
|
2011-07-01 17:54:17 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TEST_IMPL(pipe_ping_pong) {
|
2018-05-21 17:02:49 -07:00
|
|
|
pipe_pinger_new(0);
|
2020-11-09 21:50:09 -05:00
|
|
|
run_ping_pong_test();
|
|
|
|
|
|
|
|
completed_pingers = 0;
|
|
|
|
pipe2_pinger_new(0);
|
2018-05-21 17:02:49 -07:00
|
|
|
return run_ping_pong_test();
|
|
|
|
}
|
2011-07-01 17:04:05 -07:00
|
|
|
|
|
|
|
|
2018-05-21 17:02:49 -07:00
|
|
|
TEST_IMPL(pipe_ping_pong_vec) {
|
|
|
|
pipe_pinger_new(1);
|
2020-11-09 21:50:09 -05:00
|
|
|
run_ping_pong_test();
|
|
|
|
|
|
|
|
completed_pingers = 0;
|
|
|
|
pipe2_pinger_new(1);
|
2018-05-21 17:02:49 -07:00
|
|
|
return run_ping_pong_test();
|
2011-07-01 17:04:05 -07:00
|
|
|
}
|