4 #include "qemu-queue.h"
5 #include "qemu-common.h"
7 #include "qemu-option.h"
10 #include "qapi-types.h"
16 /* qdev nic properties */
18 typedef struct NICConf
{
21 VLANClientState
*peer
;
25 #define DEFINE_NIC_PROPERTIES(_state, _conf) \
26 DEFINE_PROP_MACADDR("mac", _state, _conf.macaddr), \
27 DEFINE_PROP_VLAN("vlan", _state, _conf.vlan), \
28 DEFINE_PROP_NETDEV("netdev", _state, _conf.peer), \
29 DEFINE_PROP_INT32("bootindex", _state, _conf.bootindex, -1)
33 typedef void (NetPoll
)(VLANClientState
*, bool enable
);
34 typedef int (NetCanReceive
)(VLANClientState
*);
35 typedef ssize_t (NetReceive
)(VLANClientState
*, const uint8_t *, size_t);
36 typedef ssize_t (NetReceiveIOV
)(VLANClientState
*, const struct iovec
*, int);
37 typedef void (NetCleanup
) (VLANClientState
*);
38 typedef void (LinkStatusChanged
)(VLANClientState
*);
40 typedef struct NetClientInfo
{
41 NetClientOptionsKind type
;
44 NetReceive
*receive_raw
;
45 NetReceiveIOV
*receive_iov
;
46 NetCanReceive
*can_receive
;
48 LinkStatusChanged
*link_status_changed
;
52 struct VLANClientState
{
55 QTAILQ_ENTRY(VLANClientState
) next
;
56 struct VLANState
*vlan
;
57 VLANClientState
*peer
;
62 unsigned receive_disabled
: 1;
65 typedef struct NICState
{
74 QTAILQ_HEAD(, VLANClientState
) clients
;
75 QTAILQ_ENTRY(VLANState
) next
;
79 VLANState
*qemu_find_vlan(int id
, int allocate
);
80 VLANClientState
*qemu_find_netdev(const char *id
);
81 VLANClientState
*qemu_new_net_client(NetClientInfo
*info
,
83 VLANClientState
*peer
,
86 NICState
*qemu_new_nic(NetClientInfo
*info
,
91 void qemu_del_vlan_client(VLANClientState
*vc
);
92 VLANClientState
*qemu_find_vlan_client_by_name(Monitor
*mon
, int vlan_id
,
93 const char *client_str
);
94 typedef void (*qemu_nic_foreach
)(NICState
*nic
, void *opaque
);
95 void qemu_foreach_nic(qemu_nic_foreach func
, void *opaque
);
96 int qemu_can_send_packet(VLANClientState
*vc
);
97 ssize_t
qemu_sendv_packet(VLANClientState
*vc
, const struct iovec
*iov
,
99 ssize_t
qemu_sendv_packet_async(VLANClientState
*vc
, const struct iovec
*iov
,
100 int iovcnt
, NetPacketSent
*sent_cb
);
101 void qemu_send_packet(VLANClientState
*vc
, const uint8_t *buf
, int size
);
102 ssize_t
qemu_send_packet_raw(VLANClientState
*vc
, const uint8_t *buf
, int size
);
103 ssize_t
qemu_send_packet_async(VLANClientState
*vc
, const uint8_t *buf
,
104 int size
, NetPacketSent
*sent_cb
);
105 void qemu_purge_queued_packets(VLANClientState
*vc
);
106 void qemu_flush_queued_packets(VLANClientState
*vc
);
107 void qemu_format_nic_info_str(VLANClientState
*vc
, uint8_t macaddr
[6]);
108 void qemu_macaddr_default_if_unset(MACAddr
*macaddr
);
109 int qemu_show_nic_models(const char *arg
, const char *const *models
);
110 void qemu_check_nic_model(NICInfo
*nd
, const char *model
);
111 int qemu_find_nic_model(NICInfo
*nd
, const char * const *models
,
112 const char *default_model
);
114 void do_info_network(Monitor
*mon
);
126 VLANClientState
*netdev
;
127 int used
; /* is this slot in nd_table[] being used? */
128 int instantiated
; /* does this NICInfo correspond to an instantiated NIC? */
133 extern NICInfo nd_table
[MAX_NICS
];
134 extern int default_net
;
139 int (*bdaddr_set
)(struct HCIInfo
*hci
, const uint8_t *bd_addr
);
140 void (*cmd_send
)(struct HCIInfo
*hci
, const uint8_t *data
, int len
);
141 void (*sco_send
)(struct HCIInfo
*hci
, const uint8_t *data
, int len
);
142 void (*acl_send
)(struct HCIInfo
*hci
, const uint8_t *data
, int len
);
144 void (*evt_recv
)(void *opaque
, const uint8_t *data
, int len
);
145 void (*acl_recv
)(void *opaque
, const uint8_t *data
, int len
);
148 struct HCIInfo
*qemu_next_hci(void);
151 extern const char *legacy_tftp_prefix
;
152 extern const char *legacy_bootp_filename
;
154 int net_client_init(QemuOpts
*opts
, int is_netdev
, Error
**errp
);
155 int net_client_parse(QemuOptsList
*opts_list
, const char *str
);
156 int net_init_clients(void);
157 void net_check_clients(void);
158 void net_cleanup(void);
159 void net_host_device_add(Monitor
*mon
, const QDict
*qdict
);
160 void net_host_device_remove(Monitor
*mon
, const QDict
*qdict
);
161 void netdev_add(QemuOpts
*opts
, Error
**errp
);
162 int qmp_netdev_add(Monitor
*mon
, const QDict
*qdict
, QObject
**ret
);
164 #define DEFAULT_NETWORK_SCRIPT "/etc/qemu-ifup"
165 #define DEFAULT_NETWORK_DOWN_SCRIPT "/etc/qemu-ifdown"
166 #define DEFAULT_BRIDGE_HELPER CONFIG_QEMU_HELPERDIR "/qemu-bridge-helper"
167 #define DEFAULT_BRIDGE_INTERFACE "br0"
169 void qdev_set_nic_properties(DeviceState
*dev
, NICInfo
*nd
);
171 int net_handle_fd_param(Monitor
*mon
, const char *param
);
173 #define POLYNOMIAL 0x04c11db6
174 unsigned compute_mcast_idx(const uint8_t *ep
);
176 #define vmstate_offset_macaddr(_state, _field) \
177 vmstate_offset_array(_state, _field.a, uint8_t, \
178 sizeof(typeof_field(_state, _field)))
180 #define VMSTATE_MACADDR(_field, _state) { \
181 .name = (stringify(_field)), \
182 .size = sizeof(MACAddr), \
183 .info = &vmstate_info_buffer, \
184 .flags = VMS_BUFFER, \
185 .offset = vmstate_offset_macaddr(_state, _field), \