blob: c9e802de859d9617f17166c61ad08c9082ae60d5 [file] [log] [blame]
Dmitry V. Levin3797d102016-04-22 20:37:19 +00001/*
2 * Check decoding of "old mmap" edition of mmap syscall.
3 *
4 * Copyright (c) 2016 Dmitry V. Levin <ldv@altlinux.org>
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. The name of the author may not be used to endorse or promote products
16 * derived from this software without specific prior written permission.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
23 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 */
29
30#include "tests.h"
31#include <sys/syscall.h>
32
33/*
34 * On s390x, this is the mmap syscall used by glibc, so,
35 * from one side, it's already covered by another test, and, from another side,
36 * it would require additional efforts to filter out mmap calls made by glibc.
37 */
38
39#if defined __NR_mmap && \
40( defined __arm__ \
41 || defined __i386__ \
42 || defined __m68k__ \
43 || (defined __s390__ && !defined __s390x__) \
44)
45
46# include <stdio.h>
47# include <string.h>
48# include <sys/mman.h>
49# include <unistd.h>
50
51int
52main(void)
53{
54 const unsigned int args1_c[6] = {
55 0xdeadbeef, /* addr */
56 0xfacefeed, /* len */
57 PROT_READ|PROT_EXEC, /* prot */
58 MAP_FILE|MAP_FIXED, /* flags */
59 -2U, /* fd */
60 0xbadc0ded /* offset */
61 };
62 const unsigned int page_size = get_page_size();
63 const unsigned int args2_c[6] = {
64 0,
65 page_size,
66 PROT_READ|PROT_WRITE,
67 MAP_PRIVATE|MAP_ANONYMOUS,
68 -1U,
69 0xfaced000 & -page_size
70 };
71 void *args = tail_memdup(args1_c, sizeof(args1_c));
72
73 long rc = syscall(__NR_mmap, args);
74 printf("mmap(%#x, %u, PROT_READ|PROT_EXEC, MAP_FILE|MAP_FIXED"
75 ", %d, %#x) = %ld %s (%m)\n",
76 args1_c[0], args1_c[1], args1_c[4], args1_c[5],
77 rc, errno2name());
78
79 memcpy(args, args2_c, sizeof(args2_c));
80 rc = syscall(__NR_mmap, args);
81 printf("mmap(NULL, %u, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS"
82 ", %d, %#x) = %#lx\n",
83 args2_c[1], args2_c[4], args2_c[5], rc);
84
85 void *addr = (void *) rc;
86 if (mprotect(addr, page_size, PROT_NONE))
87 perror_msg_and_fail("mprotect(%p, %u, PROT_NONE)",
88 addr, page_size);
89
90 puts("+++ exited with 0 +++");
91 return 0;
92}
93
94#else
95
96SKIP_MAIN_UNDEFINED("__NR_mmap && (__arm__ || __i386__ || __m68k__"
97 " || (__s390__ && !__s390x__))")
98
99#endif