From: chrubis@suse.cz
To: DAN LI <li.dan@cn.fujitsu.com>
Cc: LTP list <ltp-list@lists.sourceforge.net>
Subject: Re: [LTP] [PATCH] mmap/mmap13.c: new case to test SIGBUS error of mmap
Date: Thu, 20 Jun 2013 18:12:42 +0200 [thread overview]
Message-ID: <20130620161242.GA3781@rei> (raw)
In-Reply-To: <51C2D643.1040807@cn.fujitsu.com>
Hi!
> Test SIGBUS error by accessing to a portion of the buffer that does not
> correspond to the file.
>
> Signed-off-by: DAN LI <li.dan@cn.fujitsu.com>
> ---
> runtest/syscalls | 1 +
> testcases/kernel/syscalls/mmap/mmap13.c | 155 ++++++++++++++++++++++++++++++++
> 2 files changed, 156 insertions(+)
> create mode 100644 testcases/kernel/syscalls/mmap/mmap13.c
>
> diff --git a/runtest/syscalls b/runtest/syscalls
> index e6ce29c..eba0200 100644
> --- a/runtest/syscalls
> +++ b/runtest/syscalls
> @@ -561,6 +561,7 @@ mmap06 mmap06
> mmap07 mmap07
> mmap08 mmap08
> mmap09 mmap09
> +mmap13 mmap13
> # test is broken, mask it for now.
> #mmap11 mmap11 -i 30000
>
> diff --git a/testcases/kernel/syscalls/mmap/mmap13.c b/testcases/kernel/syscalls/mmap/mmap13.c
> new file mode 100644
> index 0000000..6aaa8ad
> --- /dev/null
> +++ b/testcases/kernel/syscalls/mmap/mmap13.c
> @@ -0,0 +1,155 @@
> +/*
> + * Copyright (c) 2013 FNST, DAN LI <li.dan@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; if not, write to the Free Software
> + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
> + */
> +
> +/*
> + * Test Description:
> + * Verify error signal SIGBUS.
> + * "Attempted access to a portion of the buffer that does not correspond
> + * to the file."
> + *
> + * Expected Result:
> + * mmap() should succeed returning the address of the mapped region,
> + * and an attempt to access the memory which does not correspond to the file
> + * should rise the signal SIGBUS.
> + */
> +#include <stdio.h>
> +#include <stdlib.h>
> +#include <sys/types.h>
> +#include <errno.h>
> +#include <unistd.h>
> +#include <fcntl.h>
> +#include <string.h>
> +#include <signal.h>
> +#include <sys/stat.h>
> +#include <sys/mman.h>
> +#include <setjmp.h>
> +
> +#include "test.h"
> +#include "usctest.h"
> +
> +#define TEMPFILE "mmapfile"
> +
> +char *TCID = "mmap13";
> +int TST_TOTAL = 1;
> +
> +static size_t page_sz;
> +static char *addr;
> +static int fildes;
> +static int pass;
This should really be volatile or even better
'static volatile sig_atomic_t pass' because otherwise
the compiler may optimize out the if (pass) in the main loop.
> +static sigjmp_buf env;
> +
> +static void setup(void);
> +static void cleanup(void);
> +static void sig_handler(int sig);
> +
> +int main(int argc, char *argv[])
> +{
> + int lc;
> + char *ch;
> + char *msg;
> +
> + msg = parse_opts(argc, argv, NULL, NULL);
> + if (msg != NULL)
> + tst_brkm(TBROK, NULL, "OPTION PARSING ERROR - %s", msg);
> +
> + setup();
> +
> + for (lc = 0; TEST_LOOPING(lc); lc++) {
> + tst_count = 0;
> +
> + addr = mmap(0, page_sz * 2, PROT_READ | PROT_WRITE,
> + MAP_FILE | MAP_SHARED, fildes, 0);
> +
> + if (addr == MAP_FAILED) {
> + tst_resm(TFAIL | TERRNO, "mmap() failed on %s",
> + TEMPFILE);
> + continue;
> + }
> +
> + if (STD_FUNCTIONAL_TEST) {
> +
> + if (sigsetjmp(env, 1) == 0) {
> + ch = addr + page_sz + 1;
> + *ch = 0;
> +
> + if (pass)
> + tst_resm(TPASS, "Got SIGSEGV"
> + "as expected");
> + else
> + tst_resm(TFAIL, "Invalid access not"
> + "rise SIGSEGV");
> + }
> +
> + } else {
> + tst_resm(TPASS, "call succeeded");
> + }
> +
> + if (munmap(addr, page_sz * 2) != 0)
> + tst_brkm(TFAIL | TERRNO, cleanup,
> + "failed to unmap the mmapped pages");
> +
> + pass = 0;
> + }
> +
> + cleanup();
> + tst_exit();
> +
> +}
> +
> +static void setup(void)
> +{
> + tst_sig(NOFORK, sig_handler, cleanup);
> +
> + TEST_PAUSE;
> +
> + page_sz = getpagesize();
> +
> + tst_tmpdir();
> +
> + fildes = open(TEMPFILE, O_RDWR | O_CREAT, 0766);
> + if (fildes < 0)
> + tst_brkm(TFAIL | TERRNO, cleanup, "opening %s failed",
> + TEMPFILE);
> +
> + if (ftruncate(fildes, page_sz / 2) == -1)
> + tst_brkm(TFAIL | TERRNO, cleanup, "ftruncate %s failed",
> + TEMPFILE);
> +}
> +
> +/*
> + * This function gets executed when the test process receives
> + * the signal SIGBUS while trying to access the memory which
> + * does not correspond to the file.
> + */
> +static void sig_handler(int sig)
> +{
> + if (sig == SIGBUS) {
> + pass = 1;
> + tst_resm(TPASS, "Got SIGBUS as expected");
Calling the tst_resm() interface may not be save from signal context. We
should rather resort only to setting the variable here.
> + siglongjmp(env, 1);
> + } else {
> + tst_brkm(TBROK, cleanup, "received an unexpected signal");
> + }
> +}
> +
> +static void cleanup(void)
> +{
> + close(fildes);
> + TEST_CLEANUP;
> + tst_rmdir();
> +}
--
Cyril Hrubis
chrubis@suse.cz
------------------------------------------------------------------------------
This SF.net email is sponsored by Windows:
Build for Windows Store.
http://p.sf.net/sfu/windows-dev2dev
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list
next prev parent reply other threads:[~2013-06-20 16:11 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-06-20 10:15 [LTP] [PATCH] mmap/mmap13.c: new case to test SIGBUS error of mmap DAN LI
2013-06-20 16:12 ` chrubis [this message]
2013-06-20 16:31 ` Jan Stancek
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=20130620161242.GA3781@rei \
--to=chrubis@suse.cz \
--cc=li.dan@cn.fujitsu.com \
--cc=ltp-list@lists.sourceforge.net \
/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