]> git.proxmox.com Git - qemu.git/blame - include/net/net.h
net: introduce NetClientState destructor
[qemu.git] / include / net / net.h
CommitLineData
87ecb68b
PB
1#ifndef QEMU_NET_H
2#define QEMU_NET_H
3
1de7afc9 4#include "qemu/queue.h"
fbe78f4f 5#include "qemu-common.h"
7b1b5d19 6#include "qapi/qmp/qdict.h"
1de7afc9 7#include "qemu/option.h"
e1144d00 8#include "net/queue.h"
caf71f86 9#include "migration/vmstate.h"
2be64a68 10#include "qapi-types.h"
fbe78f4f 11
76d32cba
GH
12struct MACAddr {
13 uint8_t a[6];
14};
15
ed16ab5a
GH
16/* qdev nic properties */
17
18typedef struct NICConf {
19 MACAddr macaddr;
4e68f7a0 20 NetClientState *peer;
1ca4d09a 21 int32_t bootindex;
ed16ab5a
GH
22} NICConf;
23
24#define DEFINE_NIC_PROPERTIES(_state, _conf) \
25 DEFINE_PROP_MACADDR("mac", _state, _conf.macaddr), \
606c10e2 26 DEFINE_PROP_VLAN("vlan", _state, _conf.peer), \
1ca4d09a
GN
27 DEFINE_PROP_NETDEV("netdev", _state, _conf.peer), \
28 DEFINE_PROP_INT32("bootindex", _state, _conf.bootindex, -1)
ed16ab5a 29
4e68f7a0 30/* Net clients */
87ecb68b 31
4e68f7a0
SH
32typedef void (NetPoll)(NetClientState *, bool enable);
33typedef int (NetCanReceive)(NetClientState *);
34typedef ssize_t (NetReceive)(NetClientState *, const uint8_t *, size_t);
35typedef ssize_t (NetReceiveIOV)(NetClientState *, const struct iovec *, int);
36typedef void (NetCleanup) (NetClientState *);
37typedef void (LinkStatusChanged)(NetClientState *);
f7860455 38typedef void (NetClientDestructor)(NetClientState *);
34b25ca7 39
3ed79cc9 40typedef struct NetClientInfo {
2be64a68 41 NetClientOptionsKind type;
3ed79cc9
MM
42 size_t size;
43 NetReceive *receive;
44 NetReceive *receive_raw;
45 NetReceiveIOV *receive_iov;
46 NetCanReceive *can_receive;
47 NetCleanup *cleanup;
48 LinkStatusChanged *link_status_changed;
ceb69615 49 NetPoll *poll;
3ed79cc9
MM
50} NetClientInfo;
51
4e68f7a0 52struct NetClientState {
665a3b07 53 NetClientInfo *info;
436e5e53 54 int link_down;
4e68f7a0
SH
55 QTAILQ_ENTRY(NetClientState) next;
56 NetClientState *peer;
9a6ecb30 57 NetQueue *send_queue;
bf38c1a0 58 char *model;
676cff29 59 char *name;
87ecb68b 60 char info_str[256];
893379ef 61 unsigned receive_disabled : 1;
f7860455 62 NetClientDestructor *destructor;
87ecb68b
PB
63};
64
ebef2c09 65typedef struct NICState {
4e68f7a0 66 NetClientState nc;
ebef2c09
MM
67 NICConf *conf;
68 void *opaque;
a083a89d 69 bool peer_deleted;
ebef2c09
MM
70} NICState;
71
4e68f7a0 72NetClientState *qemu_find_netdev(const char *id);
6c51ae73
JW
73int qemu_find_net_clients_except(const char *id, NetClientState **ncs,
74 NetClientOptionsKind type, int max);
4e68f7a0
SH
75NetClientState *qemu_new_net_client(NetClientInfo *info,
76 NetClientState *peer,
77 const char *model,
78 const char *name);
ebef2c09
MM
79NICState *qemu_new_nic(NetClientInfo *info,
80 NICConf *conf,
81 const char *model,
82 const char *name,
83 void *opaque);
948ecf21 84void qemu_del_nic(NICState *nic);
b356f76d 85NetClientState *qemu_get_queue(NICState *nic);
cc1f0f45
JW
86NICState *qemu_get_nic(NetClientState *nc);
87void *qemu_get_nic_opaque(NetClientState *nc);
b20c6b9e 88void qemu_del_net_client(NetClientState *nc);
4e68f7a0
SH
89NetClientState *qemu_find_vlan_client_by_name(Monitor *mon, int vlan_id,
90 const char *client_str);
57f9ef17
MM
91typedef void (*qemu_nic_foreach)(NICState *nic, void *opaque);
92void qemu_foreach_nic(qemu_nic_foreach func, void *opaque);
35277d14
SH
93int qemu_can_send_packet(NetClientState *nc);
94ssize_t qemu_sendv_packet(NetClientState *nc, const struct iovec *iov,
fbe78f4f 95 int iovcnt);
35277d14 96ssize_t qemu_sendv_packet_async(NetClientState *nc, const struct iovec *iov,
f3b6c7fc 97 int iovcnt, NetPacketSent *sent_cb);
35277d14
SH
98void qemu_send_packet(NetClientState *nc, const uint8_t *buf, int size);
99ssize_t qemu_send_packet_raw(NetClientState *nc, const uint8_t *buf, int size);
100ssize_t qemu_send_packet_async(NetClientState *nc, const uint8_t *buf,
f3b6c7fc 101 int size, NetPacketSent *sent_cb);
35277d14
SH
102void qemu_purge_queued_packets(NetClientState *nc);
103void qemu_flush_queued_packets(NetClientState *nc);
104void qemu_format_nic_info_str(NetClientState *nc, uint8_t macaddr[6]);
76d32cba 105void qemu_macaddr_default_if_unset(MACAddr *macaddr);
07caea31 106int qemu_show_nic_models(const char *arg, const char *const *models);
d07f22c5 107void qemu_check_nic_model(NICInfo *nd, const char *model);
07caea31
MA
108int qemu_find_nic_model(NICInfo *nd, const char * const *models,
109 const char *default_model);
87ecb68b 110
86a77c38
ZYW
111ssize_t qemu_deliver_packet(NetClientState *sender,
112 unsigned flags,
113 const uint8_t *data,
114 size_t size,
115 void *opaque);
116ssize_t qemu_deliver_packet_iov(NetClientState *sender,
117 unsigned flags,
118 const struct iovec *iov,
119 int iovcnt,
120 void *opaque);
121
1a859593 122void print_net_client(Monitor *mon, NetClientState *nc);
84f2d0ea 123void do_info_network(Monitor *mon, const QDict *qdict);
87ecb68b
PB
124
125/* NIC info */
126
127#define MAX_NICS 8
128
129struct NICInfo {
6eed1856 130 MACAddr macaddr;
9203f520
MM
131 char *model;
132 char *name;
133 char *devaddr;
4e68f7a0 134 NetClientState *netdev;
48e2faf2
PM
135 int used; /* is this slot in nd_table[] being used? */
136 int instantiated; /* does this NICInfo correspond to an instantiated NIC? */
ffe6370c 137 int nvectors;
87ecb68b
PB
138};
139
140extern int nb_nics;
141extern NICInfo nd_table[MAX_NICS];
cb4522cc 142extern int default_net;
87ecb68b 143
63a01ef8 144/* from net.c */
ad196a9d
JK
145extern const char *legacy_tftp_prefix;
146extern const char *legacy_bootp_filename;
147
4559a1db 148int net_client_init(QemuOpts *opts, int is_netdev, Error **errp);
7f161aae 149int net_client_parse(QemuOptsList *opts_list, const char *str);
dc1c9fe8 150int net_init_clients(void);
668680f7 151void net_check_clients(void);
63a01ef8 152void net_cleanup(void);
f18c16de
LC
153void net_host_device_add(Monitor *mon, const QDict *qdict);
154void net_host_device_remove(Monitor *mon, const QDict *qdict);
928059a3
LC
155void netdev_add(QemuOpts *opts, Error **errp);
156int qmp_netdev_add(Monitor *mon, const QDict *qdict, QObject **ret);
63a01ef8 157
1422e32d
PB
158int net_hub_id_for_client(NetClientState *nc, int *id);
159NetClientState *net_hub_port_find(int hub_id);
160
f54825cc
AJ
161#define DEFAULT_NETWORK_SCRIPT "/etc/qemu-ifup"
162#define DEFAULT_NETWORK_DOWN_SCRIPT "/etc/qemu-ifdown"
a7c36ee4
CB
163#define DEFAULT_BRIDGE_HELPER CONFIG_QEMU_HELPERDIR "/qemu-bridge-helper"
164#define DEFAULT_BRIDGE_INTERFACE "br0"
f54825cc 165
ed16ab5a 166void qdev_set_nic_properties(DeviceState *dev, NICInfo *nd);
9d07d757 167
7fc8d918
JW
168#define POLYNOMIAL 0x04c11db6
169unsigned compute_mcast_idx(const uint8_t *ep);
170
701a8f76
PB
171#define vmstate_offset_macaddr(_state, _field) \
172 vmstate_offset_array(_state, _field.a, uint8_t, \
173 sizeof(typeof_field(_state, _field)))
174
175#define VMSTATE_MACADDR(_field, _state) { \
176 .name = (stringify(_field)), \
177 .size = sizeof(MACAddr), \
178 .info = &vmstate_info_buffer, \
179 .flags = VMS_BUFFER, \
180 .offset = vmstate_offset_macaddr(_state, _field), \
181}
182
87ecb68b 183#endif