|
1
2
3
|
#ifndef QEMU_NET_H
#define QEMU_NET_H
|
|
4
5
|
#include "qemu-common.h"
|
|
6
7
8
9
|
/* VLANs support */
typedef struct VLANClientState VLANClientState;
|
|
10
|
typedef int (NetCanReceive)(VLANClientState *);
|
|
11
|
typedef ssize_t (NetReceive)(VLANClientState *, const uint8_t *, size_t);
|
|
12
|
typedef ssize_t (NetReceiveIOV)(VLANClientState *, const struct iovec *, int);
|
|
13
|
typedef void (NetCleanup) (VLANClientState *);
|
|
14
15
|
typedef void (LinkStatusChanged)(VLANClientState *);
|
|
16
|
struct VLANClientState {
|
|
17
18
|
NetReceive *receive;
NetReceiveIOV *receive_iov;
|
|
19
20
|
/* Packets may still be sent if this returns zero. It's used to
rate-limit the slirp code. */
|
|
21
|
NetCanReceive *can_receive;
|
|
22
|
NetCleanup *cleanup;
|
|
23
|
LinkStatusChanged *link_status_changed;
|
|
24
|
int link_down;
|
|
25
26
27
|
void *opaque;
struct VLANClientState *next;
struct VLANState *vlan;
|
|
28
|
char *model;
|
|
29
|
char *name;
|
|
30
31
32
|
char info_str[256];
};
|
|
33
34
|
typedef struct VLANPacket VLANPacket;
|
|
35
|
typedef void (NetPacketSent) (VLANClientState *, ssize_t);
|
|
36
|
|
|
37
38
39
40
|
struct VLANPacket {
struct VLANPacket *next;
VLANClientState *sender;
int size;
|
|
41
|
NetPacketSent *sent_cb;
|
|
42
43
44
|
uint8_t data[0];
};
|
|
45
46
47
48
49
|
struct VLANState {
int id;
VLANClientState *first_client;
struct VLANState *next;
unsigned int nb_guest_devs, nb_host_devs;
|
|
50
51
|
VLANPacket *send_queue;
int delivering;
|
|
52
53
|
};
|
|
54
|
VLANState *qemu_find_vlan(int id, int allocate);
|
|
55
|
VLANClientState *qemu_new_vlan_client(VLANState *vlan,
|
|
56
|
const char *model,
|
|
57
|
const char *name,
|
|
58
59
60
|
NetCanReceive *can_receive,
NetReceive *receive,
NetReceiveIOV *receive_iov,
|
|
61
|
NetCleanup *cleanup,
|
|
62
|
void *opaque);
|
|
63
|
void qemu_del_vlan_client(VLANClientState *vc);
|
|
64
|
VLANClientState *qemu_find_vlan_client(VLANState *vlan, void *opaque);
|
|
65
|
int qemu_can_send_packet(VLANClientState *vc);
|
|
66
67
|
ssize_t qemu_sendv_packet(VLANClientState *vc, const struct iovec *iov,
int iovcnt);
|
|
68
69
|
ssize_t qemu_sendv_packet_async(VLANClientState *vc, const struct iovec *iov,
int iovcnt, NetPacketSent *sent_cb);
|
|
70
|
void qemu_send_packet(VLANClientState *vc, const uint8_t *buf, int size);
|
|
71
72
|
ssize_t qemu_send_packet_async(VLANClientState *vc, const uint8_t *buf,
int size, NetPacketSent *sent_cb);
|
|
73
|
void qemu_purge_queued_packets(VLANClientState *vc);
|
|
74
|
void qemu_flush_queued_packets(VLANClientState *vc);
|
|
75
|
void qemu_format_nic_info_str(VLANClientState *vc, uint8_t macaddr[6]);
|
|
76
77
78
|
void qemu_check_nic_model(NICInfo *nd, const char *model);
void qemu_check_nic_model_list(NICInfo *nd, const char * const *models,
const char *default_model);
|
|
79
80
|
void qemu_handler_true(void *opaque);
|
|
81
82
|
void do_info_network(Monitor *mon);
int do_set_link(Monitor *mon, const char *name, const char *up_or_down);
|
|
83
|
|
|
84
85
|
void do_info_usernet(Monitor *mon);
|
|
86
87
88
|
/* NIC info */
#define MAX_NICS 8
|
|
89
90
91
|
enum {
NIC_NVECTORS_UNSPECIFIED = -1
};
|
|
92
93
94
95
|
struct NICInfo {
uint8_t macaddr[6];
const char *model;
|
|
96
|
const char *name;
|
|
97
|
const char *devaddr;
|
|
98
|
const char *id;
|
|
99
|
VLANState *vlan;
|
|
100
|
VLANClientState *vc;
|
|
101
|
void *private;
|
|
102
|
int used;
|
|
103
|
int bootable;
|
|
104
|
int nvectors;
|
|
105
106
107
108
109
|
};
extern int nb_nics;
extern NICInfo nd_table[MAX_NICS];
|
|
110
111
112
113
114
115
116
117
118
119
120
121
122
123
|
/* BT HCI info */
struct HCIInfo {
int (*bdaddr_set)(struct HCIInfo *hci, const uint8_t *bd_addr);
void (*cmd_send)(struct HCIInfo *hci, const uint8_t *data, int len);
void (*sco_send)(struct HCIInfo *hci, const uint8_t *data, int len);
void (*acl_send)(struct HCIInfo *hci, const uint8_t *data, int len);
void *opaque;
void (*evt_recv)(void *opaque, const uint8_t *data, int len);
void (*acl_recv)(void *opaque, const uint8_t *data, int len);
};
struct HCIInfo *qemu_next_hci(void);
|
|
124
125
126
127
128
129
130
|
/* checksumming functions (net-checksum.c) */
uint32_t net_checksum_add(int len, uint8_t *buf);
uint16_t net_checksum_finish(uint32_t sum);
uint16_t net_checksum_tcpudp(uint16_t length, uint16_t proto,
uint8_t *addrs, uint8_t *buf);
void net_checksum_calculate(uint8_t *data, int length);
|
|
131
|
/* from net.c */
|
|
132
133
134
|
extern const char *legacy_tftp_prefix;
extern const char *legacy_bootp_filename;
|
|
135
|
int net_client_init(Monitor *mon, const char *device, const char *p);
|
|
136
|
void net_client_uninit(NICInfo *nd);
|
|
137
138
|
int net_client_parse(const char *str);
void net_slirp_smb(const char *exported_dir);
|
|
139
140
141
142
|
void net_slirp_hostfwd_add(Monitor *mon, const char *arg1,
const char *arg2, const char *arg3);
void net_slirp_hostfwd_remove(Monitor *mon, const char *arg1,
const char *arg2, const char *arg3);
|
|
143
|
void net_slirp_redir(const char *redir_str);
|
|
144
145
|
void net_cleanup(void);
void net_client_check(void);
|
|
146
|
void net_set_boot_mask(int boot_mask);
|
|
147
148
|
void net_host_device_add(Monitor *mon, const char *device, const char *opts);
void net_host_device_remove(Monitor *mon, int vlan_id, const char *device);
|
|
149
|
|
|
150
151
152
153
154
155
156
157
|
#define DEFAULT_NETWORK_SCRIPT "/etc/qemu-ifup"
#define DEFAULT_NETWORK_DOWN_SCRIPT "/etc/qemu-ifdown"
#ifdef __sun__
#define SMBD_COMMAND "/usr/sfw/sbin/smbd"
#else
#define SMBD_COMMAND "/usr/sbin/smbd"
#endif
|
|
158
159
|
void qdev_get_macaddr(DeviceState *dev, uint8_t *macaddr);
VLANClientState *qdev_get_vlan_client(DeviceState *dev,
|
|
160
161
162
|
NetCanReceive *can_receive,
NetReceive *receive,
NetReceiveIOV *receive_iov,
|
|
163
164
165
|
NetCleanup *cleanup,
void *opaque);
|
|
166
|
#endif
|