dump.c 4.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
/*
 * QEMU System Emulator
 *
 * Copyright (c) 2003-2008 Fabrice Bellard
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */

25
#include "clients.h"
26
#include "qemu-common.h"
27 28 29
#include "qemu/error-report.h"
#include "qemu/log.h"
#include "qemu/timer.h"
30
#include "hub.h"
31 32

typedef struct DumpState {
33
    NetClientState nc;
34
    int64_t start_ts;
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
    int fd;
    int pcap_caplen;
} DumpState;

#define PCAP_MAGIC 0xa1b2c3d4

struct pcap_file_hdr {
    uint32_t magic;
    uint16_t version_major;
    uint16_t version_minor;
    int32_t thiszone;
    uint32_t sigfigs;
    uint32_t snaplen;
    uint32_t linktype;
};

struct pcap_sf_pkthdr {
    struct {
        int32_t tv_sec;
        int32_t tv_usec;
    } ts;
    uint32_t caplen;
    uint32_t len;
};

60
static ssize_t dump_receive(NetClientState *nc, const uint8_t *buf, size_t size)
61
{
62
    DumpState *s = DO_UPCAST(DumpState, nc, nc);
63 64 65 66 67 68 69 70 71
    struct pcap_sf_pkthdr hdr;
    int64_t ts;
    int caplen;

    /* Early return in case of previous error. */
    if (s->fd < 0) {
        return size;
    }

L
Laurent Vivier 已提交
72
    ts = qemu_clock_get_us(QEMU_CLOCK_VIRTUAL);
73 74
    caplen = size > s->pcap_caplen ? s->pcap_caplen : size;

75
    hdr.ts.tv_sec = ts / 1000000 + s->start_ts;
76 77 78 79 80 81 82 83 84 85 86 87 88
    hdr.ts.tv_usec = ts % 1000000;
    hdr.caplen = caplen;
    hdr.len = size;
    if (write(s->fd, &hdr, sizeof(hdr)) != sizeof(hdr) ||
        write(s->fd, buf, caplen) != caplen) {
        qemu_log("-net dump write error - stop dump\n");
        close(s->fd);
        s->fd = -1;
    }

    return size;
}

89
static void dump_cleanup(NetClientState *nc)
90
{
91
    DumpState *s = DO_UPCAST(DumpState, nc, nc);
92 93 94 95

    close(s->fd);
}

96
static NetClientInfo net_dump_info = {
97
    .type = NET_CLIENT_OPTIONS_KIND_DUMP,
98 99 100 101 102
    .size = sizeof(DumpState),
    .receive = dump_receive,
    .cleanup = dump_cleanup,
};

103
static int net_dump_init(NetClientState *peer, const char *device,
104 105
                         const char *name, const char *filename, int len,
                         Error **errp)
106 107
{
    struct pcap_file_hdr hdr;
108
    NetClientState *nc;
109
    DumpState *s;
110
    struct tm tm;
111
    int fd;
112

113
    fd = open(filename, O_CREAT | O_TRUNC | O_WRONLY | O_BINARY, 0644);
114
    if (fd < 0) {
115
        error_setg_errno(errp, errno, "-net dump: can't open %s", filename);
116 117 118 119 120 121 122 123
        return -1;
    }

    hdr.magic = PCAP_MAGIC;
    hdr.version_major = 2;
    hdr.version_minor = 4;
    hdr.thiszone = 0;
    hdr.sigfigs = 0;
124
    hdr.snaplen = len;
125 126
    hdr.linktype = 1;

127
    if (write(fd, &hdr, sizeof(hdr)) < sizeof(hdr)) {
128
        error_setg_errno(errp, errno, "-net dump write error");
129
        close(fd);
130 131 132
        return -1;
    }

133
    nc = qemu_new_net_client(&net_dump_info, peer, device, name);
134 135

    snprintf(nc->info_str, sizeof(nc->info_str),
136
             "dump to %s (len=%d)", filename, len);
137 138 139 140 141 142

    s = DO_UPCAST(DumpState, nc, nc);

    s->fd = fd;
    s->pcap_caplen = len;

143 144 145
    qemu_get_timedate(&tm, 0);
    s->start_ts = mktime(&tm);

146 147 148
    return 0;
}

149
int net_init_dump(const NetClientOptions *opts, const char *name,
150
                  NetClientState *peer, Error **errp)
151 152 153 154
{
    int len;
    const char *file;
    char def_file[128];
155 156 157 158
    const NetdevDumpOptions *dump;

    assert(opts->kind == NET_CLIENT_OPTIONS_KIND_DUMP);
    dump = opts->dump;
159

160
    assert(peer);
161

162 163 164
    if (dump->has_file) {
        file = dump->file;
    } else {
165 166 167 168 169 170 171
        int id;
        int ret;

        ret = net_hub_id_for_client(peer, &id);
        assert(ret == 0); /* peer must be on a hub */

        snprintf(def_file, sizeof(def_file), "qemu-vlan%d.pcap", id);
172 173 174
        file = def_file;
    }

175 176
    if (dump->has_len) {
        if (dump->len > INT_MAX) {
177
            error_setg(errp, "invalid length: %"PRIu64, dump->len);
178 179 180 181 182 183
            return -1;
        }
        len = dump->len;
    } else {
        len = 65536;
    }
184

185
    return net_dump_init(peer, "dump", name, file, len, errp);
186
}