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
26 #include "qemu-common.h"
27 #include "qemu/error-report.h"
29 #include "qemu/timer.h"
32 typedef struct DumpState
{
39 #define PCAP_MAGIC 0xa1b2c3d4
41 struct pcap_file_hdr
{
43 uint16_t version_major
;
44 uint16_t version_minor
;
51 struct pcap_sf_pkthdr
{
60 static ssize_t
dump_receive(NetClientState
*nc
, const uint8_t *buf
, size_t size
)
62 DumpState
*s
= DO_UPCAST(DumpState
, nc
, nc
);
63 struct pcap_sf_pkthdr hdr
;
67 /* Early return in case of previous error. */
72 ts
= muldiv64(qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
), 1000000, get_ticks_per_sec());
73 caplen
= size
> s
->pcap_caplen
? s
->pcap_caplen
: size
;
75 hdr
.ts
.tv_sec
= ts
/ 1000000 + s
->start_ts
;
76 hdr
.ts
.tv_usec
= ts
% 1000000;
79 if (write(s
->fd
, &hdr
, sizeof(hdr
)) != sizeof(hdr
) ||
80 write(s
->fd
, buf
, caplen
) != caplen
) {
81 qemu_log("-net dump write error - stop dump\n");
89 static void dump_cleanup(NetClientState
*nc
)
91 DumpState
*s
= DO_UPCAST(DumpState
, nc
, nc
);
96 static NetClientInfo net_dump_info
= {
97 .type
= NET_CLIENT_OPTIONS_KIND_DUMP
,
98 .size
= sizeof(DumpState
),
99 .receive
= dump_receive
,
100 .cleanup
= dump_cleanup
,
103 static int net_dump_init(NetClientState
*peer
, const char *device
,
104 const char *name
, const char *filename
, int len
,
107 struct pcap_file_hdr hdr
;
113 fd
= open(filename
, O_CREAT
| O_TRUNC
| O_WRONLY
| O_BINARY
, 0644);
115 error_setg_errno(errp
, errno
, "-net dump: can't open %s", filename
);
119 hdr
.magic
= PCAP_MAGIC
;
120 hdr
.version_major
= 2;
121 hdr
.version_minor
= 4;
127 if (write(fd
, &hdr
, sizeof(hdr
)) < sizeof(hdr
)) {
128 error_setg_errno(errp
, errno
, "-net dump write error");
133 nc
= qemu_new_net_client(&net_dump_info
, peer
, device
, name
);
135 snprintf(nc
->info_str
, sizeof(nc
->info_str
),
136 "dump to %s (len=%d)", filename
, len
);
138 s
= DO_UPCAST(DumpState
, nc
, nc
);
141 s
->pcap_caplen
= len
;
143 qemu_get_timedate(&tm
, 0);
144 s
->start_ts
= mktime(&tm
);
149 int net_init_dump(const NetClientOptions
*opts
, const char *name
,
150 NetClientState
*peer
, Error
**errp
)
155 const NetdevDumpOptions
*dump
;
157 assert(opts
->kind
== NET_CLIENT_OPTIONS_KIND_DUMP
);
162 if (dump
->has_file
) {
168 ret
= net_hub_id_for_client(peer
, &id
);
169 assert(ret
== 0); /* peer must be on a hub */
171 snprintf(def_file
, sizeof(def_file
), "qemu-vlan%d.pcap", id
);
176 if (dump
->len
> INT_MAX
) {
177 error_setg(errp
, "invalid length: %"PRIu64
, dump
->len
);
185 return net_dump_init(peer
, "dump", name
, file
, len
, errp
);