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.


symbiotic updates for module loading
[palacios.git] / palacios / src / devices / lnx_virtio_vnet.c
index 8282477..4de1ab8 100644 (file)
 #include <palacios/vm_guest_mem.h>
 #include <devices/lnx_virtio_pci.h>
 #include <palacios/vmm_vnet.h>
+#include <palacios/vmm_sprintf.h>
 #include <devices/pci.h>
 
 
+#ifndef CONFIG_LINUX_VIRTIO_VNET_DEBUG
+#undef PrintDebug
+#define PrintDebug(fmt, args...)
+#endif
+
+
 #define QUEUE_SIZE 128
 #define NUM_QUEUES 3
 
@@ -34,25 +41,24 @@ struct vnet_config {
 } __attribute__((packed));
 
 
+#define CTRL_QUEUE 0
+#define XMIT_QUEUE 1
+#define RECV_QUEUE 2
 
 struct virtio_vnet_state {
+    struct v3_vm_info * vm;
     struct vnet_config vnet_cfg;
     struct virtio_config virtio_cfg;
 
-
     struct vm_device * pci_bus;
     struct pci_device * pci_dev;
-
-
-#define CTRL_QUEUE 0
-#define RECV_QUEUE 1
-#define XMIT_QUEUE 2
+       
     struct virtio_queue queue[NUM_QUEUES];
 
     struct virtio_queue * cur_queue;
 
-
     int io_range_size;
+    v3_lock_t lock;
 };
 
 #define VNET_GET_ROUTES 10
@@ -69,21 +75,27 @@ struct vnet_ctrl_hdr {
     uint32_t num_cmds;
 } __attribute__((packed));
 
+struct vnet_virtio_pkt {
+    uint32_t link_id;
+    uint32_t pkt_size;
+    uint8_t pkt[1500];
+};
 
