net.h 7.8 KB
Newer Older
P
pbrook 已提交
1 2 3
#ifndef QEMU_NET_H
#define QEMU_NET_H

4
#include "qemu/queue.h"
A
aliguori 已提交
5
#include "qemu-common.h"
6
#include "qapi/qmp/qdict.h"
7
#include "qemu/option.h"
8
#include "net/queue.h"
9
#include "migration/vmstate.h"
10
#include "qapi-types.h"
A
aliguori 已提交
11

J
Jason Wang 已提交
12 13
#define MAX_QUEUE_NUM 1024

14 15 16 17 18
/* Maximum GSO packet size (64k) plus plenty of room for
 * the ethernet and virtio_net headers
 */
#define NET_BUFSIZE (4096 + 65536)

G
Gerd Hoffmann 已提交
19 20 21 22
struct MACAddr {
    uint8_t a[6];
};

G
Gerd Hoffmann 已提交
23 24
/* qdev nic properties */

J
Jason Wang 已提交
25 26
typedef struct NICPeers {
    NetClientState *ncs[MAX_QUEUE_NUM];
27
    int32_t queues;
J
Jason Wang 已提交
28 29
} NICPeers;

G
Gerd Hoffmann 已提交
30 31
typedef struct NICConf {
    MACAddr macaddr;
J
Jason Wang 已提交
32
    NICPeers peers;
33
    int32_t bootindex;
G
Gerd Hoffmann 已提交
34 35 36 37
} NICConf;

#define DEFINE_NIC_PROPERTIES(_state, _conf)                            \
    DEFINE_PROP_MACADDR("mac",   _state, _conf.macaddr),                \
J
Jason Wang 已提交
38
    DEFINE_PROP_VLAN("vlan",     _state, _conf.peers),                   \
39
    DEFINE_PROP_NETDEV("netdev", _state, _conf.peers)
G
Gerd Hoffmann 已提交
40

J
Jason Wang 已提交
41

42
/* Net clients */
P
pbrook 已提交
43

44 45 46 47 48 49
typedef void (NetPoll)(NetClientState *, bool enable);
typedef int (NetCanReceive)(NetClientState *);
typedef ssize_t (NetReceive)(NetClientState *, const uint8_t *, size_t);
typedef ssize_t (NetReceiveIOV)(NetClientState *, const struct iovec *, int);
typedef void (NetCleanup) (NetClientState *);
typedef void (LinkStatusChanged)(NetClientState *);
50
typedef void (NetClientDestructor)(NetClientState *);
51
typedef RxFilterInfo *(QueryRxFilter)(NetClientState *);
52 53 54 55 56 57
typedef bool (HasUfo)(NetClientState *);
typedef bool (HasVnetHdr)(NetClientState *);
typedef bool (HasVnetHdrLen)(NetClientState *, int);
typedef void (UsingVnetHdr)(NetClientState *, bool);
typedef void (SetOffload)(NetClientState *, int, int, int, int, int);
typedef void (SetVnetHdrLen)(NetClientState *, int);
58

M
Mark McLoughlin 已提交
59
typedef struct NetClientInfo {
60
    NetClientOptionsKind type;
M
Mark McLoughlin 已提交
61 62 63 64 65 66 67
    size_t size;
    NetReceive *receive;
    NetReceive *receive_raw;
    NetReceiveIOV *receive_iov;
    NetCanReceive *can_receive;
    NetCleanup *cleanup;
    LinkStatusChanged *link_status_changed;
68
    QueryRxFilter *query_rx_filter;
69
    NetPoll *poll;
70 71 72 73 74 75
    HasUfo *has_ufo;
    HasVnetHdr *has_vnet_hdr;
    HasVnetHdrLen *has_vnet_hdr_len;
    UsingVnetHdr *using_vnet_hdr;
    SetOffload *set_offload;
    SetVnetHdrLen *set_vnet_hdr_len;
M
Mark McLoughlin 已提交
76 77
} NetClientInfo;

78
struct NetClientState {
79
    NetClientInfo *info;
80
    int link_down;
81 82
    QTAILQ_ENTRY(NetClientState) next;
    NetClientState *peer;
83
    NetQueue *incoming_queue;
84
    char *model;
85
    char *name;
P
pbrook 已提交
86
    char info_str[256];
87
    unsigned receive_disabled : 1;
88
    NetClientDestructor *destructor;
J
Jason Wang 已提交
89
    unsigned int queue_index;
90
    unsigned rxfilter_notify_enabled:1;
P
pbrook 已提交
91 92
};

93
typedef struct NICState {
94
    NetClientState *ncs;
95 96
    NICConf *conf;
    void *opaque;
97
    bool peer_deleted;
98 99
} NICState;

100
NetClientState *qemu_find_netdev(const char *id);
101 102
int qemu_find_net_clients_except(const char *id, NetClientState **ncs,
                                 NetClientOptionsKind type, int max);
103 104 105 106
NetClientState *qemu_new_net_client(NetClientInfo *info,
                                    NetClientState *peer,
                                    const char *model,
                                    const char *name);
107 108 109 110 111
NICState *qemu_new_nic(NetClientInfo *info,
                       NICConf *conf,
                       const char *model,
                       const char *name,
                       void *opaque);
J
Jason Wang 已提交
112
void qemu_del_nic(NICState *nic);
J
Jason Wang 已提交
113
NetClientState *qemu_get_subqueue(NICState *nic, int queue_index);
J
Jason Wang 已提交
114
NetClientState *qemu_get_queue(NICState *nic);
J
Jason Wang 已提交
115 116
NICState *qemu_get_nic(NetClientState *nc);
void *qemu_get_nic_opaque(NetClientState *nc);
117
void qemu_del_net_client(NetClientState *nc);
118 119
NetClientState *qemu_find_vlan_client_by_name(Monitor *mon, int vlan_id,
                                              const char *client_str);
