net.h 5.9 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"
A
aliguori 已提交
9

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

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

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

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

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

M
Mark McLoughlin 已提交
31 32 33
typedef enum {
    NET_CLIENT_TYPE_NONE,
    NET_CLIENT_TYPE_NIC,
J
Jan Kiszka 已提交
34
    NET_CLIENT_TYPE_USER,
M
Mark McLoughlin 已提交
35 36 37
    NET_CLIENT_TYPE_TAP,
    NET_CLIENT_TYPE_SOCKET,
    NET_CLIENT_TYPE_VDE,
J
Jan Kiszka 已提交
38 39 40
    NET_CLIENT_TYPE_DUMP,

    NET_CLIENT_TYPE_MAX
M
Mark McLoughlin 已提交
41 42
} net_client_type;

43
typedef void (NetPoll)(VLANClientState *, bool enable);
44
typedef int (NetCanReceive)(VLANClientState *);
45
typedef ssize_t (NetReceive)(VLANClientState *, const uint8_t *, size_t);
46
typedef ssize_t (NetReceiveIOV)(VLANClientState *, const struct iovec *, int);
47
typedef void (NetCleanup) (VLANClientState *);
48 49
typedef void (LinkStatusChanged)(VLANClientState *);

M
Mark McLoughlin 已提交
50 51 52 53 54 55 56 57 58
typedef struct NetClientInfo {
    net_client_type type;
    size_t size;
    NetReceive *receive;
    NetReceive *receive_raw;
    NetReceiveIOV *receive_iov;
    NetCanReceive *can_receive;
    NetCleanup *cleanup;
    LinkStatusChanged *link_status_changed;
59
    NetPoll *poll;
M
Mark McLoughlin 已提交
60 61
} NetClientInfo;

P
pbrook 已提交
62
struct VLANClientState {
63
    NetClientInfo *info;
64
    int link_down;
65
    QTAILQ_ENTRY(VLANClientState) next;
P
pbrook 已提交
66
    struct VLANState *vlan;
67
    VLANClientState *peer;
68
    NetQueue *send_queue;
69
    char *model;
70
    char *name;
P
pbrook 已提交
71
    char info_str[256];
72
    unsigned receive_disabled : 1;
P
pbrook 已提交
73 74
};

75 76 77 78
typedef struct NICState {
    VLANClientState nc;
    NICConf *conf;
    void *opaque;
79
    bool peer_deleted;
80 81
} NICState;

P
pbrook 已提交
82 83
struct VLANState {
    int id;
84 85
    QTAILQ_HEAD(, VLANClientState) clients;
    QTAILQ_ENTRY(VLANState) next;
86
    NetQueue *send_queue;
P
pbrook 已提交
87 88
};

89
VLANState *qemu_find_vlan(int id, int allocate);
G
Gerd Hoffmann 已提交
90
VLANClientState *qemu_find_netdev(const char *id);
91 92 93 94 95
VLANClientState *qemu_new_net_client(NetClientInfo *info,
                                     VLANState *vlan,
                                     VLANClientState *peer,
                                     const char *model,
                                     const char *name);
96 97 98 99 100
NICState *qemu_new_nic(NetClientInfo *info,
                       NICConf *conf,
                       const char *model,
                       const char *name,
                       void *opaque);
101
void qemu_del_vlan_client(VLANClientState *vc);
102 103
VLANClientState *qemu_find_vlan_client_by_name(Monitor *mon, int vlan_id,
                                               const char *client_str);
M
Mark McLoughlin 已提交
104 105
typedef void (*qemu_nic_foreach)(NICState *nic, void *opaque);
void qemu_foreach_nic(qemu_nic_foreach func, void *opaque);
P
pbrook 已提交
106
int qemu_can_send_packet(VLANClientState *vc);
A
aliguori 已提交
107 108
ssize_t qemu_sendv_packet(VLANClientState *vc, const struct iovec *iov,
                          int iovcnt);
109 110
ssize_t qemu_sendv_packet_async(VLANClientState *vc, const struct iovec *iov,
                                int iovcnt, NetPacketSent *sent_cb);
P
pbrook 已提交
111
void qemu_send_packet(VLANClientState *vc, const uint8_t *buf, int size);
112
ssize_t qemu_send_packet_raw(VLANClientState *vc, const uint8_t *buf, int size);
113 114
ssize_t qemu_send_packet_async(VLANClientState *vc, const uint8_t *buf,
                               int size, NetPacketSent *sent_cb);
115
void qemu_purge_queued_packets(VLANClientState *vc);
116
void qemu_flush_queued_packets(VLANClientState *vc);
117
void qemu_format_nic_info_str(VLANClientState *vc, uint8_t macaddr[6]);
G
Gerd Hoffmann 已提交
118
void qemu_macaddr_default_if_unset(MACAddr *macaddr);
119
int qemu_show_nic_models(const char *arg, const char *const *models);
120
void qemu_check_nic_model(NICInfo *nd, const char *model);
121 122
int qemu_find_nic_model(NICInfo *nd, const char * const *models,
                        const char *default_model);
P
pbrook 已提交
123

A
aliguori 已提交
124
void do_info_network(Monitor *mon);
125
int do_set_link(Monitor *mon, const QDict *qdict, QObject **ret_data);
P
pbrook 已提交
126 127 128 129 130 131

/* NIC info */

#define MAX_NICS 8

struct NICInfo {
132
    MACAddr macaddr;
133 134 135
    char *model;
    char *name;
    char *devaddr;
P
pbrook 已提交
136
    VLANState *vlan;
M
Mark McLoughlin 已提交
137
    VLANClientState *netdev;
138 139
    int used;         /* is this slot in nd_table[] being used? */
    int instantiated; /* does this NICInfo correspond to an instantiated NIC? */
140
    int nvectors;
P
pbrook 已提交
141 142 143 144
};

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

147 148 149 150 151 152 153 154 155 156 157 158 159 160
/* 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);

161
/* from net.c */
162 163 164
extern const char *legacy_tftp_prefix;
extern const char *legacy_bootp_filename;

M
Mark McLoughlin 已提交
165
int net_client_init(Monitor *mon, QemuOpts *opts, int is_netdev);
166
int net_client_parse(QemuOptsList *opts_list, const char *str);
167
int net_init_clients(void);
168
void net_check_clients(void);
169
void net_cleanup(void);
170 171
void net_host_device_add(Monitor *mon, const QDict *qdict);
void net_host_device_remove(Monitor *mon, const QDict *qdict);
172 173
int do_netdev_add(Monitor *mon, const QDict *qdict, QObject **ret_data);
int do_netdev_del(Monitor *mon, const QDict *qdict, QObject **ret_data);
174

175 176 177
#define DEFAULT_NETWORK_SCRIPT "/etc/qemu-ifup"
#define DEFAULT_NETWORK_DOWN_SCRIPT "/etc/qemu-ifdown"

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

180 181
int net_handle_fd_param(Monitor *mon, const char *param);

P
pbrook 已提交
182
#endif