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

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

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

G
Gerd Hoffmann 已提交
15 16 17 18 19 20 21 22 23 24 25 26 27
/* qdev nic properties */

typedef struct NICConf {
    MACAddr macaddr;
    VLANState *vlan;
    VLANClientState *peer;
} NICConf;

#define DEFINE_NIC_PROPERTIES(_state, _conf)                            \
    DEFINE_PROP_MACADDR("mac",   _state, _conf.macaddr),                \
    DEFINE_PROP_VLAN("vlan",     _state, _conf.vlan),                   \
    DEFINE_PROP_NETDEV("netdev", _state, _conf.peer)

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

M
Mark McLoughlin 已提交
30 31 32 33 34 35 36 37 38 39
typedef enum {
    NET_CLIENT_TYPE_NONE,
    NET_CLIENT_TYPE_NIC,
    NET_CLIENT_TYPE_SLIRP,
    NET_CLIENT_TYPE_TAP,
    NET_CLIENT_TYPE_SOCKET,
    NET_CLIENT_TYPE_VDE,
    NET_CLIENT_TYPE_DUMP
} net_client_type;

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

M
Mark McLoughlin 已提交
47 48 49 50 51 52 53 54 55
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;
56
    NetPoll *poll;
M
Mark McLoughlin 已提交
57 58
} NetClientInfo;

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

72 73 74 75 76 77
typedef struct NICState {
    VLANClientState nc;
    NICConf *conf;
    void *opaque;
} NICState;

P
pbrook 已提交
78 79
struct VLANState {
    int id;
80 81
    QTAILQ_HEAD(, VLANClientState) clients;
    QTAILQ_ENTRY(VLANState) next;
82
    NetQueue *send_queue;
P
pbrook 已提交
83 84
};

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

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

/* NIC info */

#define MAX_NICS 8

struct NICInfo {
    uint8_t macaddr[6];
129 130 131
    char *model;
    char *name;
    char *devaddr;
P
pbrook 已提交
132
    VLANState *vlan;
M
Mark McLoughlin 已提交
133
    VLANClientState *netdev;
134
    int used;
135
    int nvectors;
P
pbrook 已提交
136 137 138 139
};

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

142 143 144 145 146 147 148 149 150 151 152 153 154 155
/* 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);

156
/* from net.c */
157 158 159
extern const char *legacy_tftp_prefix;
extern const char *legacy_bootp_filename;

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

170 171 172 173 174 175 176 177
#define DEFAULT_NETWORK_SCRIPT "/etc/qemu-ifup"
#define DEFAULT_NETWORK_DOWN_SCRIPT "/etc/qemu-ifdown"
#ifdef __sun__
#define SMBD_COMMAND "/usr/sfw/sbin/smbd"
#else
#define SMBD_COMMAND "/usr/sbin/smbd"
#endif

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