Palacios Public Git Repository

To checkout Palacios execute

  git clone http://v3vee.org/palacios/palacios.web/palacios.git
This will give you the master branch. You probably want the devel branch or one of the release branches. To switch to the devel branch, simply execute
  cd palacios
  git checkout --track -b devel origin/devel
The other branches are similar.


Merge branch 'devel' of palacios@newskysaw.cs.northwestern.edu:/home/palacios/palacio...
[palacios.git] / palacios / include / vnet / vnet.h
1 /* 
2  * This file is part of the Palacios Virtual Machine Monitor developed
3  * by the V3VEE Project with funding from the United States National 
4  * Science Foundation and the Department of Energy.  
5  *
6  * The V3VEE Project is a joint project between Northwestern University
7  * and the University of New Mexico.  You can find out more at 
8  * http://www.v3vee.org
9  *
10  * Copyright (c) 2010, Lei Xia <lxia@northwestern.edu> 
11  * Copyright (c) 2009, Yuan Tang <ytang@northwestern.edu> 
12  * Copyright (c) 2010, The V3VEE Project <http://www.v3vee.org> 
13  * All rights reserved.
14  *
15  * Author: Lei Xia <lxia@northwestern.edu>
16  *                Yuan Tang <ytang@northwestern.edu>
17  *
18  * This is free software.  You are permitted to use,
19  * redistribute, and modify it as specified in the file "V3VEE_LICENSE".
20  */
21
22 #ifndef __VNET_CORE_H__
23 #define __VNET_CORE_H__
24
25 #include <palacios/vmm.h>
26 #include <palacios/vmm_ethernet.h>
27
28 #define MAC_NOSET       0
29 #define MAC_ANY         11
30 #define MAC_NOT         12
31 #define MAC_NONE        13 
32 #define MAC_ADDR        14
33
34 #define LINK_NOSET      0
35 #define LINK_INTERFACE  11
36 #define LINK_EDGE       12 
37 #define LINK_ANY        13
38
39 #define VNET_HASH_SIZE  17
40
41 extern int v3_vnet_debug;
42
43 struct v3_vnet_route {
44     uint8_t src_mac[ETH_ALEN];
45     uint8_t dst_mac[ETH_ALEN];
46
47     uint8_t src_mac_qual;
48     uint8_t dst_mac_qual;
49
50     int dst_id;
51     uint8_t dst_type;
52  
53     int src_id;
54     uint8_t src_type;
55 } __attribute__((packed));
56
57
58 struct v3_vnet_pkt {
59     uint32_t size; 
60     
61     uint8_t dst_type;
62     uint32_t dst_id;
63
64     /*
65      * IMPORTANT The next three fields must be grouped and packed together
66      *  They are used to generate a hash value 
67      */
68     union {
69         uint8_t hash_buf[VNET_HASH_SIZE];
70         struct {
71             uint8_t src_type;
72             uint32_t src_id;
73             uint8_t header[ETHERNET_HEADER_LEN];
74             uint8_t * data;
75         } __attribute__((packed));
76     } __attribute__((packed));
77 } __attribute__((packed));
78
79
80 struct vnet_stat{
81     uint64_t tx_bytes;
82     uint32_t tx_pkts;
83     uint64_t rx_bytes;
84     uint32_t rx_pkts;
85 };
86
87
88 struct v3_vnet_bridge_ops {
89     int (*input)(struct v3_vm_info * vm, 
90                 struct v3_vnet_pkt * pkt,
91                 void * private_data);
92     void (*poll)(struct v3_vm_info * vm,  
93                 void * private_data);
94 };
95
96 #define HOST_LNX_BRIDGE 1
97 #define CTL_VM_BRIDGE   2
98
99 int v3_vnet_add_bridge(struct v3_vm_info * vm,
100                 struct v3_vnet_bridge_ops * ops,
101                 uint8_t type,
102                 void * priv_data);
103 int v3_vnet_add_route(struct v3_vnet_route route);
104 int v3_vnet_send_pkt(struct v3_vnet_pkt * pkt, void * private_data, int synchronize);
105 int v3_vnet_find_dev(uint8_t  * mac);
106 int v3_vnet_stat(struct vnet_stat * stats);
107
108 #ifdef __V3VEE__
109
110 struct v3_vnet_dev_ops {
111     int (*input)(struct v3_vm_info * vm, 
112                 struct v3_vnet_pkt * pkt, 
113                 void * dev_data);
114 };
115
116 int v3_init_vnet(void); 
117 void v3_deinit_vnet(void);
118
119 int v3_vnet_add_dev(struct v3_vm_info * info, uint8_t * mac, 
120                     struct v3_vnet_dev_ops * ops,
121                     void * priv_data);
122 int v3_vnet_del_dev(int dev_id);
123
124
125 #endif
126
127 #endif
128
129