From: Cyril Hrubis <chrubis@suse.cz>
To: ltp@lists.linux.it
Subject: [LTP] [PATCH v1 2/2] libs/libltpnewipc: Add libmsgctl.c into new ipc library
Date: Wed, 29 Jul 2020 16:34:51 +0200 [thread overview]
Message-ID: <20200729143451.GG7152@yuki.lan> (raw)
In-Reply-To: <1595911224-12470-2-git-send-email-xuyang2018.jy@cn.fujitsu.com>
Hi!
> Signed-off-by: Yang Xu <xuyang2018.jy@cn.fujitsu.com>
> ---
> include/libnewipc.h | 28 ++++------
> libs/libltpnewipc/libnewipc.c | 101 ++++++++++++++++++++++++++++++++--
> 2 files changed, 109 insertions(+), 20 deletions(-)
Just FYI we do not have to put all the code into a single *.c file, we
can have as many as we want in the library directory...
>
> diff --git a/include/libnewipc.h b/include/libnewipc.h
> index 30288cd68..1256c4668 100644
> --- a/include/libnewipc.h
> +++ b/include/libnewipc.h
> @@ -1,21 +1,7 @@
> +// SPDX-License-Identifier: GPL-2.0-or-later
> /*
> * Copyright (c) 2016 Xiao Yang <yangx.jy@cn.fujitsu.com>
> *
> - * This program is free software; you can redistribute it and/or modify
> - * it under the terms of the GNU General Public License as published by
> - * the Free Software Foundation; either version 2 of the License, or
> - * (at your option) any later version.
> - *
> - * This program is distributed in the hope that it will be useful,
> - * but WITHOUT ANY WARRANTY; without even the implied warranty of
> - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
> - * the GNU General Public License for more details.
> - *
> - * You should have received a copy of the GNU General Public License
> - * along with this program.
> - */
> -
> -/*
> * common definitions for the IPC system calls.
> */
Ideally the changes in comments should be in a separate patch from
functional changes.
> @@ -56,4 +42,14 @@ void *probe_free_addr(const char *file, const int lineno);
> #define PROBE_FREE_ADDR() \
> probe_free_addr(__FILE__, __LINE__)
>
> -#endif /* newlibipc.h */
> +void do_read(const char *file, const int lineno, long key, int tid, \
> + long type, int child, int nreps);
> +#define DO_READ(key, tid, type, child, nreps) \
> + do_read(__FILE__, __LINE__, (key), (tid), (type), (child), (nreps))
> +
> +void do_writer(const char *file, const int lineno, long key, int tid, \
> + long type, int child, int nreps);
> +#define DO_WRITER(key, tid, type, child, nreps) \
> + do_writer(__FILE__, __LINE__, (key), (tid), (type), (child), (nreps))
The naming here is a bit inconsistent, either we should have do_reader()
and do_writer() or do_read() and do_write(), but mixing them like this
is strange choice.
> +#endif /* libnewipc.h */
> diff --git a/libs/libltpnewipc/libnewipc.c b/libs/libltpnewipc/libnewipc.c
> index 3734040b7..4980ce078 100644
> --- a/libs/libltpnewipc/libnewipc.c
> +++ b/libs/libltpnewipc/libnewipc.c
> @@ -1,10 +1,7 @@
> // SPDX-License-Identifier: GPL-2.0-or-later
> /*
> * Copyright (c) 2016 Xiao Yang <yangx.jy@cn.fujitsu.com>
> - */
> -
> -/*
> - * DESCRIPTION
> + *
> * common routines for the IPC system call tests.
> */
>
> @@ -26,6 +23,14 @@
>
> #define BUFSIZE 1024
>
> +struct mbuffer {
> + long type;
> + struct {
> + char len;
> + char pbytes[99];
> + } data;
> +};
> +
> key_t getipckey(const char *file, const int lineno)
> {
> char buf[BUFSIZE];
> @@ -86,3 +91,91 @@ void *probe_free_addr(const char *file, const int lineno)
>
> return addr;
> }
> +
> +int verify(char *buf, char val, int size, int child)
> +{
> + while (size-- > 0) {
> + if (*buf++ != val) {
> + tst_res(TFAIL, "Verify error in child %d, *buf = %x, "
> + "val = %x, size = %d\n", child, *buf, val,
> + size);
> + return 1;
> + }
> + }
> + return 0;
> +}
> +
> +void do_reader(const char *file, const int lineno, long key, int tid,
> + long type, int child, int nreps)
> +{
> + int i, size;
> + int id;
> + struct mbuffer buffer;
> +
> + id = safe_msgget(file, lineno, key, 0);
> + if (id != tid) {
> + tst_res(TFAIL,
> + "Message queue mismatch in the reader of child group"
> + " %d for message queue id %d\n", child, id);
> + return;
> + }
> + for (i = 0; i < nreps; i++) {
> + memset(&buffer, 0, sizeof(buffer));
> +
> + size = safe_msgrcv(file, lineno, id, &buffer, 100, type, 0);
> + if (buffer.type != type) {
> + tst_res(TFAIL, "Type mismatch in child %d, read #%d, "
> + "for message got %ld, exected %ld",
> + child, (i + 1), buffer.type, type);
> + return;
> + }
> + if (buffer.data.len + 1 != size) {
> + tst_res(TFAIL, "Size mismatch in child %d, read #%d, "
> + "for message got %d, expected %d",
> + child, (i + 1), buffer.data.len + 1, size);
> + return;
> + }
> + if (verify(buffer.data.pbytes, (key % 255), size - 1, child)) {
> + tst_res(TFAIL, "Verify failed in child %d read # = %d, "
> + "key = %lx\n", child, (i + 1), key);
> + return;
> + }
> + key++;
> + }
> +}
> +
> +void fill_buffer(char *buf, char val, int size)
> +{
> + int i;
> +
> + for (i = 0; i < size; i++)
> + buf[i] = val;
> +}
> +
> +void do_writer(const char *file, const int lineno, long key, int tid,
> + long type, int child, int nreps)
> +{
> + int i, size;
> + int id;
> + struct mbuffer buffer;
> +
> + id = safe_msgget(file, lineno, key, 0);
> + if (id != tid) {
> + tst_res(TFAIL, "Message queue mismatch in the reader of child"
> + " group %d for message queue id %d\n", child, id);
> + return;
> + }
> +
> + for (i = 0; i < nreps; i++) {
> + memset(&buffer, 0, sizeof(buffer));
> +
> + do {
> + size = (lrand48() % 99);
> + } while (size == 0);
> + fill_buffer(buffer.data.pbytes, (key % 255), size);
> + buffer.data.len = size;
> + buffer.type = type;
> + safe_msgsnd(file, lineno, id, &buffer, size + 1, 0);
> + key++;
> + }
> +}
> --
> 2.23.0
>
>
>
>
> --
> Mailing list info: https://lists.linux.it/listinfo/ltp
--
Cyril Hrubis
chrubis@suse.cz
next prev parent reply other threads:[~2020-07-29 14:34 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-07-28 4:40 [LTP] [PATCH v1 1/2] libs/libltpnewipc: Use safe macros Yang Xu
2020-07-28 4:40 ` [LTP] [PATCH v1 2/2] libs/libltpnewipc: Add libmsgctl.c into new ipc library Yang Xu
2020-07-29 7:37 ` Li Wang
2020-07-29 7:51 ` Yang Xu
2020-07-29 8:16 ` Li Wang
2020-07-29 8:30 ` Yang Xu
2020-07-29 14:34 ` Cyril Hrubis [this message]
2020-07-30 7:00 ` Yang Xu
2020-08-03 8:47 ` Li Wang
2020-07-29 14:30 ` [LTP] [PATCH v1 1/2] libs/libltpnewipc: Use safe macros Cyril Hrubis
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=20200729143451.GG7152@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