blob: 1a51be79831a96ec52ddb110b951b50794bbbedc [file] [log] [blame]
pbrook87ecb682007-11-17 17:14:51 +00001#ifndef QEMU_NET_H
2#define QEMU_NET_H
3
aliguorifbe78f42008-12-17 19:13:11 +00004#include "qemu-common.h"
5
pbrook87ecb682007-11-17 17:14:51 +00006/* VLANs support */
7
aliguorifbe78f42008-12-17 19:13:11 +00008typedef ssize_t (IOReadvHandler)(void *, const struct iovec *, int);
9
pbrook87ecb682007-11-17 17:14:51 +000010typedef struct VLANClientState VLANClientState;
11
aliguori34b25ca2009-01-08 19:45:03 +000012typedef void (LinkStatusChanged)(VLANClientState *);
13
pbrook87ecb682007-11-17 17:14:51 +000014struct VLANClientState {
15 IOReadHandler *fd_read;
aliguorifbe78f42008-12-17 19:13:11 +000016 IOReadvHandler *fd_readv;
pbrook87ecb682007-11-17 17:14:51 +000017 /* Packets may still be sent if this returns zero. It's used to
18 rate-limit the slirp code. */
19 IOCanRWHandler *fd_can_read;
aliguori34b25ca2009-01-08 19:45:03 +000020 LinkStatusChanged *link_status_changed;
aliguori436e5e52009-01-08 19:44:06 +000021 int link_down;
pbrook87ecb682007-11-17 17:14:51 +000022 void *opaque;
23 struct VLANClientState *next;
24 struct VLANState *vlan;
aliguoribf38c1a2009-01-07 17:42:25 +000025 char *model;
aliguori676cff22009-01-07 17:43:44 +000026 char *name;
pbrook87ecb682007-11-17 17:14:51 +000027 char info_str[256];
28};
29
30struct VLANState {
31 int id;
32 VLANClientState *first_client;
33 struct VLANState *next;
34 unsigned int nb_guest_devs, nb_host_devs;
35};
36
37VLANState *qemu_find_vlan(int id);
38VLANClientState *qemu_new_vlan_client(VLANState *vlan,
aliguoribf38c1a2009-01-07 17:42:25 +000039 const char *model,
aliguori7a9f6e42009-01-07 17:48:51 +000040 const char *name,
pbrook87ecb682007-11-17 17:14:51 +000041 IOReadHandler *fd_read,
42 IOCanRWHandler *fd_can_read,
43 void *opaque);
balrogdcf414d2008-07-17 21:00:05 +000044void qemu_del_vlan_client(VLANClientState *vc);
aliguori8b13c4a2009-02-11 15:20:51 +000045VLANClientState *qemu_find_vlan_client(VLANState *vlan, void *opaque);
pbrook87ecb682007-11-17 17:14:51 +000046int qemu_can_send_packet(VLANClientState *vc);
aliguorifbe78f42008-12-17 19:13:11 +000047ssize_t qemu_sendv_packet(VLANClientState *vc, const struct iovec *iov,
48 int iovcnt);
pbrook87ecb682007-11-17 17:14:51 +000049void qemu_send_packet(VLANClientState *vc, const uint8_t *buf, int size);
aliguori7cb74342009-01-07 17:46:21 +000050void qemu_format_nic_info_str(VLANClientState *vc, uint8_t macaddr[6]);
aliguorid07f22c2009-01-13 19:03:57 +000051void qemu_check_nic_model(NICInfo *nd, const char *model);
52void qemu_check_nic_model_list(NICInfo *nd, const char * const *models,
53 const char *default_model);
pbrook87ecb682007-11-17 17:14:51 +000054void qemu_handler_true(void *opaque);
55
aliguori376253e2009-03-05 23:01:23 +000056void do_info_network(Monitor *mon);
57int do_set_link(Monitor *mon, const char *name, const char *up_or_down);
pbrook87ecb682007-11-17 17:14:51 +000058
59/* NIC info */
60
61#define MAX_NICS 8
62
63struct NICInfo {
64 uint8_t macaddr[6];
65 const char *model;
aliguori7a9f6e42009-01-07 17:48:51 +000066 const char *name;
pbrook87ecb682007-11-17 17:14:51 +000067 VLANState *vlan;
aliguori72da4202009-02-11 15:19:52 +000068 void *private;
aliguori76970792009-02-11 15:20:03 +000069 int used;
pbrook87ecb682007-11-17 17:14:51 +000070};
71
72extern int nb_nics;
73extern NICInfo nd_table[MAX_NICS];
74
balrog1ae26a12008-09-28 23:19:47 +000075/* BT HCI info */
76
77struct HCIInfo {
78 int (*bdaddr_set)(struct HCIInfo *hci, const uint8_t *bd_addr);
79 void (*cmd_send)(struct HCIInfo *hci, const uint8_t *data, int len);
80 void (*sco_send)(struct HCIInfo *hci, const uint8_t *data, int len);
81 void (*acl_send)(struct HCIInfo *hci, const uint8_t *data, int len);
82 void *opaque;
83 void (*evt_recv)(void *opaque, const uint8_t *data, int len);
84 void (*acl_recv)(void *opaque, const uint8_t *data, int len);
85};
86
87struct HCIInfo *qemu_next_hci(void);
88
aliguori48c64362008-07-29 19:40:04 +000089/* checksumming functions (net-checksum.c) */
90uint32_t net_checksum_add(int len, uint8_t *buf);
91uint16_t net_checksum_finish(uint32_t sum);
92uint16_t net_checksum_tcpudp(uint16_t length, uint16_t proto,
93 uint8_t *addrs, uint8_t *buf);
94void net_checksum_calculate(uint8_t *data, int length);
95
aliguori63a01ef2008-10-31 19:10:00 +000096/* from net.c */
97int net_client_init(const char *device, const char *p);
aliguori8b13c4a2009-02-11 15:20:51 +000098void net_client_uninit(NICInfo *nd);
aliguori63a01ef2008-10-31 19:10:00 +000099int net_client_parse(const char *str);
100void net_slirp_smb(const char *exported_dir);
101void net_slirp_redir(const char *redir_str);
102void net_cleanup(void);
103int slirp_is_inited(void);
104void net_client_check(void);
aliguori376253e2009-03-05 23:01:23 +0000105void net_host_device_add(Monitor *mon, const char *device, const char *opts);
106void net_host_device_remove(Monitor *mon, int vlan_id, const char *device);
aliguori63a01ef2008-10-31 19:10:00 +0000107
aurel32f54825c2008-12-18 22:43:48 +0000108#define DEFAULT_NETWORK_SCRIPT "/etc/qemu-ifup"
109#define DEFAULT_NETWORK_DOWN_SCRIPT "/etc/qemu-ifdown"
110#ifdef __sun__
111#define SMBD_COMMAND "/usr/sfw/sbin/smbd"
112#else
113#define SMBD_COMMAND "/usr/sbin/smbd"
114#endif
115
pbrook87ecb682007-11-17 17:14:51 +0000116#endif