]> granicus.if.org Git - strace/blob - scsi.c
x32: fix decoding of 3rd argument of preadv* and pwritev* syscalls
[strace] / scsi.c
1 /*
2  * Copyright (c) 2007 Vladimir Nadvornik <nadvornik@suse.cz>
3  * Copyright (c) 2007 Dmitry V. Levin <ldv@altlinux.org>
4  * All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  * 3. The name of the author may not be used to endorse or promote products
15  *    derived from this software without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27  */
28
29 #include "defs.h"
30
31 #ifdef HAVE_SCSI_SG_H
32
33 # include <linux/ioctl.h>
34 # include <scsi/sg.h>
35
36 # include "xlat/sg_io_dxfer_direction.h"
37
38 # ifdef HAVE_LINUX_BSG_H
39 #  include <linux/bsg.h>
40 #  include <sys/uio.h>
41 #  include "xlat/bsg_protocol.h"
42 #  include "xlat/bsg_subprotocol.h"
43 # endif
44
45 static bool
46 print_uchar(struct tcb *tcp, void *elem_buf, size_t elem_size, void *data)
47 {
48         tprintf("%02x", (unsigned int) (* (unsigned char *) elem_buf));
49
50         return true;
51 }
52
53 static void
54 print_sg_io_buffer(struct tcb *tcp, const unsigned long addr, const unsigned int len)
55 {
56         unsigned char buf;
57
58         print_array(tcp, addr, len, &buf, sizeof(buf),
59                     umoven_or_printaddr, print_uchar, 0);
60 }
61
62 static int
63 print_sg_io_v3_req(struct tcb *tcp, const long arg)
64 {
65         struct sg_io_hdr sg_io;
66
67         if (umove(tcp, arg, &sg_io) < 0) {
68                 tprints("???}");
69                 return RVAL_DECODED | 1;
70         }
71
72         printxval(sg_io_dxfer_direction, sg_io.dxfer_direction,
73                   "SG_DXFER_???");
74         tprintf(", cmd[%u]=", sg_io.cmd_len);
75         print_sg_io_buffer(tcp, (unsigned long) sg_io.cmdp, sg_io.cmd_len);
76         tprintf(", mx_sb_len=%d", sg_io.mx_sb_len);
77         tprintf(", iovec_count=%d", sg_io.iovec_count);
78         tprintf(", dxfer_len=%u", sg_io.dxfer_len);
79         tprintf(", timeout=%u", sg_io.timeout);
80         tprintf(", flags=%#x", sg_io.flags);
81
82         if (sg_io.dxfer_direction == SG_DXFER_TO_DEV ||
83             sg_io.dxfer_direction == SG_DXFER_TO_FROM_DEV) {
84                 tprintf(", data[%u]=", sg_io.dxfer_len);
85                 if (sg_io.iovec_count)
86                         tprint_iov_upto(tcp, sg_io.iovec_count,
87                                         (unsigned long) sg_io.dxferp,
88                                         IOV_DECODE_STR,
89                                         sg_io.dxfer_len);
90                 else
91                         print_sg_io_buffer(tcp, (unsigned long) sg_io.dxferp,
92                                            sg_io.dxfer_len);
93         }
94         return 1;
95 }
96
97 static void
98 print_sg_io_v3_res(struct tcb *tcp, const long arg)
99 {
100         struct sg_io_hdr sg_io;
101
102         if (umove(tcp, arg, &sg_io) < 0) {
103                 tprints(", ???");
104                 return;
105         }
106
107         if (sg_io.dxfer_direction == SG_DXFER_FROM_DEV ||
108             sg_io.dxfer_direction == SG_DXFER_TO_FROM_DEV) {
109                 uint32_t din_len = sg_io.dxfer_len;
110
111                 if (sg_io.resid > 0)
112                         din_len -= sg_io.resid;
113                 tprintf(", data[%u]=", din_len);
114                 if (sg_io.iovec_count)
115                         tprint_iov_upto(tcp, sg_io.iovec_count,
116                                         (unsigned long) sg_io.dxferp,
117                                         syserror(tcp) ? IOV_DECODE_ADDR :
118                                         IOV_DECODE_STR, din_len);
119                 else
120                         print_sg_io_buffer(tcp, (unsigned long) sg_io.dxferp,
121                                            din_len);
122         }
123         tprintf(", status=%02x", sg_io.status);
124         tprintf(", masked_status=%02x", sg_io.masked_status);
125         tprintf(", sb[%u]=", sg_io.sb_len_wr);
126         print_sg_io_buffer(tcp, (unsigned long) sg_io.sbp, sg_io.sb_len_wr);
127         tprintf(", host_status=%#x", sg_io.host_status);
128         tprintf(", driver_status=%#x", sg_io.driver_status);
129         tprintf(", resid=%d", sg_io.resid);
130         tprintf(", duration=%d", sg_io.duration);
131         tprintf(", info=%#x", sg_io.info);
132 }
133
134 #ifdef HAVE_LINUX_BSG_H
135
136 static int
137 print_sg_io_v4_req(struct tcb *tcp, const long arg)
138 {
139         struct sg_io_v4 sg_io;
140
141         if (umove(tcp, arg, &sg_io) < 0) {
142                 tprints("???}");
143                 return RVAL_DECODED | 1;
144         }
145
146         printxval(bsg_protocol, sg_io.protocol, "BSG_PROTOCOL_???");
147         tprints(", ");
148         printxval(bsg_subprotocol, sg_io.subprotocol, "BSG_SUB_PROTOCOL_???");
149         tprintf(", request[%u]=", sg_io.request_len);
150         print_sg_io_buffer(tcp, sg_io.request, sg_io.request_len);
151         tprintf(", request_tag=%" PRI__u64, sg_io.request_tag);
152         tprintf(", request_attr=%u", sg_io.request_attr);
153         tprintf(", request_priority=%u", sg_io.request_priority);
154         tprintf(", request_extra=%u", sg_io.request_extra);
155         tprintf(", max_response_len=%u", sg_io.max_response_len);
156
157         tprintf(", dout_iovec_count=%u", sg_io.dout_iovec_count);
158         tprintf(", dout_xfer_len=%u", sg_io.dout_xfer_len);
159         tprintf(", din_iovec_count=%u", sg_io.din_iovec_count);
160         tprintf(", din_xfer_len=%u", sg_io.din_xfer_len);
161         tprintf(", timeout=%u", sg_io.timeout);
162         tprintf(", flags=%u", sg_io.flags);
163         tprintf(", usr_ptr=%" PRI__u64, sg_io.usr_ptr);
164         tprintf(", spare_in=%u", sg_io.spare_in);
165         tprintf(", dout[%u]=", sg_io.dout_xfer_len);
166         if (sg_io.dout_iovec_count)
167                 tprint_iov_upto(tcp, sg_io.dout_iovec_count, sg_io.dout_xferp,
168                                 IOV_DECODE_STR, sg_io.dout_xfer_len);
169         else
170                 print_sg_io_buffer(tcp, sg_io.dout_xferp, sg_io.dout_xfer_len);
171         return 1;
172 }
173
174 static void
175 print_sg_io_v4_res(struct tcb *tcp, const long arg)
176 {
177         struct sg_io_v4 sg_io;
178         uint32_t din_len;
179
180         if (umove(tcp, arg, &sg_io) < 0) {
181                 tprints(", ???");
182                 return;
183         }
184
185         tprintf(", response[%u]=", sg_io.response_len);
186         print_sg_io_buffer(tcp, sg_io.response, sg_io.response_len);
187         din_len = sg_io.din_xfer_len;
188         if (sg_io.din_resid > 0)
189                 din_len -= sg_io.din_resid;
190         tprintf(", din[%u]=", din_len);
191         if (sg_io.din_iovec_count)
192                 tprint_iov_upto(tcp, sg_io.din_iovec_count, sg_io.din_xferp,
193                                 syserror(tcp) ? IOV_DECODE_ADDR :
194                                 IOV_DECODE_STR, din_len);
195         else
196                 print_sg_io_buffer(tcp, sg_io.din_xferp, din_len);
197         tprintf(", driver_status=%u", sg_io.driver_status);
198         tprintf(", transport_status=%u", sg_io.transport_status);
199         tprintf(", device_status=%u", sg_io.device_status);
200         tprintf(", retry_delay=%u", sg_io.retry_delay);
201         tprintf(", info=%u", sg_io.info);
202         tprintf(", duration=%u", sg_io.duration);
203         tprintf(", response_len=%u", sg_io.response_len);
204         tprintf(", din_resid=%u", sg_io.din_resid);
205         tprintf(", dout_resid=%u", sg_io.dout_resid);
206         tprintf(", generated_tag=%" PRI__u64, sg_io.generated_tag);
207         tprintf(", spare_out=%u", sg_io.spare_out);
208 }
209
210 #else /* !HAVE_LINUX_BSG_H */
211
212 static int
213 print_sg_io_v4_req(struct tcb *tcp, const long arg)
214 {
215         tprints("...}");
216         return RVAL_DECODED | 1;
217 }
218
219 static void
220 print_sg_io_v4_res(struct tcb *tcp, const long arg)
221 {
222 }
223
224 #endif
225
226 static int
227 print_sg_io_req(struct tcb *tcp, uint32_t iid, const long arg)
228 {
229         tprintf("{'%c', ", iid);
230
231         switch (iid) {
232         case 'S':
233                 return print_sg_io_v3_req(tcp, arg);
234         case 'Q':
235                 return print_sg_io_v4_req(tcp, arg);
236         default:
237                 tprints("...}");
238                 return RVAL_DECODED | 1;
239         }
240
241 }
242
243 static void
244 print_sg_io_res(struct tcb *tcp, uint32_t iid, const long arg)
245 {
246         switch (iid) {
247         case 'S':
248                 print_sg_io_v3_res(tcp, arg);
249                 break;
250         case 'Q':
251                 print_sg_io_v4_res(tcp, arg);
252                 break;
253         }
254 }
255
256 int
257 scsi_ioctl(struct tcb *tcp, const unsigned int code, const long arg)
258 {
259         uint32_t iid;
260
261         if (SG_IO != code)
262                 return RVAL_DECODED;
263
264         if (entering(tcp)) {
265                 tprints(", ");
266                 if (!arg || umove(tcp, arg, &iid) < 0) {
267                         printaddr(arg);
268                         return RVAL_DECODED | 1;
269                 } else {
270                         return print_sg_io_req(tcp, iid, arg);
271                 }
272         } else {
273                 if (!syserror(tcp)) {
274                         if (umove(tcp, arg, &iid) < 0)
275                                 tprints(", ???");
276                         else
277                                 print_sg_io_res(tcp, iid, arg);
278                 }
279                 tprints("}");
280                 return RVAL_DECODED | 1;
281         }
282 }
283
284 #endif /* HAVE_SCSI_SG_H */