a2c6a501d14f47dcce0d0932dfc9adeb1aa137bd
[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 struct VLANClientState {
13     IOReadHandler *fd_read;
14     IOReadvHandler *fd_readv;
15     /* Packets may still be sent if this returns zero.  It's used to
16        rate-limit the slirp code.  */
17     IOCanRWHandler *fd_can_read;
18     void *opaque;
19     struct VLANClientState *next;
20     struct VLANState *vlan;
21     char *model;
22     char info_str[256];
23 };
24
25 struct VLANState {
26     int id;
27     VLANClientState *first_client;
28     struct VLANState *next;
29     unsigned int nb_guest_devs, nb_host_devs;
30 };
31
32 VLANState *qemu_find_vlan(int id);
33 VLANClientState *qemu_new_vlan_client(VLANState *vlan,
34                                       const char *model,
35                                       IOReadHandler *fd_read,
36                                       IOCanRWHandler *fd_can_read,
37                                       void *opaque);
38 void qemu_del_vlan_client(VLANClientState *vc);
39 int qemu_can_send_packet(VLANClientState *vc);
40 ssize_t qemu_sendv_packet(VLANClientState *vc, const struct iovec *iov,
41                           int iovcnt);
42 void qemu_send_packet(VLANClientState *vc, const uint8_t *buf, int size);
43 void qemu_handler_true(void *opaque);
44
45 void do_info_network(void);
46
47 /* NIC info */
48
49 #define MAX_NICS 8
50
51 struct NICInfo {
52     uint8_t macaddr[6];
53     const char *model;
54     VLANState *vlan;
55 };
56
57 extern int nb_nics;
58 extern NICInfo nd_table[MAX_NICS];
59
60 /* BT HCI info */
61
62 struct HCIInfo {
63     int (*bdaddr_set)(struct HCIInfo *hci, const uint8_t *bd_addr);
64     void (*cmd_send)(struct HCIInfo *hci, const uint8_t *data, int len);
65     void (*sco_send)(struct HCIInfo *hci, const uint8_t *data, int len);
66     void (*acl_send)(struct HCIInfo *hci, const uint8_t *data, int len);
67     void *opaque;
68     void (*evt_recv)(void *opaque, const uint8_t *data, int len);
69     void (*acl_recv)(void *opaque, const uint8_t *data, int len);
70 };
71
72 struct HCIInfo *qemu_next_hci(void);
73
74 /* checksumming functions (net-checksum.c) */
75 uint32_t net_checksum_add(int len, uint8_t *buf);
76 uint16_t net_checksum_finish(uint32_t sum);
77 uint16_t net_checksum_tcpudp(uint16_t length, uint16_t proto,
78                              uint8_t *addrs, uint8_t *buf);
79 void net_checksum_calculate(uint8_t *data, int length);
80
81 /* from net.c */
82 int net_client_init(const char *device, const char *p);
83 int net_client_parse(const char *str);
84 void net_slirp_smb(const char *exported_dir);
85 void net_slirp_redir(const char *redir_str);
86 void net_cleanup(void);
87 int slirp_is_inited(void);
88 void net_client_check(void);
89
90 #define DEFAULT_NETWORK_SCRIPT "/etc/qemu-ifup"
91 #define DEFAULT_NETWORK_DOWN_SCRIPT "/etc/qemu-ifdown"
92 #ifdef __sun__
93 #define SMBD_COMMAND "/usr/sfw/sbin/smbd"
94 #else
95 #define SMBD_COMMAND "/usr/sbin/smbd"
96 #endif
97
98 #endif