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;
P
pbrook 已提交
82
    unsigned int nb_guest_devs, nb_host_devs;
83
    NetQueue *send_queue;
P
pbrook 已提交
84 85
};

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

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

/* NIC info */

#define MAX_NICS 8
127 128 129
enum {
	NIC_NVECTORS_UNSPECIFIED = -1
};
P
pbrook 已提交
130 131 132

struct NICInfo {
    uint8_t macaddr[6];
133 134 135
    char *model;
    char *name;
    char *devaddr;
P
pbrook 已提交
136
    VLANState *vlan;
M
Mark McLoughlin 已提交
137
    VLANClientState *netdev;
138
    int used;
139
    int bootable;
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
void net_client_uninit(NICInfo *nd);
167
int net_client_parse(QemuOptsList *opts_list, const char *str);
168
int net_init_clients(void);
169
void net_cleanup(void);
170
void net_set_boot_mask(int boot_mask);
171 172
void net_host_device_add(Monitor *mon, const QDict *qdict);
void net_host_device_remove(Monitor *mon, const QDict *qdict);
173

174 175 176 177 178 179 180 181
#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 已提交
182
void qdev_set_nic_properties(DeviceState *dev, NICInfo *nd);
P
Paul Brook 已提交
183

184 185
int net_handle_fd_param(Monitor *mon, const char *param);

P
pbrook 已提交
186
#endif