Statistics
| Branch: | Revision:

root / net.h @ 7cb7434b

History | View | Annotate | Download (2.9 kB)

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 *name;
23
    char info_str[256];
24
};
25

    
26
struct VLANState {
27
    int id;
28
    VLANClientState *first_client;
29
    struct VLANState *next;
30
    unsigned int nb_guest_devs, nb_host_devs;
31
};
32

    
33
VLANState *qemu_find_vlan(int id);
34
VLANClientState *qemu_new_vlan_client(VLANState *vlan,
35
                                      const char *model,
36
                                      IOReadHandler *fd_read,
37
                                      IOCanRWHandler *fd_can_read,
38
                                      void *opaque);
39
void qemu_del_vlan_client(VLANClientState *vc);
40
int qemu_can_send_packet(VLANClientState *vc);
41
ssize_t qemu_sendv_packet(VLANClientState *vc, const struct iovec *iov,
42
                          int iovcnt);
43
void qemu_send_packet(VLANClientState *vc, const uint8_t *buf, int size);
44
void qemu_format_nic_info_str(VLANClientState *vc, uint8_t macaddr[6]);
45
void qemu_handler_true(void *opaque);
46

    
47
void do_info_network(void);
48

    
49
/* NIC info */
50

    
51
#define MAX_NICS 8
52

    
53
struct NICInfo {
54
    uint8_t macaddr[6];
55
    const char *model;
56
    VLANState *vlan;
57
};
58

    
59
extern int nb_nics;
60
extern NICInfo nd_table[MAX_NICS];
61

    
62
/* BT HCI info */
63

    
64
struct HCIInfo {
65
    int (*bdaddr_set)(struct HCIInfo *hci, const uint8_t *bd_addr);
66
    void (*cmd_send)(struct HCIInfo *hci, const uint8_t *data, int len);
67
    void (*sco_send)(struct HCIInfo *hci, const uint8_t *data, int len);
68
    void (*acl_send)(struct HCIInfo *hci, const uint8_t *data, int len);
69
    void *opaque;
70
    void (*evt_recv)(void *opaque, const uint8_t *data, int len);
71
    void (*acl_recv)(void *opaque, const uint8_t *data, int len);
72
};
73

    
74
struct HCIInfo *qemu_next_hci(void);
75

    
76
/* checksumming functions (net-checksum.c) */
77
uint32_t net_checksum_add(int len, uint8_t *buf);
78
uint16_t net_checksum_finish(uint32_t sum);
79
uint16_t net_checksum_tcpudp(uint16_t length, uint16_t proto,
80
                             uint8_t *addrs, uint8_t *buf);
81
void net_checksum_calculate(uint8_t *data, int length);
82

    
83
/* from net.c */
84
int net_client_init(const char *device, const char *p);
85
int net_client_parse(const char *str);
86
void net_slirp_smb(const char *exported_dir);
87
void net_slirp_redir(const char *redir_str);
88
void net_cleanup(void);
89
int slirp_is_inited(void);
90
void net_client_check(void);
91

    
92
#define DEFAULT_NETWORK_SCRIPT "/etc/qemu-ifup"
93
#define DEFAULT_NETWORK_DOWN_SCRIPT "/etc/qemu-ifdown"
94
#ifdef __sun__
95
#define SMBD_COMMAND "/usr/sfw/sbin/smbd"
96
#else
97
#define SMBD_COMMAND "/usr/sbin/smbd"
98
#endif
99

    
100
#endif