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.
6 * The V3VEE Project is a joint project between Northwestern University
7 * and the University of New Mexico. You can find out more at
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.
15 * Author: Lei Xia <lxia@northwestern.edu>
16 * Yuan Tang <ytang@northwestern.edu>
18 * This is free software. You are permitted to use,
19 * redistribute, and modify it as specified in the file "V3VEE_LICENSE".
25 #include <palacios/vmm.h>
26 #include <palacios/vmm_ethernet.h>
35 #define LINK_INTERFACE 11
39 #define VNET_HASH_SIZE 17
42 struct v3_vnet_route {
43 uint8_t src_mac[ETH_ALEN];
44 uint8_t dst_mac[ETH_ALEN];
54 } __attribute__((packed));
64 * IMPORTANT The next three fields must be grouped and packed together
65 * They are used to generate a hash value
68 uint8_t hash_buf[VNET_HASH_SIZE];
72 uint8_t header[ETHERNET_HEADER_LEN];
74 } __attribute__((packed));
75 } __attribute__((packed));
76 } __attribute__((packed));
87 struct v3_vnet_bridge_ops {
88 int (*input)(struct v3_vm_info * vm,
89 struct v3_vnet_pkt * pkt,
91 void (*poll)(struct v3_vm_info * vm,
95 #define HOST_LNX_BRIDGE 1
96 #define CTL_VM_BRIDGE 2
98 int v3_vnet_add_bridge(struct v3_vm_info * vm,
99 struct v3_vnet_bridge_ops * ops,
102 int v3_vnet_add_route(struct v3_vnet_route route);
103 int v3_vnet_send_pkt(struct v3_vnet_pkt * pkt, void * private_data);
104 int v3_vnet_find_dev(uint8_t * mac);
105 int v3_vnet_stat(struct vnet_stat * stats);
109 struct v3_vnet_dev_ops {
110 int (*input)(struct v3_vm_info * vm,
111 struct v3_vnet_pkt * pkt,
113 void (*poll) (struct v3_vm_info * vm, int budget, void * dev_data);
116 int v3_init_vnet(void);
117 void v3_deinit_vnet(void);
119 void v3_vnet_do_poll(struct v3_vm_info * vm);
121 int v3_vnet_add_dev(struct v3_vm_info * info, uint8_t * mac,
122 struct v3_vnet_dev_ops * ops,
124 int v3_vnet_del_dev(int dev_id);