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