From: Cyril Hrubis <chrubis@suse.cz>
To: ltp@lists.linux.it
Subject: [LTP] [PATCH v2] pty04: Limit the number of packets sent to avoid timeout
Date: Thu, 5 Nov 2020 16:54:00 +0100 [thread overview]
Message-ID: <20201105155400.GA15701@yuki.lan> (raw)
In-Reply-To: <20201104163528.13833-1-rpalethorpe@suse.com>
Hi!
> +static ssize_t try_async_write(int fd, const char *data, ssize_t size,
> + ssize_t *done)
> {
> - ssize_t ret = write(fd, data, size);
> + ssize_t off = done ? *done : 0;
> + ssize_t ret = write(fd, data + off, size - off);
>
> if (ret < 0)
> return -(errno != EAGAIN);
>
> - return !written || (*written += ret) >= size;
> + if (!done)
> + return 1;
> +
> + *done += ret;
> + return *done >= size;
> +}
> +
> +static ssize_t try_async_read(int fd, char *data, ssize_t size,
> + ssize_t *done)
> +{
> + ssize_t off = done ? *done : 0;
> + ssize_t ret = read(fd, data + off, size - off);
> +
> + if (ret < 0)
> + return -(errno != EAGAIN);
> +
> + if (!done)
> + return 1;
> +
> + *done += ret;
> + return *done >= size;
> }
>
> -static void write_pty(const struct ldisc_info *ldisc)
> +#define RETRY_ASYNC(fn) ({ \
> + ssize_t done = 0; \
> + TST_RETRY_FUNC(try_async_##fn(ptmx, data, len, &done),\
> + TST_RETVAL_NOTNULL); \
> +})
I do not like this macro that much. Maybe we can have two inline
functions here one for read and one for write.
> +static void do_pty(const struct ldisc_info *ldisc)
> {
> char *data;
> - ssize_t written, ret;
> + ssize_t ret;
> size_t len = 0;
>
> switch (ldisc->n) {
> @@ -171,17 +198,12 @@ static void write_pty(const struct ldisc_info *ldisc)
> break;
> }
>
> -
> - written = 0;
> - ret = TST_RETRY_FUNC(try_write(ptmx, data, len, &written),
> - TST_RETVAL_NOTNULL);
> + ret = RETRY_ASYNC(write);
> if (ret < 0)
> tst_brk(TBROK | TERRNO, "Failed 1st write to PTY");
> tst_res(TPASS, "Wrote PTY %s %d (1)", ldisc->name, ptmx);
>
> - written = 0;
> - ret = TST_RETRY_FUNC(try_write(ptmx, data, len, &written),
> - TST_RETVAL_NOTNULL);
> + ret = RETRY_ASYNC(write);
> if (ret < 0)
> tst_brk(TBROK | TERRNO, "Failed 2nd write to PTY");
>
> @@ -190,14 +212,23 @@ static void write_pty(const struct ldisc_info *ldisc)
>
> tst_res(TPASS, "Wrote PTY %s %d (2)", ldisc->name, ptmx);
>
> - while (try_write(ptmx, data, len, NULL) >= 0)
> + ret = RETRY_ASYNC(read);
> + if (ret < 0)
> + tst_brk(TBROK | TERRNO, "Failed read of PTY");
> +
> + tst_res(TPASS, "Read PTY %s %d", ldisc->name, ptmx);
> + TST_CHECKPOINT_WAKE(0);
> +
> + while (RETRY_ASYNC(read) > -1 && RETRY_ASYNC(write) > -1)
> ;
>
> - tst_res(TPASS, "Writing to PTY interrupted by hangup");
> + tst_res(TPASS, "Transmission on PTY interrupted by hangup");
>
> tst_free_all();
> }
>
> +#undef RETRY_ASYNC
> +
> static void open_netdev(const struct ldisc_info *ldisc)
> {
> struct ifreq ifreq = { 0 };
> @@ -288,7 +319,7 @@ static void check_data(const struct ldisc_info *ldisc,
> tst_res(TINFO, "Will continue test without data checking");
> }
>
> -static void try_read(int fd, char *data, ssize_t size)
> +static ssize_t try_sync_read(int fd, char *data, ssize_t size)
> {
> ssize_t ret, n = 0;
> int retry = mtu;
> @@ -297,13 +328,31 @@ static void try_read(int fd, char *data, ssize_t size)
> ret = read(fd, data + n, size - n);
>
> if (ret < 0)
> - break;
> + return ret;
>
> if ((n += ret) >= size)
> - return;
> + return ret;
> + }
> +
> + tst_brk(TBROK | TERRNO, "Only read %zd of %zd bytes", n, size);
> +}
> +
> +static ssize_t try_sync_write(int fd, const char *data, ssize_t size)
> +{
> + ssize_t ret, n = 0;
> + int retry = mtu;
> +
> + while (retry--) {
> + ret = write(fd, data + n, size - n);
> +
> + if (ret < 0)
> + return ret;
> +
> + if ((n += ret) >= size)
> + return ret;
> }
>
> - tst_brk(TBROK | TERRNO, "Read %zd of %zd bytes", n, size);
> + tst_brk(TBROK | TERRNO, "Only wrote %zd of %zd bytes", n, size);
> }
>
> static void read_netdev(const struct ldisc_info *ldisc)
> @@ -323,19 +372,34 @@ static void read_netdev(const struct ldisc_info *ldisc)
>
> tst_res(TINFO, "Reading from socket %d", sk);
>
> - try_read(sk, data, plen);
> + TEST(try_sync_read(sk, data, plen));
> + if (TST_RET < 0)
> + tst_brk(TBROK | TTERRNO, "Read netdev %s %d (1)", ldisc->name, sk);
> check_data(ldisc, data, plen);
> tst_res(TPASS, "Read netdev %s %d (1)", ldisc->name, sk);
>
> - try_read(sk, data, plen);
> + TEST(try_sync_read(sk, data, plen));
> + if (TST_RET < 0)
> + tst_brk(TBROK | TTERRNO, "Read netdev %s %d (2)", ldisc->name, sk);
> check_data(ldisc, data, plen);
> tst_res(TPASS, "Read netdev %s %d (2)", ldisc->name, sk);
>
> - TST_CHECKPOINT_WAKE(0);
> - while ((rlen = read(sk, data, plen)) > 0)
> + TEST(try_sync_write(sk, data, plen));
> + if (TST_RET < 0)
> + tst_brk(TBROK | TTERRNO, "Write netdev %s %d", ldisc->name, sk);
> +
> + tst_res(TPASS, "Write netdev %s %d", ldisc->name, sk);
> +
> + while (1) {
> + if (try_sync_write(sk, data, plen) < 0)
> + break;
> +
> + if ((rlen = try_sync_read(sk, data, plen)) < 0)
> + break;
> check_data(ldisc, data, rlen);
> + }
>
> - tst_res(TPASS, "Reading data from netdev interrupted by hangup");
> + tst_res(TPASS, "Data transmission on netdev interrupted by hangup");
>
> close(sk);
> tst_free_all();
> @@ -356,7 +420,7 @@ static void do_test(unsigned int n)
> }
>
> if (!SAFE_FORK()) {
> - write_pty(ldisc);
> + do_pty(ldisc);
> return;
> }
So we do have one process that just reads and one that reads and writes
right? I wonder if that is okay, maybe we should write twice as much as
we read in the do_pty()?
Other than that it looks fine.
--
Cyril Hrubis
chrubis@suse.cz
next prev parent reply other threads:[~2020-11-05 15:54 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-10-28 17:10 [LTP] [PATCH] pty04: Limit the number of packets sent to avoid timeout Richard Palethorpe
2020-11-03 15:42 ` Cyril Hrubis
2020-11-03 16:34 ` Richard Palethorpe
2020-11-04 16:35 ` [LTP] [PATCH v2] " Richard Palethorpe
2020-11-05 15:54 ` Cyril Hrubis [this message]
2020-12-11 15:17 ` Cyril Hrubis
2020-12-14 9:49 ` [LTP] [PATCH v3] " Richard Palethorpe
2020-12-14 15:18 ` Cyril Hrubis
2020-12-14 9:32 ` [LTP] [PATCH v2] " Richard Palethorpe
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20201105155400.GA15701@yuki.lan \
--to=chrubis@suse.cz \
--cc=ltp@lists.linux.it \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).