]> granicus.if.org Git - strace/blob - tests/pwritev.c
tests/pwritev.c: use errno2name
[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 <errno.h>
33 # include <fcntl.h>
34 # include <stdio.h>
35 # include <sys/uio.h>
36 # include <unistd.h>
37
38 # define LEN 8
39 # define LIM (LEN - 1)
40
41 static void
42 print_iov(const struct iovec *iov)
43 {
44         unsigned int i;
45         unsigned char *buf = iov->iov_base;
46
47         fputs("{\"", stdout);
48         for (i = 0; i < iov->iov_len; ++i) {
49                 if (i < LIM)
50                         printf("\\%d", (int) buf[i]);
51         }
52         printf("\"%s, %u}",
53                i > LIM ? "..." : "", (unsigned) iov->iov_len);
54 }
55
56 static void
57 print_iovec(const struct iovec *iov, unsigned int cnt, unsigned int size)
58 {
59         if (!size) {
60                 printf("%p", iov);
61                 return;
62         }
63         unsigned int i;
64         putchar('[');
65         for (i = 0; i < cnt; ++i) {
66                 if (i)
67                         fputs(", ", stdout);
68                 if (i == LIM) {
69                         fputs("...", stdout);
70                         break;
71                 }
72                 if (i == size) {
73                         printf("%p", &iov[i]);
74                         break;
75                 }
76                 print_iov(&iov[i]);
77         }
78         putchar(']');
79 }
80
81 int
82 main(void)
83 {
84         (void) close(0);
85         if (open("/dev/null", O_WRONLY))
86                 perror_msg_and_fail("open");
87
88         char *buf = tail_alloc(LEN);
89         unsigned i;
90         for (i = 0; i < LEN; ++i)
91                 buf[i] = i;
92
93         struct iovec *iov = tail_alloc(sizeof(*iov) * LEN);
94         for (i = 0; i < LEN; ++i) {
95                 buf[i] = i;
96                 iov[i].iov_base = &buf[i];
97                 iov[i].iov_len = LEN - i;
98         }
99         tail_alloc(1);
100
101         const off_t offset = 0xdefaceddeadbeefLL;
102         long rc;
103         int written = 0;
104         for (i = 0; i < LEN; ++i) {
105                 written += iov[i].iov_len;
106                 if (pwritev(0, iov, i + 1, offset + i) != written)
107                         perror_msg_and_fail("pwritev");
108                 fputs("pwritev(0, ", stdout);
109                 print_iovec(iov, i + 1, LEN);
110                 printf(", %u, %lld) = %d\n",
111                        i + 1, (long long) offset + i, written);
112         }
113
114         for (i = 0; i <= LEN; ++i) {
115                 unsigned int n = LEN + 1 - i;
116                 fputs("pwritev(0, ", stdout);
117                 print_iovec(iov + i, n, LEN - i);
118                 rc = pwritev(0, iov + i, n, offset + LEN + i);
119                 printf(", %u, %lld) = %ld %s (%m)\n",
120                        n, (long long) offset + LEN + i, rc, errno2name());
121         }
122
123         iov->iov_base = iov + LEN * 2;
124         rc = pwritev(0, iov, 1, -1);
125         printf("pwritev(0, [{%p, %d}], 1, -1) = %ld %s (%m)\n",
126                iov->iov_base, LEN, rc, errno2name());
127
128         iov += LEN;
129         rc = pwritev(0, iov, 42, -2);
130         printf("pwritev(0, %p, 42, -2) = %ld %s (%m)\n",
131                iov, rc, errno2name());
132
133         rc = pwritev(0, NULL, 1, -3);
134         printf("pwritev(0, NULL, 1, -3) = %ld %s (%m)\n",
135                rc, errno2name());
136
137         rc = pwritev(0, NULL, 0, -4);
138         printf("pwritev(0, [], 0, -4) = %ld %s (%m)\n",
139                rc, errno2name());
140
141         puts("+++ exited with 0 +++");
142         return 0;
143 }
144
145 #else
146
147 SKIP_MAIN_UNDEFINED("HAVE_PWRITEV")
148
149 #endif