blob: d0a1dd0625e607094a83dd9381211706c2167c1d [file] [log] [blame]
Dmitry V. Levin05a0af62016-01-20 00:17:02 +00001/*
2 * Check decoding of readv and writev 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#include <assert.h>
Dmitry V. Levinf73a3a42016-04-19 21:10:44 +000033#include <errno.h>
Dmitry V. Levin05a0af62016-01-20 00:17:02 +000034#include <stdio.h>
35#include <unistd.h>
36#include <sys/uio.h>
37
38int
39main(void)
40{
41 tprintf("%s", "");
42
43 int fds[2];
44 if (pipe(fds))
45 perror_msg_and_fail("pipe");
46 assert(0 == fds[0]);
47 assert(1 == fds[1]);
48
49 static const char w0_c[] = "012";
50 const char *w0_d = hexdump_strdup(w0_c);
51 void *w0 = tail_memdup(w0_c, LENGTH_OF(w0_c));
52
Dmitry V. Levin4774f822016-02-14 00:04:20 +000053 const void *efault = w0 + LENGTH_OF(w0_c);
54
Dmitry V. Levin05a0af62016-01-20 00:17:02 +000055 static const char w1_c[] = "34567";
56 const char *w1_d = hexdump_strdup(w1_c);
57 void *w1 = tail_memdup(w1_c, LENGTH_OF(w1_c));
58
59 static const char w2_c[] = "89abcde";
60 const char *w2_d = hexdump_strdup(w2_c);
61 void *w2 = tail_memdup(w2_c, LENGTH_OF(w2_c));
Dmitry V. Levin92e3cca2016-04-21 21:16:34 +000062 long rc;
Dmitry V. Levin05a0af62016-01-20 00:17:02 +000063
Dmitry V. Levin92e3cca2016-04-21 21:16:34 +000064 rc = writev(1, efault, 42);
65 tprintf("writev(1, %p, 42) = %ld %s (%m)\n",
66 efault, rc, errno2name());
Dmitry V. Levin4774f822016-02-14 00:04:20 +000067
Dmitry V. Levin92e3cca2016-04-21 21:16:34 +000068 rc = readv(0, efault, 42);
69 tprintf("readv(0, %p, 42) = %ld %s (%m)\n",
70 efault, rc, errno2name());
Dmitry V. Levin4774f822016-02-14 00:04:20 +000071
Dmitry V. Levin05a0af62016-01-20 00:17:02 +000072 static const char r0_c[] = "01234567";
73 const char *r0_d = hexdump_strdup(r0_c);
74 static const char r1_c[] = "89abcde";
75 const char *r1_d = hexdump_strdup(r1_c);
76
77 const struct iovec w_iov_[] = {
78 {
79 .iov_base = w0,
80 .iov_len = LENGTH_OF(w0_c)
81 }, {
82 .iov_base = w1,
83 .iov_len = LENGTH_OF(w1_c)
84 }, {
85 .iov_base = w2,
86 .iov_len = LENGTH_OF(w2_c)
87 }
88 };
89 const struct iovec *w_iov = tail_memdup(w_iov_, sizeof(w_iov_));
Dmitry V. Levin4774f822016-02-14 00:04:20 +000090
Dmitry V. Levin92e3cca2016-04-21 21:16:34 +000091 tprintf("writev(1, [], 0) = %ld\n",
92 (long) writev(1, w_iov, 0));
Dmitry V. Levin4774f822016-02-14 00:04:20 +000093
Dmitry V. Levin92e3cca2016-04-21 21:16:34 +000094 rc = writev(1, w_iov + ARRAY_SIZE(w_iov_) - 1, 2);
95 tprintf("writev(1, [{\"%s\", %u}, %p], 2) = %ld %s (%m)\n",
Dmitry V. Levinf73a3a42016-04-19 21:10:44 +000096 w2_c, LENGTH_OF(w2_c), w_iov + ARRAY_SIZE(w_iov_),
Dmitry V. Levin92e3cca2016-04-21 21:16:34 +000097 rc, errno2name());
Dmitry V. Levin4774f822016-02-14 00:04:20 +000098
Dmitry V. Levin05a0af62016-01-20 00:17:02 +000099 const unsigned int w_len =
100 LENGTH_OF(w0_c) + LENGTH_OF(w1_c) + LENGTH_OF(w2_c);
101
102 assert(writev(1, w_iov, ARRAY_SIZE(w_iov_)) == (int) w_len);
103 close(1);
104 tprintf("writev(1, [{\"%s\", %u}, {\"%s\", %u}"
105 ", {\"%s\", %u}], %u) = %u\n"
106 " * %u bytes in buffer 0\n"
107 " | 00000 %-49s %-16s |\n"
108 " * %u bytes in buffer 1\n"
109 " | 00000 %-49s %-16s |\n"
110 " * %u bytes in buffer 2\n"
111 " | 00000 %-49s %-16s |\n",
112 w0_c, LENGTH_OF(w0_c), w1_c, LENGTH_OF(w1_c),
113 w2_c, LENGTH_OF(w2_c), ARRAY_SIZE(w_iov_), w_len,
114 LENGTH_OF(w0_c), w0_d, w0_c,
115 LENGTH_OF(w1_c), w1_d, w1_c, LENGTH_OF(w2_c), w2_d, w2_c);
116
117 const unsigned int r_len = (w_len + 1) / 2;
118 void *r0 = tail_alloc(r_len);
119 const struct iovec r0_iov_[] = {
120 {
121 .iov_base = r0,
122 .iov_len = r_len
123 }
124 };
125 const struct iovec *r_iov = tail_memdup(r0_iov_, sizeof(r0_iov_));
126
127 assert(readv(0, r_iov, ARRAY_SIZE(r0_iov_)) == (int) r_len);
128 tprintf("readv(0, [{\"%s\", %u}], %u) = %u\n"
129 " * %u bytes in buffer 0\n"
130 " | 00000 %-49s %-16s |\n",
131 r0_c, r_len, ARRAY_SIZE(r0_iov_), r_len, r_len, r0_d, r0_c);
132
133 void *r1 = tail_alloc(r_len);
134 void *r2 = tail_alloc(w_len);
135 const struct iovec r1_iov_[] = {
136 {
137 .iov_base = r1,
138 .iov_len = r_len
139 },
140 {
141 .iov_base = r2,
142 .iov_len = w_len
143 }
144 };
145 r_iov = tail_memdup(r1_iov_, sizeof(r1_iov_));
146
147 assert(readv(0, r_iov, ARRAY_SIZE(r1_iov_)) == (int) w_len - r_len);
148 tprintf("readv(0, [{\"%s\", %u}, {\"\", %u}], %u) = %u\n"
149 " * %u bytes in buffer 0\n"
150 " | 00000 %-49s %-16s |\n",
151 r1_c, r_len, w_len, ARRAY_SIZE(r1_iov_), w_len - r_len,
152 w_len - r_len, r1_d, r1_c);
153 close(0);
154
155 tprintf("+++ exited with 0 +++\n");
156 return 0;
157}