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

B
Blue Swirl 已提交
4
#include "qemu-queue.h"
A
aliguori 已提交
5
#include "qemu-common.h"
6
#include "qdict.h"
M
Mark McLoughlin 已提交
7
#include "qemu-option.h"
8
#include "net/queue.h"
9
#include "vmstate.h"
10
#include "qapi-types.h"
A
aliguori 已提交
11

G
Gerd Hoffmann 已提交
12 13 14 15
struct MACAddr {
    uint8_t a[6];
};

G
Gerd Hoffmann 已提交
16 17 18 19 20
/* qdev nic properties */

typedef struct NICConf {
    MACAddr macaddr;
    VLANClientState *peer;
21
    int32_t bootindex;
G
Gerd Hoffmann 已提交
22 23 24 25
} NICConf;

#define DEFINE_NIC_PROPERTIES(_state, _conf)                            \
    DEFINE_PROP_MACADDR("mac",   _state, _conf.macaddr),                \
26
    DEFINE_PROP_VLAN("vlan",     _state, _conf.peer),                   \
27 28
    DEFINE_PROP_NETDEV("netdev", _state, _conf.peer),                   \
    DEFINE_PROP_INT32("bootindex", _state, _conf.bootindex, -1)
G
Gerd Hoffmann 已提交
29

P
pbrook 已提交
30 31
/* VLANs support */

32
typedef void (NetPoll)(VLANClientState *, bool enable);
33
typedef int (NetCanReceive)(VLANClientState *);
34
typedef ssize_t (NetReceive)(VLANClientState *, const uint8_t *, size_t);
35
typedef ssize_t (NetReceiveIOV)(VLANClientState *, const struct iovec *, int);
36
typedef void (NetCleanup) (VLANClientState *);
37 38
typedef void (LinkStatusChanged)(VLANClientState *);

M
Mark McLoughlin 已提交
39
typedef struct NetClientInfo {
40
    NetClientOptionsKind type;
M
Mark McLoughlin 已提交
41 42 43 44 45 46 47
    size_t size;
    NetReceive *receive;
    NetReceive *receive_raw;
    NetReceiveIOV *receive_iov;
    NetCanReceive *can_receive;
    NetCleanup *cleanup;
    LinkStatusChanged *link_status_changed;
48
    NetPoll *poll;
M
Mark McLoughlin 已提交
49 50
} NetClientInfo;

P
pbrook 已提交
51
struct VLANClientState {
52
    NetClientInfo *info;
53
    int link_down;
54
    QTAILQ_ENTRY(VLANClientState) next;
55
    VLANClientState *peer;
56
    NetQueue *send_queue;
57
    char *model;
58
    char *name;
P
pbrook 已提交
59
    char info_str[256];
60
    unsigned receive_disabled : 1;
P
pbrook 已提交
61 62
};

63 64 65 66
typedef struct NICState {
    VLANClientState nc;
    NICConf *conf;
    void *opaque;
67
    bool peer_deleted;
68 69
} NICState;

G
Gerd Hoffmann 已提交
70
VLANClientState *qemu_find_netdev(const char *id);
71 72 73 74
VLANClientState *qemu_new_net_client(NetClientInfo *info,
                                     VLANClientState *peer,
                                     const char *model,
                                     const char *name);
75 76 77 78 79
NICState *qemu_new_nic(NetClientInfo *info,
                       NICConf *conf,
                       const char *model,
                       const char *name,
                       void *opaque);
80
void qemu_del_vlan_client(VLANClientState *vc);
81 82
VLANClientState *qemu_find_vlan_client_by_name(Monitor *mon, int vlan_id,
                                               const char *client_str);
M
Mark McLoughlin 已提交
83 84
typedef void (*qemu_nic_foreach)(NICState *nic, void *opaque);
void qemu_foreach_nic(qemu_nic_foreach func, void *opaque);
P
pbrook 已提交
85
int qemu_can_send_packet(VLANClientState *vc);
A
aliguori 已提交
86 87
ssize_t qemu_sendv_packet(VLANClientState *vc, const struct iovec *iov,
                          int iovcnt);
