]> git.proxmox.com Git - qemu.git/blob - net.h
hw/escc: Drop duplicate definition of 'disabled' property
[qemu.git] / net.h
1 #ifndef QEMU_NET_H
2 #define QEMU_NET_H
3
4 #include "qemu-queue.h"
5 #include "qemu-common.h"
6 #include "qdict.h"
7 #include "qemu-option.h"
8 #include "net/queue.h"
9 #include "vmstate.h"
10 #include "qapi-types.h"
11
12 struct MACAddr {
13 uint8_t a[6];
14 };
15
16 /* qdev nic properties */
17
18 typedef struct NICConf {
19 MACAddr macaddr;
20 VLANState *vlan;
21 VLANClientState *peer;
22 int32_t bootindex;
23 } NICConf;
24
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)
30
31 /* VLANs support */
32
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 *);
39
40 typedef struct NetClientInfo {
41 NetClientOptionsKind type;
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;
49 NetPoll *poll;
50 } NetClientInfo;
51
52 struct VLANClientState {
53 NetClientInfo *info;
54 int link_down;
55 QTAILQ_ENTRY(VLANClientState) next;
56 struct VLANState *vlan;
57 VLANClientState *peer;
58 NetQueue *send_queue;
59 char *model;
60 char *name;
61 char info_str[256];
62 unsigned receive_disabled : 1;
63 };
64
65 typedef struct NICState {
66 VLANClientState nc;
67 NICConf *conf;
68 void *opaque;
69 bool peer_deleted;
70 } NICState;
71
72 struct VLANState {
73 int id;
74 QTAILQ_HEAD(, VLANClientState) clients;
75 QTAILQ_ENTRY(VLANState) next;
76 NetQueue *send_queue;
77 };
78
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,
82 VLANState *vlan,
83 VLANClientState *peer,
84 const char *model,
85 const char *name);
86 NICState *qemu_new_nic(NetClientInfo *info,
87 NICConf *conf,
88 const char *model,
89 const char *name,
90 void *opaque);
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,
98 int iovcnt);
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);
113
114 void do_info_network(Monitor *mon);
115
116 /* NIC info */
117
118 #define MAX_NICS 8
119
120 struct NICInfo {
121 MACAddr macaddr;
122 char *model;
123 char *name;
124 char *devaddr;
125 VLANState *vlan;
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? */
129 int nvectors;
130 };
131
132 extern int nb_nics;
133 extern NICInfo nd_table[MAX_NICS];
134 extern int default_net;
135
136 /* BT HCI info */
137
138 struct HCIInfo {
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);
143 void *opaque;
144 void (*evt_recv)(void *opaque, const uint8_t *data, int len);
145 void (*acl_recv)(void *opaque, const uint8_t *data, int len);
146 };
147
148 struct HCIInfo *qemu_next_hci(void);
149
150 /* from net.c */
151 extern const char *legacy_tftp_prefix;
152 extern const char *legacy_bootp_filename;
153
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);
163
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"
168
169 void qdev_set_nic_properties(DeviceState *dev, NICInfo *nd);
170
171 int net_handle_fd_param(Monitor *mon, const char *param);
172
173 #define POLYNOMIAL 0x04c11db6
174 unsigned compute_mcast_idx(const uint8_t *ep);
175
176 #define vmstate_offset_macaddr(_state, _field) \
177 vmstate_offset_array(_state, _field.a, uint8_t, \
178 sizeof(typeof_field(_state, _field)))
179
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), \
186 }
187
188 #endif