4 * Copyright (c) 2003-2008 Fabrice Bellard
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25 #include "qemu/osdep.h"
27 #include "qapi/error.h"
28 #include "qemu-common.h"
29 #include "qemu/error-report.h"
32 #include "qemu/timer.h"
33 #include "qapi/visitor.h"
34 #include "net/filter.h"
36 typedef struct DumpState
{
42 #define PCAP_MAGIC 0xa1b2c3d4
44 struct pcap_file_hdr
{
46 uint16_t version_major
;
47 uint16_t version_minor
;
54 struct pcap_sf_pkthdr
{
63 static ssize_t
dump_receive_iov(DumpState
*s
, const struct iovec
*iov
, int cnt
)
65 struct pcap_sf_pkthdr hdr
;
68 size_t size
= iov_size(iov
, cnt
);
69 struct iovec dumpiov
[cnt
+ 1];
71 /* Early return in case of previous error. */
76 ts
= qemu_clock_get_us(QEMU_CLOCK_VIRTUAL
);
77 caplen
= size
> s
->pcap_caplen
? s
->pcap_caplen
: size
;
79 hdr
.ts
.tv_sec
= ts
/ 1000000 + s
->start_ts
;
80 hdr
.ts
.tv_usec
= ts
% 1000000;
84 dumpiov
[0].iov_base
= &hdr
;
85 dumpiov
[0].iov_len
= sizeof(hdr
);
86 cnt
= iov_copy(&dumpiov
[1], cnt
, iov
, cnt
, 0, caplen
);
88 if (writev(s
->fd
, dumpiov
, cnt
+ 1) != sizeof(hdr
) + caplen
) {
89 error_report("network dump write error - stopping dump");
97 static void dump_cleanup(DumpState
*s
)
103 static int net_dump_state_init(DumpState
*s
, const char *filename
,
104 int len
, Error
**errp
)
106 struct pcap_file_hdr hdr
;
110 fd
= open(filename
, O_CREAT
| O_TRUNC
| O_WRONLY
| O_BINARY
, 0644);
112 error_setg_errno(errp
, errno
, "-net dump: can't open %s", filename
);
116 hdr
.magic
= PCAP_MAGIC
;
117 hdr
.version_major
= 2;
118 hdr
.version_minor
= 4;
124 if (write(fd
, &hdr
, sizeof(hdr
)) < sizeof(hdr
)) {
125 error_setg_errno(errp
, errno
, "-net dump write error");
131 s
->pcap_caplen
= len
;
133 qemu_get_timedate(&tm
, 0);
134 s
->start_ts
= mktime(&tm
);
139 /* Dumping via VLAN netclient */
141 struct DumpNetClient
{
145 typedef struct DumpNetClient DumpNetClient
;
147 static ssize_t
dumpclient_receive(NetClientState
*nc
, const uint8_t *buf
,
150 DumpNetClient
*dc
= DO_UPCAST(DumpNetClient
, nc
, nc
);
152 .iov_base
= (void *)buf
,
156 return dump_receive_iov(&dc
->ds
, &iov
, 1);
159 static ssize_t
dumpclient_receive_iov(NetClientState
*nc
,
160 const struct iovec
*iov
, int cnt
)
162 DumpNetClient
*dc
= DO_UPCAST(DumpNetClient
, nc
, nc
);
164 return dump_receive_iov(&dc
->ds
, iov
, cnt
);
167 static void dumpclient_cleanup(NetClientState
*nc
)
169 DumpNetClient
*dc
= DO_UPCAST(DumpNetClient
, nc
, nc
);
171 dump_cleanup(&dc
->ds
);
174 static NetClientInfo net_dump_info
= {
175 .type
= NET_CLIENT_OPTIONS_KIND_DUMP
,
176 .size
= sizeof(DumpNetClient
),
177 .receive
= dumpclient_receive
,
178 .receive_iov
= dumpclient_receive_iov
,
179 .cleanup
= dumpclient_cleanup
,
182 int net_init_dump(const NetClientOptions
*opts
, const char *name
,
183 NetClientState
*peer
, Error
**errp
)
188 const NetdevDumpOptions
*dump
;
192 assert(opts
->type
== NET_CLIENT_OPTIONS_KIND_DUMP
);
193 dump
= opts
->u
.dump
.data
;
197 if (dump
->has_file
) {
203 ret
= net_hub_id_for_client(peer
, &id
);
204 assert(ret
== 0); /* peer must be on a hub */
206 snprintf(def_file
, sizeof(def_file
), "qemu-vlan%d.pcap", id
);
211 if (dump
->len
> INT_MAX
) {
212 error_setg(errp
, "invalid length: %"PRIu64
, dump
->len
);
220 nc
= qemu_new_net_client(&net_dump_info
, peer
, "dump", name
);
221 snprintf(nc
->info_str
, sizeof(nc
->info_str
),
222 "dump to %s (len=%d)", file
, len
);
224 dnc
= DO_UPCAST(DumpNetClient
, nc
, nc
);
225 rc
= net_dump_state_init(&dnc
->ds
, file
, len
, errp
);
227 qemu_del_net_client(nc
);
232 /* Dumping via filter */
234 #define TYPE_FILTER_DUMP "filter-dump"
236 #define FILTER_DUMP(obj) \
237 OBJECT_CHECK(NetFilterDumpState, (obj), TYPE_FILTER_DUMP)
239 struct NetFilterDumpState
{
245 typedef struct NetFilterDumpState NetFilterDumpState
;
247 static ssize_t
filter_dump_receive_iov(NetFilterState
*nf
, NetClientState
*sndr
,
248 unsigned flags
, const struct iovec
*iov
,
249 int iovcnt
, NetPacketSent
*sent_cb
)
251 NetFilterDumpState
*nfds
= FILTER_DUMP(nf
);
253 dump_receive_iov(&nfds
->ds
, iov
, iovcnt
);
257 static void filter_dump_cleanup(NetFilterState
*nf
)
259 NetFilterDumpState
*nfds
= FILTER_DUMP(nf
);
261 dump_cleanup(&nfds
->ds
);
264 static void filter_dump_setup(NetFilterState
*nf
, Error
**errp
)
266 NetFilterDumpState
*nfds
= FILTER_DUMP(nf
);
268 if (!nfds
->filename
) {
269 error_setg(errp
, "dump filter needs 'file' property set!");
273 net_dump_state_init(&nfds
->ds
, nfds
->filename
, nfds
->maxlen
, errp
);
276 static void filter_dump_get_maxlen(Object
*obj
, Visitor
*v
, const char *name
,
277 void *opaque
, Error
**errp
)
279 NetFilterDumpState
*nfds
= FILTER_DUMP(obj
);
280 uint32_t value
= nfds
->maxlen
;
282 visit_type_uint32(v
, name
, &value
, errp
);
285 static void filter_dump_set_maxlen(Object
*obj
, Visitor
*v
, const char *name
,
286 void *opaque
, Error
**errp
)
288 NetFilterDumpState
*nfds
= FILTER_DUMP(obj
);
289 Error
*local_err
= NULL
;
292 visit_type_uint32(v
, name
, &value
, &local_err
);
297 error_setg(&local_err
, "Property '%s.%s' doesn't take value '%u'",
298 object_get_typename(obj
), name
, value
);
301 nfds
->maxlen
= value
;
304 error_propagate(errp
, local_err
);
307 static char *file_dump_get_filename(Object
*obj
, Error
**errp
)
309 NetFilterDumpState
*nfds
= FILTER_DUMP(obj
);
311 return g_strdup(nfds
->filename
);
314 static void file_dump_set_filename(Object
*obj
, const char *value
, Error
**errp
)
316 NetFilterDumpState
*nfds
= FILTER_DUMP(obj
);
318 g_free(nfds
->filename
);
319 nfds
->filename
= g_strdup(value
);
322 static void filter_dump_instance_init(Object
*obj
)
324 NetFilterDumpState
*nfds
= FILTER_DUMP(obj
);
326 nfds
->maxlen
= 65536;
328 object_property_add(obj
, "maxlen", "int", filter_dump_get_maxlen
,
329 filter_dump_set_maxlen
, NULL
, NULL
, NULL
);
330 object_property_add_str(obj
, "file", file_dump_get_filename
,
331 file_dump_set_filename
, NULL
);
334 static void filter_dump_instance_finalize(Object
*obj
)
336 NetFilterDumpState
*nfds
= FILTER_DUMP(obj
);
338 g_free(nfds
->filename
);
341 static void filter_dump_class_init(ObjectClass
*oc
, void *data
)
343 NetFilterClass
*nfc
= NETFILTER_CLASS(oc
);
345 nfc
->setup
= filter_dump_setup
;
346 nfc
->cleanup
= filter_dump_cleanup
;
347 nfc
->receive_iov
= filter_dump_receive_iov
;
350 static const TypeInfo filter_dump_info
= {
351 .name
= TYPE_FILTER_DUMP
,
352 .parent
= TYPE_NETFILTER
,
353 .class_init
= filter_dump_class_init
,
354 .instance_init
= filter_dump_instance_init
,
355 .instance_finalize
= filter_dump_instance_finalize
,
356 .instance_size
= sizeof(NetFilterDumpState
),
359 static void filter_dump_register_types(void)
361 type_register_static(&filter_dump_info
);
364 type_init(filter_dump_register_types
);