-static int virtio_reset(struct virtio_vnet_state * virtio) {
+static int virtio_reset(struct virtio_vnet_state * vnet_state) {
 
-    memset(virtio->queue, 0, sizeof(struct virtio_queue) * 2);
+    memset(vnet_state->queue, 0, sizeof(struct virtio_queue) * 2);
 
-    virtio->cur_queue = &(virtio->queue[0]);
+    vnet_state->cur_queue = &(vnet_state->queue[0]);
 
-    virtio->virtio_cfg.status = 0;
-    virtio->virtio_cfg.pci_isr = 0;
+    vnet_state->virtio_cfg.status = 0;
+    vnet_state->virtio_cfg.pci_isr = 0;
 
-    virtio->queue[0].queue_size = QUEUE_SIZE;
-    virtio->queue[1].queue_size = QUEUE_SIZE;
-    virtio->queue[2].queue_size = QUEUE_SIZE;
+    vnet_state->queue[0].queue_size = QUEUE_SIZE;
+    vnet_state->queue[1].queue_size = QUEUE_SIZE;
+    vnet_state->queue[2].queue_size = QUEUE_SIZE;
 
-    memset(&(virtio->vnet_cfg), 0, sizeof(struct vnet_config));
+    memset(&(vnet_state->vnet_cfg), 0, sizeof(struct vnet_config));
+    v3_lock_init(&(vnet_state->lock));
 
     return 0;
 }
@@ -108,9 +120,9 @@ static int get_desc_count(struct virtio_queue * q, int index) {
 static int handle_cmd_kick(struct guest_info * core, struct virtio_vnet_state * vnet_state) {
     struct virtio_queue * q = &(vnet_state->queue[0]);
     
-    PrintDebug("VirtioVNET: Virtio Kick on command  queue\n");
+    PrintDebug("VNET Bridge: Handling command  queue\n");
 
-    while (q->cur_avail_idx < q->avail->index) {
+    while (q->cur_avail_idx != q->avail->index) {
        struct vring_desc * hdr_desc = NULL;
        struct vring_desc * buf_desc = NULL;
        struct vring_desc * status_desc = NULL;
@@ -123,10 +135,10 @@ static int handle_cmd_kick(struct guest_info * core, struct virtio_vnet_state *
        uint8_t status = 0;
 
 
-       PrintDebug("Descriptor Count=%d, index=%d, desc_idx=%d\n", desc_cnt, q->cur_avail_idx % QUEUE_SIZE, desc_idx);
+       PrintDebug("VNET Bridge: CMD: Descriptor Count=%d, index=%d, desc_idx=%d\n", desc_cnt, q->cur_avail_idx % QUEUE_SIZE, desc_idx);
 
        if (desc_cnt < 3) {
-           PrintError("VirtioVNET cmd must include at least 3 descriptors (cnt=%d)\n", desc_cnt);
+           PrintError("VNET Bridge cmd must include at least 3 descriptors (cnt=%d)\n", desc_cnt);
            return -1;
        }
        
@@ -153,7 +165,7 @@ static int handle_cmd_kick(struct guest_info * core, struct virtio_vnet_state *
                }
 
                // add route
-               PrintDebug("Adding VNET Route\n");
+               PrintDebug("VNET Bridge: Adding VNET Route\n");
 
                tmp_status = v3_vnet_add_route(*route);
 
@@ -202,14 +214,117 @@ static int handle_cmd_kick(struct guest_info * core, struct virtio_vnet_state *
 }
 
 
+static int vnet_pkt_input_cb(struct v3_vm_info * vm,  struct v3_vnet_pkt * pkt,  void * private_data){
+    struct virtio_vnet_state * vnet_state = (struct virtio_vnet_state *)private_data;
+    struct virtio_queue * q = &(vnet_state->queue[RECV_QUEUE]);
+    int ret_val = -1;
+    unsigned long flags;
+
+    flags = v3_lock_irqsave(vnet_state->lock);
+       
+    PrintDebug("VNET Bridge: RX: pkt sent to guest size: %d\n, pkt_header_len: %d\n", data_len, pkt_head_len);
+
+    if (q->ring_avail_addr == 0) {
+       PrintError("Queue is not set\n");
+       goto exit;
+    }
+
+
+    if (q->cur_avail_idx != q->avail->index) {
+       uint16_t pkt_idx = q->avail->ring[q->cur_avail_idx % q->queue_size];
+       struct vring_desc * pkt_desc = NULL;
+       struct vnet_virtio_pkt * virtio_pkt = NULL;
+
+
+       pkt_desc = &(q->desc[pkt_idx]);
+       PrintDebug("VNET Bridge RX: buffer desc len: %d\n", pkt_desc->length);
+
+       if (guest_pa_to_host_va(&(vm->cores[0]), pkt_desc->addr_gpa, (addr_t *)&(virtio_pkt)) == -1) {
+           PrintError("Could not translate buffer address\n");
+           return -1;
+       }
+
+       // Fill in dst packet buffer
+       virtio_pkt->link_id = pkt->dst_id;
+       virtio_pkt->pkt_size = pkt->size;
+       memcpy(virtio_pkt->pkt, pkt->data, pkt->size);
+
+       
+       q->used->ring[q->used->index % q->queue_size].id = q->avail->ring[q->cur_avail_idx % q->queue_size];
+       q->used->ring[q->used->index % q->queue_size].length = sizeof(struct vnet_virtio_pkt); // This should be the total length of data sent to guest (header+pkt_data)
+
+       q->used->index++;
+       q->cur_avail_idx++;
+    } else {
+       PrintError("Packet buffer overflow in the guest\n");
+    }
+
+    if (!(q->avail->flags & VIRTIO_NO_IRQ_FLAG)) {
+       v3_pci_raise_irq(vnet_state->pci_bus, 0, vnet_state->pci_dev);
+       vnet_state->virtio_cfg.pci_isr = 0x1;
+       PrintDebug("Raising IRQ %d\n",  vnet_state->pci_dev->config_header.intr_line);
+    }
+
+
+    ret_val = 0;
+
+exit:
+    v3_unlock_irqrestore(vnet_state->lock, flags);
+    return ret_val;
+}
+
+
+static int handle_pkt_kick(struct guest_info *core, struct virtio_vnet_state * vnet_state) 
+{
+    struct virtio_queue * q = &(vnet_state->queue[XMIT_QUEUE]);
+
+    PrintDebug("VNET Bridge Device: Handle TX\n");
+
+    while (q->cur_avail_idx != q->avail->index) {
+       uint16_t desc_idx = q->avail->ring[q->cur_avail_idx % q->queue_size];
+       struct vring_desc * pkt_desc = NULL;
+       struct vnet_virtio_pkt * virtio_pkt = NULL;
+
+       pkt_desc = &(q->desc[desc_idx]);
+
+       PrintDebug("VNET Bridge: Handle TX buf_len: %d\n", pkt_desc->length);
+
+       if (guest_pa_to_host_va(core, pkt_desc->addr_gpa, (addr_t *)&(virtio_pkt)) == -1) {
+           PrintError("Could not translate buffer address\n");
+           return -1;
+       }
+
+       //TODO:  SETUP VNET PACKET data structure
+
+       /*
+         if (v3_vnet_send_pkt(pkt, (void *)core) == -1) {
+           PrintError("Error sending packet to vnet\n");
+           return -1;
+       }       
+       */
+       q->used->ring[q->used->index % q->queue_size].id = q->avail->ring[q->cur_avail_idx % q->queue_size];
+       q->used->ring[q->used->index % q->queue_size].length = pkt_desc->length; // What do we set this to????
+       q->used->index++;
+
+       q->cur_avail_idx++;
+    }
+
+    if (!(q->avail->flags & VIRTIO_NO_IRQ_FLAG)) {
+       v3_pci_raise_irq(vnet_state->pci_bus, 0, vnet_state->pci_dev);
+       vnet_state->virtio_cfg.pci_isr = 0x1;
+    }
+
+    return 0;
+}
+
 static int virtio_io_write(struct guest_info * core, uint16_t port, void * src, uint_t length, void * private_data) {
     struct virtio_vnet_state * vnet_state = (struct virtio_vnet_state *)private_data;
     int port_idx = port % vnet_state->io_range_size;
 
-
-    PrintDebug("VirtioVNET: VIRTIO VNET Write for port %d len=%d, value=%x\n", 
+    PrintDebug("VNET Bridge: VIRTIO VNET Write for port %d len=%d, value=%x\n", 
               port, length, *(uint32_t *)src);
-    PrintDebug("VirtioVNET: port idx=%d\n", port_idx);
+    PrintDebug("VNET Bridge: port idx=%d\n", port_idx);
 
 
     switch (port_idx) {
@@ -217,8 +332,7 @@ static int virtio_io_write(struct guest_info * core, uint16_t port, void * src,
            if (length != 4) {
                PrintError("Illegal write length for guest features\n");
                return -1;
-           }
-           
+           }    
            vnet_state->virtio_cfg.guest_features = *(uint32_t *)src;
 
            break;
@@ -243,24 +357,22 @@ static int virtio_io_write(struct guest_info * core, uint16_t port, void * src,
                    return -1;
                }
 
-
                if (guest_pa_to_host_va(core, vnet_state->cur_queue->ring_avail_addr, (addr_t *)&(vnet_state->cur_queue->avail)) == -1) {
                    PrintError("Could not translate ring available address\n");
                    return -1;
                }
 
-
                if (guest_pa_to_host_va(core, vnet_state->cur_queue->ring_used_addr, (addr_t *)&(vnet_state->cur_queue->used)) == -1) {
                    PrintError("Could not translate ring used address\n");
                    return -1;
                }
 
-               PrintDebug("VirtioVNET: RingDesc_addr=%p, Avail_addr=%p, Used_addr=%p\n",
+               PrintDebug("VNET Bridge: RingDesc_addr=%p, Avail_addr=%p, Used_addr=%p\n",
                           (void *)(vnet_state->cur_queue->ring_desc_addr),
                           (void *)(vnet_state->cur_queue->ring_avail_addr),
                           (void *)(vnet_state->cur_queue->ring_used_addr));
 
-               PrintDebug("VirtioVNET: RingDesc=%p, Avail=%p, Used=%p\n", 
+               PrintDebug("VNET Bridge: RingDesc=%p, Avail=%p, Used=%p\n", 
                           vnet_state->cur_queue->desc, vnet_state->cur_queue->avail, vnet_state->cur_queue->used);
 
            } else {
@@ -272,7 +384,7 @@ static int virtio_io_write(struct guest_info * core, uint16_t port, void * src,
            vnet_state->virtio_cfg.vring_queue_selector = *(uint16_t *)src;
 
            if (vnet_state->virtio_cfg.vring_queue_selector > NUM_QUEUES) {
-               PrintError("Virtio Symbiotic device has no qeueues. Selected %d\n", 
+               PrintError("VNET Bridge device has no qeueues. Selected %d\n", 
                           vnet_state->virtio_cfg.vring_queue_selector);
                return -1;
            }
@@ -283,20 +395,22 @@ static int virtio_io_write(struct guest_info * core, uint16_t port, void * src,
        case VRING_Q_NOTIFY_PORT: {
            uint16_t queue_idx = *(uint16_t *)src;
 
-           PrintDebug("VirtioVNET: Handling Kick\n");
+           PrintDebug("VNET Bridge: Handling Kick\n");
 
            if (queue_idx == 0) {
                if (handle_cmd_kick(core, vnet_state) == -1) {
-                   PrintError("Could not handle VNET Control command\n");
+                   PrintError("Could not handle Virtio VNET Control command\n");
                    return -1;
                }
            } else if (queue_idx == 1) {
-
-               // down queue
+               if (handle_pkt_kick(core, vnet_state) == -1){
+                   PrintError("Could not handle Virtio VNET TX\n");
+                   return -1;
+               }
            } else if (queue_idx == 2) {
-               // up queue
+               PrintDebug("VNET Bridge: receive kick on RX Queue\n");
            } else {
-               PrintError("Kick on invalid queue (%d)\n", queue_idx);
+               PrintError("VNET Bridge: Kick on invalid queue (%d)\n", queue_idx);
                return -1;
            }
 
@@ -306,7 +420,7 @@ static int virtio_io_write(struct guest_info * core, uint16_t port, void * src,
            vnet_state->virtio_cfg.status = *(uint8_t *)src;
 
            if (vnet_state->virtio_cfg.status == 0) {
-               PrintDebug("VirtioVNET: Resetting device\n");
+               PrintDebug("VNET Bridge: Resetting device\n");
                virtio_reset(vnet_state);
            }
 
@@ -406,23 +520,25 @@ static struct v3_device_ops dev_ops = {
 };
 
 
-static int vnet_init(struct v3_vm_info * vm, v3_cfg_tree_t * cfg) {
+static int dev_init(struct v3_vm_info * vm, v3_cfg_tree_t * cfg) {
     struct vm_device * pci_bus = v3_find_dev(vm, v3_cfg_val(cfg, "bus"));
-    struct virtio_vnet_state * virtio_state = NULL;
+    struct virtio_vnet_state * vnet_state = NULL;
     struct pci_device * pci_dev = NULL;
     char * name = v3_cfg_val(cfg, "name");
 
-    PrintDebug("VirtioVNET: Initializing VIRTIO VNET Control device\n");
+    PrintDebug("VNET Bridge: Initializing VNET Bridge Control device: %s\n", name);
 
     if (pci_bus == NULL) {
-       PrintError("VirtIO devices require a PCI Bus");
+       PrintError("VNET Bridge device require a PCI Bus");
        return -1;
     }
     
-    virtio_state  = (struct virtio_vnet_state *)V3_Malloc(sizeof(struct virtio_vnet_state));
-    memset(virtio_state, 0, sizeof(struct virtio_vnet_state));
+    vnet_state  = (struct virtio_vnet_state *)V3_Malloc(sizeof(struct virtio_vnet_state));
+    memset(vnet_state, 0, sizeof(struct virtio_vnet_state));
+       
+    vnet_state->vm = vm;
 
-    struct vm_device * dev = v3_allocate_device(name, &dev_ops, virtio_state);
+    struct vm_device * dev = v3_allocate_device(name, &dev_ops, vnet_state);
 
     if (v3_attach_device(vm, dev) == -1) {
        PrintError("Could not attach device %s\n", name);
@@ -437,38 +553,35 @@ static int vnet_init(struct v3_vm_info * vm, v3_cfg_tree_t * cfg) {
        int tmp_ports = num_ports;
        int i;
 
-
        // This gets the number of ports, rounded up to a power of 2
-       virtio_state->io_range_size = 1; // must be a power of 2
+       vnet_state->io_range_size = 1; // must be a power of 2
 
        while (tmp_ports > 0) {
            tmp_ports >>= 1;
-           virtio_state->io_range_size <<= 1;
+           vnet_state->io_range_size <<= 1;
        }
        
        // this is to account for any low order bits being set in num_ports
        // if there are none, then num_ports was already a power of 2 so we shift right to reset it
-       if ((num_ports & ((virtio_state->io_range_size >> 1) - 1)) == 0) {
-           virtio_state->io_range_size >>= 1;
+       if ((num_ports & ((vnet_state->io_range_size >> 1) - 1)) == 0) {
+           vnet_state->io_range_size >>= 1;
        }
 
-
        for (i = 0; i < 6; i++) {
            bars[i].type = PCI_BAR_NONE;
        }
 
        bars[0].type = PCI_BAR_IO;
        bars[0].default_base_port = -1;
-       bars[0].num_ports = virtio_state->io_range_size;
-
+       bars[0].num_ports = vnet_state->io_range_size;
        bars[0].io_read = virtio_io_read;
        bars[0].io_write = virtio_io_write;
-       bars[0].private_data = virtio_state;
+       bars[0].private_data = vnet_state;
 
        pci_dev = v3_pci_register_device(pci_bus, PCI_STD_DEVICE, 
                                         0, PCI_AUTO_DEV_NUM, 0,
                                         "LNX_VIRTIO_VNET", bars,
-                                        NULL, NULL, NULL, virtio_state);
+                                        NULL, NULL, NULL, vnet_state);
 
        if (!pci_dev) {
            PrintError("Could not register PCI Device\n");
@@ -477,29 +590,25 @@ static int vnet_init(struct v3_vm_info * vm, v3_cfg_tree_t * cfg) {
        
        pci_dev->config_header.vendor_id = VIRTIO_VENDOR_ID;
        pci_dev->config_header.subsystem_vendor_id = VIRTIO_SUBVENDOR_ID;
-       
-
        pci_dev->config_header.device_id = VIRTIO_VNET_DEV_ID;
        pci_dev->config_header.class = PCI_CLASS_MEMORY;
        pci_dev->config_header.subclass = PCI_MEM_SUBCLASS_RAM;
-    
        pci_dev->config_header.subsystem_id = VIRTIO_VNET_SUBDEVICE_ID;
-
-
        pci_dev->config_header.intr_pin = 1;
-
        pci_dev->config_header.max_latency = 1; // ?? (qemu does it...)
 
 
-       virtio_state->pci_dev = pci_dev;
-       virtio_state->pci_bus = pci_bus;
+       vnet_state->pci_dev = pci_dev;
+       vnet_state->pci_bus = pci_bus;
     }
 
-    virtio_reset(virtio_state);
+    virtio_reset(vnet_state);
+
+    V3_Print("Registering Virtio device as vnet bridge\n");
+    v3_vnet_add_bridge(vm, vnet_pkt_input_cb, (void *)vnet_state);
 
-   
     return 0;
 }
 
 
-device_register("LNX_VIRTIO_VNET", vnet_init)
+device_register("LNX_VIRTIO_VNET", dev_init)