]>
Commit | Line | Data |
---|---|---|
87ecb68b PB |
1 | #ifndef QEMU_NET_H |
2 | #define QEMU_NET_H | |
3 | ||
72cf2d4f | 4 | #include "qemu-queue.h" |
fbe78f4f | 5 | #include "qemu-common.h" |
f18c16de | 6 | #include "qdict.h" |
13cf8f21 | 7 | #include "qemu-option.h" |
e1144d00 | 8 | #include "net/queue.h" |
701a8f76 | 9 | #include "vmstate.h" |
2be64a68 | 10 | #include "qapi-types.h" |
fbe78f4f | 11 | |
76d32cba GH |
12 | struct MACAddr { |
13 | uint8_t a[6]; | |
14 | }; | |
15 | ||
ed16ab5a GH |
16 | /* qdev nic properties */ |
17 | ||
18 | typedef 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 |
32 | typedef void (NetPoll)(NetClientState *, bool enable); |
33 | typedef int (NetCanReceive)(NetClientState *); | |
34 | typedef ssize_t (NetReceive)(NetClientState *, const uint8_t *, size_t); | |
35 | typedef ssize_t (NetReceiveIOV)(NetClientState *, const struct iovec *, int); | |
36 | typedef void (NetCleanup) (NetClientState *); | |
37 | typedef void (LinkStatusChanged)(NetClientState *); | |
34b25ca7 | 38 | |
3ed79cc9 | 39 | typedef 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 | 51 | struct 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 | 63 | typedef 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 |
70 | NetClientState *qemu_find_netdev(const char *id); |
71 | NetClientState *qemu_new_net_client(NetClientInfo *info, | |
72 | NetClientState *peer, | |
73 | const char *model, | |
74 | const char *name); | |
ebef2c09 MM |
75 | NICState *qemu_new_nic(NetClientInfo *info, |
76 | NICConf *conf, | |
77 | const char *model, | |
78 | const char *name, | |
79 | void *opaque); | |
b20c6b9e | 80 | void qemu_del_net_client(NetClientState *nc); |
4e68f7a0 SH |
81 | NetClientState *qemu_find_vlan_client_by_name(Monitor *mon, int vlan_id, |
82 | const char *client_str); | |
57f9ef17 MM |
83 | typedef void (*qemu_nic_foreach)(NICState *nic, void *opaque); |
84 | void qemu_foreach_nic(qemu_nic_foreach func, void *opaque); | |
35277d14 SH |
85 | int qemu_can_send_packet(NetClientState *nc); |
86 | ssize_t qemu_sendv_packet(NetClientState *nc, const struct iovec *iov, | |
fbe78f4f | 87 | int iovcnt); |
35277d14 | 88 | ssize_t qemu_sendv_packet_async(NetClientState *nc, const struct iovec *iov, |
f3b6c7fc | 89 | int iovcnt, NetPacketSent *sent_cb); |
35277d14 SH |
90 | void qemu_send_packet(NetClientState *nc, const uint8_t *buf, int size); |
91 | ssize_t qemu_send_packet_raw(NetClientState *nc, const uint8_t *buf, int size); | |
92 | ssize_t qemu_send_packet_async(NetClientState *nc, const uint8_t *buf, | |
f3b6c7fc | 93 | int size, NetPacketSent *sent_cb); |
35277d14 SH |
94 | void qemu_purge_queued_packets(NetClientState *nc); |
95 | void qemu_flush_queued_packets(NetClientState *nc); | |
96 | void qemu_format_nic_info_str(NetClientState *nc, uint8_t macaddr[6]); | |
76d32cba | 97 | void qemu_macaddr_default_if_unset(MACAddr *macaddr); |
07caea31 | 98 | int qemu_show_nic_models(const char *arg, const char *const *models); |
d07f22c5 | 99 | void qemu_check_nic_model(NICInfo *nd, const char *model); |
07caea31 MA |
100 | int qemu_find_nic_model(NICInfo *nd, const char * const *models, |
101 | const char *default_model); | |
87ecb68b | 102 | |
86a77c38 ZYW |
103 | ssize_t qemu_deliver_packet(NetClientState *sender, |
104 | unsigned flags, | |
105 | const uint8_t *data, | |
106 | size_t size, | |
107 | void *opaque); | |
108 | ssize_t qemu_deliver_packet_iov(NetClientState *sender, | |
109 | unsigned flags, | |
110 | const struct iovec *iov, | |
111 | int iovcnt, | |
112 | void *opaque); | |
113 | ||
1a859593 | 114 | void print_net_client(Monitor *mon, NetClientState *nc); |
376253ec | 115 | void do_info_network(Monitor *mon); |
87ecb68b PB |
116 | |
117 | /* NIC info */ | |
118 | ||
119 | #define MAX_NICS 8 | |
120 | ||
121 | struct NICInfo { | |
6eed1856 | 122 | MACAddr macaddr; |
9203f520 MM |
123 | char *model; |
124 | char *name; | |
125 | char *devaddr; | |
4e68f7a0 | 126 | NetClientState *netdev; |
48e2faf2 PM |
127 | int used; /* is this slot in nd_table[] being used? */ |
128 | int instantiated; /* does this NICInfo correspond to an instantiated NIC? */ | |
ffe6370c | 129 | int nvectors; |
87ecb68b PB |
130 | }; |
131 | ||
132 | extern int nb_nics; | |
133 | extern NICInfo nd_table[MAX_NICS]; | |
cb4522cc | 134 | extern int default_net; |
87ecb68b | 135 | |
1ae26a18 AZ |
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 | ||
63a01ef8 | 150 | /* from net.c */ |
ad196a9d JK |
151 | extern const char *legacy_tftp_prefix; |
152 | extern const char *legacy_bootp_filename; | |
153 | ||
4559a1db | 154 | int net_client_init(QemuOpts *opts, int is_netdev, Error **errp); |
7f161aae | 155 | int net_client_parse(QemuOptsList *opts_list, const char *str); |
dc1c9fe8 | 156 | int net_init_clients(void); |
668680f7 | 157 | void net_check_clients(void); |
63a01ef8 | 158 | void net_cleanup(void); |
f18c16de LC |
159 | void net_host_device_add(Monitor *mon, const QDict *qdict); |
160 | void net_host_device_remove(Monitor *mon, const QDict *qdict); | |
928059a3 LC |
161 | void netdev_add(QemuOpts *opts, Error **errp); |
162 | int qmp_netdev_add(Monitor *mon, const QDict *qdict, QObject **ret); | |
63a01ef8 | 163 | |
f54825cc AJ |
164 | #define DEFAULT_NETWORK_SCRIPT "/etc/qemu-ifup" |
165 | #define DEFAULT_NETWORK_DOWN_SCRIPT "/etc/qemu-ifdown" | |
a7c36ee4 CB |
166 | #define DEFAULT_BRIDGE_HELPER CONFIG_QEMU_HELPERDIR "/qemu-bridge-helper" |
167 | #define DEFAULT_BRIDGE_INTERFACE "br0" | |
f54825cc | 168 | |
ed16ab5a | 169 | void qdev_set_nic_properties(DeviceState *dev, NICInfo *nd); |
9d07d757 | 170 | |
7fc8d918 JW |
171 | #define POLYNOMIAL 0x04c11db6 |
172 | unsigned compute_mcast_idx(const uint8_t *ep); | |
173 | ||
701a8f76 PB |
174 | #define vmstate_offset_macaddr(_state, _field) \ |
175 | vmstate_offset_array(_state, _field.a, uint8_t, \ | |
176 | sizeof(typeof_field(_state, _field))) | |
177 | ||
178 | #define VMSTATE_MACADDR(_field, _state) { \ | |
179 | .name = (stringify(_field)), \ | |
180 | .size = sizeof(MACAddr), \ | |
181 | .info = &vmstate_info_buffer, \ | |
182 | .flags = VMS_BUFFER, \ | |
183 | .offset = vmstate_offset_macaddr(_state, _field), \ | |
184 | } | |
185 | ||
87ecb68b | 186 | #endif |