Introduce VLANClientState::cleanup() (Mark McLoughlin)
[qemu] / net.h
1 #ifndef QEMU_NET_H
2 #define QEMU_NET_H
3
4 #include "qemu-common.h"
5
6 /* VLANs support */
7
8 typedef ssize_t (IOReadvHandler)(void *, const struct iovec *, int);
9
10 typedef struct VLANClientState VLANClientState;
11
12 typedef void (NetCleanup) (VLANClientState *);
13 typedef void (LinkStatusChanged)(VLANClientState *);
14
15 struct VLANClientState {
16     IOReadHandler *fd_read;
17     IOReadvHandler *fd_readv;
18     /* Packets may still be sent if this returns zero.  It's used to
19        rate-limit the slirp code.  */
20     IOCanRWHandler *fd_can_read;
21     NetCleanup *cleanup;
22     LinkStatusChanged *link_status_changed;
23     int link_down;
24     void *opaque;
25     struct VLANClientState *next;
26     struct VLANState *vlan;
27     char *model;
28     char *name;
29     char info_str[256];
30 };
31
32 struct VLANState {
33     int id;
34     VLANClientState *first_client;
35     struct VLANState *next;
36     unsigned int nb_guest_devs, nb_host_devs;
37 };
38
39 VLANState *qemu_find_vlan(int id);
40 VLANClientState *qemu_new_vlan_client(VLANState *vlan,
41                                       const char *model,
42                                       const char *name,
43                                       IOReadHandler *fd_read,
44                                       IOCanRWHandler *fd_can_read,
45                                       NetCleanup *cleanup,
46                                       void *opaque);
47 void qemu_del_vlan_client(VLANClientState *vc);
48 VLANClientState *qemu_find_vlan_client(VLANState *vlan, void *opaque);
49 int qemu_can_send_packet(VLANClientState *vc);
50 ssize_t qemu_sendv_packet(VLANClientState *vc, const struct iovec *iov,
51                           int iovcnt);
52 void qemu_send_packet(VLANClientState *vc, const uint8_t *buf, int size);
53 void qemu_format_nic_info_str(VLANClientState *vc, uint8_t macaddr[6]);
54 void qemu_check_nic_model(NICInfo *nd, const char *model);
55 void qemu_check_nic_model_list(NICInfo *nd, const char * const *models,
56                                const char *default_model);
57 void qemu_handler_true(void *opaque);
58
59 void do_info_network(Monitor *mon);
60 int do_set_link(Monitor *mon, const char *name, const char *up_or_down);
61
62 /* NIC info */
63
64 #define MAX_NICS 8
65
66 struct NICInfo {
67     uint8_t macaddr[6];
68     const char *model;
69     const char *name;
70     VLANState *vlan;
71     void *private;
72     int used;
73 };
74
75 extern int nb_nics;
76 extern NICInfo nd_table[MAX_NICS];
77
78 /* BT HCI info */
79
80 struct HCIInfo {
81     int (*bdaddr_set)(struct HCIInfo *hci, const uint8_t *bd_addr);
82     void (*cmd_send)(struct HCIInfo *hci, const uint8_t *data, int len);
83     void (*sco_send)(struct HCIInfo *hci, const uint8_t *data, int len);
84     void (*acl_send)(struct HCIInfo *hci, const uint8_t *data, int len);
85     void *opaque;
86     void (*evt_recv)(void *opaque, const uint8_t *data, int len);
87     void (*acl_recv)(void *opaque, const uint8_t *data, int len);
88 };
89
90 struct HCIInfo *qemu_next_hci(void);
91
92 /* checksumming functions (net-checksum.c) */
93 uint32_t net_checksum_add(int len, uint8_t *buf);
94 uint16_t net_checksum_finish(uint32_t sum);
95 uint16_t net_checksum_tcpudp(uint16_t length, uint16_t proto,
96                              uint8_t *addrs, uint8_t *buf);
97 void net_checksum_calculate(uint8_t *data, int length);
98
99 /* from net.c */
100 int net_client_init(const char *device, const char *p);
101 void net_client_uninit(NICInfo *nd);
102 int net_client_parse(const char *str);
103 void net_slirp_smb(const char *exported_dir);
104 void net_slirp_redir(const char *redir_str);
105 void net_cleanup(void);
106 int slirp_is_inited(void);
107 void net_client_check(void);
108 void net_host_device_add(Monitor *mon, const char *device, const char *opts);
109 void net_host_device_remove(Monitor *mon, int vlan_id, const char *device);
110
111 #define DEFAULT_NETWORK_SCRIPT "/etc/qemu-ifup"
112 #define DEFAULT_NETWORK_DOWN_SCRIPT "/etc/qemu-ifdown"
113 #ifdef __sun__
114 #define SMBD_COMMAND "/usr/sfw/sbin/smbd"
115 #else
116 #define SMBD_COMMAND "/usr/sbin/smbd"
117 #endif
118
119 #endif