88 89
ssize_t qemu_sendv_packet_async(VLANClientState *vc, const struct iovec *iov,
                                int iovcnt, NetPacketSent *sent_cb);
P
pbrook 已提交
90
void qemu_send_packet(VLANClientState *vc, const uint8_t *buf, int size);
91
ssize_t qemu_send_packet_raw(VLANClientState *vc, const uint8_t *buf, int size);
92 93
ssize_t qemu_send_packet_async(VLANClientState *vc, const uint8_t *buf,
                               int size, NetPacketSent *sent_cb);
94
void qemu_purge_queued_packets(VLANClientState *vc);
95
void qemu_flush_queued_packets(VLANClientState *vc);
96
void qemu_format_nic_info_str(VLANClientState *vc, uint8_t macaddr[6]);
G
Gerd Hoffmann 已提交
97
void qemu_macaddr_default_if_unset(MACAddr *macaddr);
98
int qemu_show_nic_models(const char *arg, const char *const *models);
99
void qemu_check_nic_model(NICInfo *nd, const char *model);
100 101
int qemu_find_nic_model(NICInfo *nd, const char * const *models,
                        const char *default_model);
P
pbrook 已提交
102

A
aliguori 已提交
103
void do_info_network(Monitor *mon);
P
pbrook 已提交
104 105 106 107 108 109

/* NIC info */

#define MAX_NICS 8

struct NICInfo {
110
    MACAddr macaddr;
111 112 113
    char *model;
    char *name;
    char *devaddr;
M
Mark McLoughlin 已提交
114
    VLANClientState *netdev;
115 116
    int used;         /* is this slot in nd_table[] being used? */
    int instantiated; /* does this NICInfo correspond to an instantiated NIC? */
117
    int nvectors;
P
pbrook 已提交
118 119 120 121
};

extern int nb_nics;
extern NICInfo nd_table[MAX_NICS];
G
Gerd Hoffmann 已提交
122
extern int default_net;
P
pbrook 已提交
123

124 125 126 127 128 129 130 131 132 133 134 135 136 137
/* BT HCI info */

struct HCIInfo {
    int (*bdaddr_set)(struct HCIInfo *hci, const uint8_t *bd_addr);
    void (*cmd_send)(struct HCIInfo *hci, const uint8_t *data, int len);
    void (*sco_send)(struct HCIInfo *hci, const uint8_t *data, int len);
    void (*acl_send)(struct HCIInfo *hci, const uint8_t *data, int len);
    void *opaque;
    void (*evt_recv)(void *opaque, const uint8_t *data, int len);
    void (*acl_recv)(void *opaque, const uint8_t *data, int len);
};

struct HCIInfo *qemu_next_hci(void);

138
/* from net.c */
139 140 141
extern const char *legacy_tftp_prefix;
extern const char *legacy_bootp_filename;

142
int net_client_init(QemuOpts *opts, int is_netdev, Error **errp);
143
int net_client_parse(QemuOptsList *opts_list, const char *str);
144
int net_init_clients(void);
145
void net_check_clients(void);
146
void net_cleanup(void);
147 148
void net_host_device_add(Monitor *mon, const QDict *qdict);
void net_host_device_remove(Monitor *mon, const QDict *qdict);
L
Luiz Capitulino 已提交
149 150
void netdev_add(QemuOpts *opts, Error **errp);
int qmp_netdev_add(Monitor *mon, const QDict *qdict, QObject **ret);
151

152 153
#define DEFAULT_NETWORK_SCRIPT "/etc/qemu-ifup"
#define DEFAULT_NETWORK_DOWN_SCRIPT "/etc/qemu-ifdown"
C
Corey Bryant 已提交
154 155
#define DEFAULT_BRIDGE_HELPER CONFIG_QEMU_HELPERDIR "/qemu-bridge-helper"
#define DEFAULT_BRIDGE_INTERFACE "br0"
156

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

159 160
int net_handle_fd_param(Monitor *mon, const char *param);

161 162 163
#define POLYNOMIAL 0x04c11db6
unsigned compute_mcast_idx(const uint8_t *ep);

164 165 166 167 168 169 170 171 172 173 174 175
#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 已提交
176
#endif