blob: e7da9c04dccce6816e320a389cabc8a291ca5901 [file] [log] [blame]
Dmitry V. Levin3f6ebce2016-03-31 00:01:58 +00001/*
2 * Check decoding of preadv and pwritev syscalls.
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
32#if defined HAVE_PREADV && defined HAVE_PWRITEV
33
34# include <fcntl.h>
35# include <stdio.h>
36# include <sys/uio.h>
37# include <unistd.h>
38
39int
40main(void)
41{
42 tprintf("%s", "");
43
44 static char tmp[] = "preadv-pwritev-tmpfile";
45 if (open(tmp, O_CREAT|O_RDONLY|O_TRUNC, 0600) != 0)
46 perror_msg_and_fail("creat: %s", tmp);
47 if (open(tmp, O_WRONLY) != 1)
48 perror_msg_and_fail("open: %s", tmp);
49 if (unlink(tmp))
50 perror_msg_and_fail("unlink: %s", tmp);
51
52 static const char w0_c[] = "012";
53 const char *w0_d = hexdump_strdup(w0_c);
54 void *w0 = tail_memdup(w0_c, LENGTH_OF(w0_c));
55
56 const void *efault = w0 + LENGTH_OF(w0_c);
57
58 static const char w1_c[] = "34567";
59 const char *w1_d = hexdump_strdup(w1_c);
60 void *w1 = tail_memdup(w1_c, LENGTH_OF(w1_c));
61
62 static const char w2_c[] = "89abcde";
63 const char *w2_d = hexdump_strdup(w2_c);
64 void *w2 = tail_memdup(w2_c, LENGTH_OF(w2_c));
65
66 long rc;
67
68 rc = pwritev(1, efault, 42, 0);
69 if (rc != -1)
70 perror_msg_and_fail("pwritev: expected -1, returned %ld", rc);
71 tprintf("pwritev(1, %p, 42, 0) = -1 EFAULT (%m)\n", efault);
72
73 rc = preadv(0, efault, 42, 0);
74 if (rc != -1)
75 perror_msg_and_fail("preadv: expected -1, returned %ld", rc);
76 tprintf("preadv(0, %p, 42, 0) = -1 EFAULT (%m)\n", efault);
77
78 static const char r0_c[] = "01234567";
79 const char *r0_d = hexdump_strdup(r0_c);
80 static const char r1_c[] = "89abcde";
81 const char *r1_d = hexdump_strdup(r1_c);
82
83 const struct iovec w_iov_[] = {
84 {
85 .iov_base = w0,
86 .iov_len = LENGTH_OF(w0_c)
87 }, {
88 .iov_base = w1,
89 .iov_len = LENGTH_OF(w1_c)
90 }, {
91 .iov_base = w2,
92 .iov_len = LENGTH_OF(w2_c)
93 }
94 };
95 const struct iovec *w_iov = tail_memdup(w_iov_, sizeof(w_iov_));
96
97 rc = pwritev(1, w_iov, 0, 0);
98 if (rc)
99 perror_msg_and_fail("preadv: expected 0, returned %ld", rc);
100 tprintf("pwritev(1, [], 0, 0) = 0\n");
101
102 rc = pwritev(1, w_iov + ARRAY_SIZE(w_iov_) - 1, 2, 0);
103 if (rc != -1)
104 perror_msg_and_fail("pwritev: expected -1 EFAULT, returned %ld",
105 rc);
106 tprintf("pwritev(1, [{\"%s\", %u}, %p], 2, 0) = -1 EFAULT (%m)\n",
107 w2_c, LENGTH_OF(w2_c), w_iov + ARRAY_SIZE(w_iov_));
108
109 const unsigned int w_len =
110 LENGTH_OF(w0_c) + LENGTH_OF(w1_c) + LENGTH_OF(w2_c);
111
112 rc = pwritev(1, w_iov, ARRAY_SIZE(w_iov_), 0);
113 if (rc != (int) w_len)
114 perror_msg_and_fail("pwritev: expected %u, returned %ld",
115 w_len, rc);
116 close(1);
117 tprintf("pwritev(1, [{\"%s\", %u}, {\"%s\", %u}"
118 ", {\"%s\", %u}], %u, 0) = %u\n"
119 " * %u bytes in buffer 0\n"
120 " | 00000 %-49s %-16s |\n"
121 " * %u bytes in buffer 1\n"
122 " | 00000 %-49s %-16s |\n"
123 " * %u bytes in buffer 2\n"
124 " | 00000 %-49s %-16s |\n",
125 w0_c, LENGTH_OF(w0_c), w1_c, LENGTH_OF(w1_c),
126 w2_c, LENGTH_OF(w2_c), ARRAY_SIZE(w_iov_), w_len,
127 LENGTH_OF(w0_c), w0_d, w0_c,
128 LENGTH_OF(w1_c), w1_d, w1_c, LENGTH_OF(w2_c), w2_d, w2_c);
129
130 const unsigned int r_len = (w_len + 1) / 2;
131 void *r0 = tail_alloc(r_len);
132 const struct iovec r0_iov_[] = {
133 {
134 .iov_base = r0,
135 .iov_len = r_len
136 }
137 };
138 const struct iovec *r_iov = tail_memdup(r0_iov_, sizeof(r0_iov_));
139
140 rc = preadv(0, r_iov, ARRAY_SIZE(r0_iov_), 0);
141 if (rc != (int) r_len)
142 perror_msg_and_fail("preadv: expected %u, returned %ld",
143 r_len, rc);
144 tprintf("preadv(0, [{\"%s\", %u}], %u, 0) = %u\n"
145 " * %u bytes in buffer 0\n"
146 " | 00000 %-49s %-16s |\n",
147 r0_c, r_len, ARRAY_SIZE(r0_iov_), r_len, r_len, r0_d, r0_c);
148
149 void *r1 = tail_alloc(r_len);
150 void *r2 = tail_alloc(w_len);
151 const struct iovec r1_iov_[] = {
152 {
153 .iov_base = r1,
154 .iov_len = r_len
155 },
156 {
157 .iov_base = r2,
158 .iov_len = w_len
159 }
160 };
161 r_iov = tail_memdup(r1_iov_, sizeof(r1_iov_));
162
163 rc = preadv(0, r_iov, ARRAY_SIZE(r1_iov_), r_len);
164 if (rc != (int) w_len - r_len)
165 perror_msg_and_fail("preadv: expected %d, returned %ld",
166 (int) w_len - r_len, rc);
167 tprintf("preadv(0, [{\"%s\", %u}, {\"\", %u}], %u, %u) = %u\n"
168 " * %u bytes in buffer 0\n"
169 " | 00000 %-49s %-16s |\n",
170 r1_c, r_len, w_len, ARRAY_SIZE(r1_iov_),
171 r_len, w_len - r_len,
172 w_len - r_len, r1_d, r1_c);
173 close(0);
174
175 tprintf("+++ exited with 0 +++\n");
176 return 0;
177}
178
179#else
180
181SKIP_MAIN_UNDEFINED("HAVE_PREADV && HAVE_PWRITEV")
182
183#endif