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