]> granicus.if.org Git - strace/blob - tests/pwritev.c
io.c: use print_array function
[strace] / tests / pwritev.c
1 /*
2  * Copyright (c) 2014-2016 Dmitry V. Levin <ldv@altlinux.org>
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. The name of the author may not be used to endorse or promote products
14  *    derived from this software without specific prior written permission.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26  */
27
28 #include "tests.h"
29
30 #ifdef HAVE_PWRITEV
31
32 # include <fcntl.h>
33 # include <stdio.h>
34 # include <sys/uio.h>
35 # include <unistd.h>
36
37 # define LEN 8
38 # define LIM (LEN - 1)
39
40 static void
41 print_iov(const struct iovec *iov)
42 {
43         unsigned int i;
44         unsigned char *buf = iov->iov_base;
45
46         fputs("{\"", stdout);
47         for (i = 0; i < iov->iov_len; ++i) {
48                 if (i < LIM)
49                         printf("\\%d", (int) buf[i]);
50         }
51         printf("\"%s, %u}",
52                i > LIM ? "..." : "", (unsigned) iov->iov_len);
53 }
54
55 static void
56 print_iovec(const struct iovec *iov, unsigned int cnt, unsigned int size)
57 {
58         if (!size) {
59                 printf("%p", iov);
60                 return;
61         }
62         unsigned int i;
63         putchar('[');
64         for (i = 0; i < cnt; ++i) {
65                 if (i)
66                         fputs(", ", stdout);
67                 if (i == size) {
68                         printf("%p", &iov[i]);
69                         break;
70                 }
71                 if (i == LIM) {
72                         fputs("...", stdout);
73                         break;
74                 }
75                 print_iov(&iov[i]);
76         }
77         putchar(']');
78 }
79
80 int
81 main(void)
82 {
83         (void) close(0);
84         if (open("/dev/null", O_WRONLY))
85                 perror_msg_and_fail("open");
86
87         char *buf = tail_alloc(LEN);
88         unsigned i;
89         for (i = 0; i < LEN; ++i)
90                 buf[i] = i;
91
92         struct iovec *iov = tail_alloc(sizeof(*iov) * LEN);
93         for (i = 0; i < LEN; ++i) {
94                 buf[i] = i;
95                 iov[i].iov_base = &buf[i];
96                 iov[i].iov_len = LEN - i;
97         }
98         tail_alloc(1);
99
100         const off_t offset = 0xdefaceddeadbeefLL;
101         long rc;
102         int written = 0;
103         for (i = 0; i < LEN; ++i) {
104                 written += iov[i].iov_len;
105                 if (pwritev(0, iov, i + 1, offset + i) != written)
106                         perror_msg_and_fail("pwritev");
107                 fputs("pwritev(0, ", stdout);
108                 print_iovec(iov, i + 1, LEN);
109                 printf(", %u, %lld) = %d\n",
110                        i + 1, (long long) offset + i, written);
111         }
112
113         for (i = 0; i <= LEN; ++i) {
114                 unsigned int n = LEN + 1 - i;
115                 fputs("pwritev(0, ", stdout);
116                 print_iovec(iov + i, n, LEN - i);
117                 rc = pwritev(0, iov + i, n, offset + LEN + i);
118                 printf(", %u, %lld) = %ld %s (%m)\n",
119                        n, (long long) offset + LEN + i, rc, errno2name());
120         }
121
122         iov->iov_base = iov + LEN * 2;
123         rc = pwritev(0, iov, 1, -1);
124         printf("pwritev(0, [{%p, %d}], 1, -1) = %ld %s (%m)\n",
125                iov->iov_base, LEN, rc, errno2name());
126
127         iov += LEN;
128         rc = pwritev(0, iov, 42, -2);
129         printf("pwritev(0, %p, 42, -2) = %ld %s (%m)\n",
130                iov, rc, errno2name());
131
132         rc = pwritev(0, NULL, 1, -3);
133         printf("pwritev(0, NULL, 1, -3) = %ld %s (%m)\n",
134                rc, errno2name());
135
136         rc = pwritev(0, iov, 0, -4);
137         printf("pwritev(0, [], 0, -4) = %ld %s (%m)\n",
138                rc, errno2name());
139
140         puts("+++ exited with 0 +++");
141         return 0;
142 }
143
144 #else
145
146 SKIP_MAIN_UNDEFINED("HAVE_PWRITEV")
147
148 #endif