M
Mark McLoughlin 已提交
120 121
typedef void (*qemu_nic_foreach)(NICState *nic, void *opaque);
void qemu_foreach_nic(qemu_nic_foreach func, void *opaque);
122 123
int qemu_can_send_packet(NetClientState *nc);
ssize_t qemu_sendv_packet(NetClientState *nc, const struct iovec *iov,
A
aliguori 已提交
124
                          int iovcnt);
125
ssize_t qemu_sendv_packet_async(NetClientState *nc, const struct iovec *iov,
126
                                int iovcnt, NetPacketSent *sent_cb);
127 128 129
void qemu_send_packet(NetClientState *nc, const uint8_t *buf, int size);
ssize_t qemu_send_packet_raw(NetClientState *nc, const uint8_t *buf, int size);
ssize_t qemu_send_packet_async(NetClientState *nc, const uint8_t *buf,
130
                               int size, NetPacketSent *sent_cb);
131 132 133
void qemu_purge_queued_packets(NetClientState *nc);
void qemu_flush_queued_packets(NetClientState *nc);
void qemu_format_nic_info_str(NetClientState *nc, uint8_t macaddr[6]);
134 135 136 137 138 139 140
bool qemu_has_ufo(NetClientState *nc);
bool qemu_has_vnet_hdr(NetClientState *nc);
bool qemu_has_vnet_hdr_len(NetClientState *nc, int len);
void qemu_using_vnet_hdr(NetClientState *nc, bool enable);
void qemu_set_offload(NetClientState *nc, int csum, int tso4, int tso6,
                      int ecn, int ufo);
void qemu_set_vnet_hdr_len(NetClientState *nc, int len);
G
Gerd Hoffmann 已提交
141
void qemu_macaddr_default_if_unset(MACAddr *macaddr);
142
int qemu_show_nic_models(const char *arg, const char *const *models);
143
void qemu_check_nic_model(NICInfo *nd, const char *model);
144 145
int qemu_find_nic_model(NICInfo *nd, const char * const *models,
                        const char *default_model);
P
pbrook 已提交
146

147 148 149 150 151 152 153 154 155 156 157
ssize_t qemu_deliver_packet(NetClientState *sender,
                            unsigned flags,
                            const uint8_t *data,
                            size_t size,
                            void *opaque);
ssize_t qemu_deliver_packet_iov(NetClientState *sender,
                            unsigned flags,
                            const struct iovec *iov,
                            int iovcnt,
                            void *opaque);

158
void print_net_client(Monitor *mon, NetClientState *nc);
159
void hmp_info_network(Monitor *mon, const QDict *qdict);
P
pbrook 已提交
160 161 162 163 164 165

/* NIC info */

#define MAX_NICS 8

struct NICInfo {
166
    MACAddr macaddr;
167 168 169
    char *model;
    char *name;
    char *devaddr;
170
    NetClientState *netdev;
171 172
    int used;         /* is this slot in nd_table[] being used? */
    int instantiated; /* does this NICInfo correspond to an instantiated NIC? */
173
    int nvectors;
P
pbrook 已提交
174 175 176 177
};

extern int nb_nics;
extern NICInfo nd_table[MAX_NICS];
G
Gerd Hoffmann 已提交
178
extern int default_net;
179
extern const char *host_net_devices[];
P
pbrook 已提交
180

181
/* from net.c */
182 183 184
extern const char *legacy_tftp_prefix;
extern const char *legacy_bootp_filename;

185
int net_client_init(QemuOpts *opts, int is_netdev, Error **errp);
186
int net_client_parse(QemuOptsList *opts_list, const char *str);
187
int net_init_clients(void);
188
void net_check_clients(void);
189
void net_cleanup(void);
190 191
void hmp_host_net_add(Monitor *mon, const QDict *qdict);
void hmp_host_net_remove(Monitor *mon, const QDict *qdict);
L
Luiz Capitulino 已提交
192 193
void netdev_add(QemuOpts *opts, Error **errp);
int qmp_netdev_add(Monitor *mon, const QDict *qdict, QObject **ret);
194

P
Paolo Bonzini 已提交
195 196 197
int net_hub_id_for_client(NetClientState *nc, int *id);
NetClientState *net_hub_port_find(int hub_id);

198 199
#define DEFAULT_NETWORK_SCRIPT "/etc/qemu-ifup"
#define DEFAULT_NETWORK_DOWN_SCRIPT "/etc/qemu-ifdown"
C
Corey Bryant 已提交
200 201
#define DEFAULT_BRIDGE_HELPER CONFIG_QEMU_HELPERDIR "/qemu-bridge-helper"
#define DEFAULT_BRIDGE_INTERFACE "br0"
202

G
Gerd Hoffmann 已提交
203
void qdev_set_nic_properties(DeviceState *dev, NICInfo *nd);
P
Paul Brook 已提交
204

205 206 207
#define POLYNOMIAL 0x04c11db6
unsigned compute_mcast_idx(const uint8_t *ep);

208 209 210 211 212 213 214 215 216 217 218 219
#define vmstate_offset_macaddr(_state, _field)                       \
    vmstate_offset_array(_state, _field.a, uint8_t,                \
                         sizeof(typeof_field(_state, _field)))

#define VMSTATE_MACADDR(_field, _state) {                            \
    .name       = (stringify(_field)),                               \
    .size       = sizeof(MACAddr),                                   \
    .info       = &vmstate_info_buffer,                              \
    .flags      = VMS_BUFFER,                                        \
    .offset     = vmstate_offset_macaddr(_state, _field),            \
}

P
pbrook 已提交
220
#endif