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.


Merging for release RC2
Jack Lange [Fri, 10 Oct 2008 19:55:11 +0000 (14:55 -0500)]
Merge branch 'devel'

Conflicts:
palacios/include/devices/generic.h
palacios/include/devices/ide.h
palacios/include/geekos/debug.h
palacios/include/geekos/net.h
palacios/include/geekos/pci.h
palacios/include/geekos/queue.h
palacios/include/geekos/reboot.h
palacios/include/geekos/ring_buffer.h
palacios/include/geekos/serial.h
palacios/include/geekos/socket.h
palacios/include/geekos/timer.h
palacios/include/geekos/vm.h
palacios/include/palacios/vmcs.h
palacios/include/palacios/vmcs_gen.h
palacios/src/devices/cdrom.c
palacios/src/devices/generic.c
palacios/src/devices/ramdisk.c
palacios/src/geekos/debug.c
palacios/src/geekos/net.c
palacios/src/geekos/queue.c
palacios/src/geekos/testvm.s
palacios/src/palacios/vmm_config.c

palacios/include/devices/generic.h
palacios/include/devices/ide.h
palacios/include/geekos/socket.h [deleted file]
palacios/include/palacios/vmcs.h
palacios/include/palacios/vmcs_gen.h
palacios/src/devices/cdrom.c
palacios/src/geekos/debug.c [new file with mode: 0644]
palacios/src/geekos/net.c [new file with mode: 0644]
palacios/src/geekos/queue.c [new file with mode: 0644]
palacios/src/geekos/testvm.s [new file with mode: 0644]
palacios/src/palacios/vmm_config.c

index 591d86c..3dd33bc 100644 (file)
@@ -19,7 +19,6 @@
  * redistribute, and modify it as specified in the file "V3VEE_LICENSE".
  */
 
-
 #ifndef __GENERIC_H__
 #define __GENERIC_H__
 
index c001550..66630fe 100644 (file)
@@ -204,6 +204,7 @@ struct  drive_t {
   struct sense_info_t sense;
   struct atapi_t atapi;
   
+
   /* JRL */
   void * private_data;
 
@@ -242,6 +243,7 @@ struct  ramdisk_t {
 
 #endif
 
+
 #if 0
 
 // FLAT MODE
diff --git a/palacios/include/geekos/socket.h b/palacios/include/geekos/socket.h
deleted file mode 100644 (file)
index fbc47ed..0000000
+++ /dev/null
@@ -1,40 +0,0 @@
-/* (c) 2008, Jack Lange <jarusl@cs.northwestern.edu> */
-/* (c) 2008, The V3VEE Project <http://www.v3vee.org> */
-
-#ifndef GEEKOS_SOCKET_H
-#define GEEKOS_SOCKET_H
-
-#include <geekos/ring_buffer.h>
-#include <geekos/kthread.h>
-
-#ifdef UIP
-#include <uip/uip.h>
-
-
-typedef enum {WAITING, CLOSED, LISTEN, ESTABLISHED} sock_state_t;
-
-struct socket {
-  int in_use;
-  struct Thread_Queue recv_wait_queue;
-  struct ring_buffer *send_buf;
-  struct ring_buffer *recv_buf;
-  struct uip_conn *con;
-
-  sock_state_t state;
-
-};
-
-
-void init_socket_layer();
-
-int connect(const uchar_t ip_addr[4], ushort_t port);
-int close(const int sockfd);
-int recv(int sockfd, void * buf, uint_t len);
-int send(int sockfd, void * buf, uint_t len);
-
-void set_ip_addr(uchar_t addr[4]);
-
-#endif /* UIP */
-
-
-#endif
index 5c78dd6..3ba5064 100644 (file)
  */
 
 
+
 #ifndef __VMCS_H__
 #define __VMCS_H__
 
 #ifdef __V3VEE__
 
 
+
 #include <palacios/vmm_types.h>
 
 
index eaf073f..59a28fb 100644 (file)
@@ -18,6 +18,7 @@
  * redistribute, and modify it as specified in the file "V3VEE_LICENSE".
  */
 
+
 #include <devices/cdrom.h>
 #include <devices/ide.h>
 #include <palacios/vmm.h>
diff --git a/palacios/src/geekos/debug.c b/palacios/src/geekos/debug.c
new file mode 100644 (file)
index 0000000..483d4af
--- /dev/null
@@ -0,0 +1,30 @@
+/*
+ * This file is part of the Palacios Virtual Machine Monitor developed
+ * by the V3VEE Project with funding from the United States National 
+ * Science Foundation and the Department of Energy.  
+ *
+ * The V3VEE Project is a joint project between Northwestern University
+ * and the University of New Mexico.  You can find out more at 
+ * http://www.v3vee.org
+ *
+ * Copyright (c) 2008, Jack Lange <jarusl@cs.northwestern.edu> 
+ * Copyright (c) 2008, The V3VEE Project <http://www.v3vee.org> 
+ * All rights reserved.
+ *
+ * Author: Jack Lange <jarusl@cs.northwestern.edu>
+ *
+ * This is free software.  You are permitted to use,
+ * redistribute, and modify it as specified in the file "V3VEE_LICENSE".
+ */
+
+#include <geekos/debug.h>
+
+
+void PrintBoth(const char * format, ...) {
+  va_list args;
+
+  va_start(args, format);
+  PrintList(format, args);
+  SerialPrintList(format, args);
+  va_end(args);
+}
diff --git a/palacios/src/geekos/net.c b/palacios/src/geekos/net.c
new file mode 100644 (file)
index 0000000..8fc76bc
--- /dev/null
@@ -0,0 +1,51 @@
+/*
+ * This file is part of the Palacios Virtual Machine Monitor developed
+ * by the V3VEE Project with funding from the United States National 
+ * Science Foundation and the Department of Energy.  
+ *
+ * The V3VEE Project is a joint project between Northwestern University
+ * and the University of New Mexico.  You can find out more at 
+ * http://www.v3vee.org
+ *
+ * Copyright (c) 2008, Jack Lange <jarusl@cs.northwestern.edu> 
+ * Copyright (c) 2008, The V3VEE Project <http://www.v3vee.org> 
+ * All rights reserved.
+ *
+ * Author: Jack Lange <jarusl@cs.northwestern.edu>
+ *
+ * This is free software.  You are permitted to use,
+ * redistribute, and modify it as specified in the file "V3VEE_LICENSE".
+ */
+
+#include <geekos/net.h>
+#include <geekos/socket.h>
+#include <geekos/ne2k.h>
+
+void Init_Network() {
+  init_socket_layer();
+}
+
+
+
+
+void test_network() {
+
+    uchar_t local_addr[4];
+    uchar_t remote_addr[4];
+
+    local_addr[0] = 10;
+    local_addr[1] = 0;
+    local_addr[2] = 2;
+    local_addr[3] = 21;
+
+    set_ip_addr(local_addr);
+
+    remote_addr[0] = 10;
+    remote_addr[1] = 0;
+    remote_addr[2] = 2;
+    remote_addr[3] = 20;
+
+
+    connect(remote_addr, 4301);
+
+}
diff --git a/palacios/src/geekos/queue.c b/palacios/src/geekos/queue.c
new file mode 100644 (file)
index 0000000..ed1a664
--- /dev/null
@@ -0,0 +1,58 @@
+/*
+ * This file is part of the Palacios Virtual Machine Monitor developed
+ * by the V3VEE Project with funding from the United States National 
+ * Science Foundation and the Department of Energy.  
+ *
+ * The V3VEE Project is a joint project between Northwestern University
+ * and the University of New Mexico.  You can find out more at 
+ * http://www.v3vee.org
+ *
+ * Copyright (c) 2008, Jack Lange <jarusl@cs.northwestern.edu> 
+ * Copyright (c) 2008, The V3VEE Project <http://www.v3vee.org> 
+ * All rights reserved.
+ *
+ * Author: Jack Lange <jarusl@cs.northwestern.edu>
+ *
+ * This is free software.  You are permitted to use,
+ * redistribute, and modify it as specified in the file "V3VEE_LICENSE".
+ */
+
+#include <geekos/queue.h>
+
+
+
+void init_queue(struct gen_queue * queue) {
+  queue->num_entries = 0;
+  INIT_LIST_HEAD(&(queue->entries));
+}
+
+
+struct gen_queue * create_queue() {
+  struct gen_queue * tmp_queue = Malloc(sizeof(struct gen_queue));
+  init_queue(tmp_queue);
+  return tmp_queue;
+}
+
+void enqueue(struct gen_queue * queue, void * entry) {
+  struct queue_entry * q_entry = Malloc(sizeof(struct queue_entry));
+
+  q_entry->entry = entry;
+  list_add_tail(&(q_entry->entry_list), &(queue->entries));
+  queue->num_entries++;
+}
+
+
+void * dequeue(struct gen_queue * queue) {
+  void * entry_val = 0;
+  
+  if (!list_empty(&(queue->entries))) {
+    struct list_head * q_entry = queue->entries.next;
+    struct queue_entry * tmp_entry = list_entry(q_entry, struct queue_entry, entry_list);
+
+    entry_val = tmp_entry->entry;
+    list_del(q_entry);
+    Free(tmp_entry);
+  }
+
+  return entry_val;
+}
diff --git a/palacios/src/geekos/testvm.s b/palacios/src/geekos/testvm.s
new file mode 100644 (file)
index 0000000..e2d5a44
--- /dev/null
@@ -0,0 +1,60 @@
+# -*- fundamental -*-
+# This file is part of the Palacios Virtual Machine Monitor developed
+# by the V3VEE Project with funding from the United States National 
+# Science Foundation and the Department of Energy.  
+#
+# The V3VEE Project is a joint project between Northwestern University
+# and the University of New Mexico.  You can find out more at 
+# http://www.v3vee.org
+#
+# Copyright (c) 2008, Jack Lange <jarusl@cs.northwestern.edu> 
+# Copyright (c) 2008, The V3VEE Project <http://www.v3vee.org> 
+# All rights reserved.
+#
+# Author: Jack Lange <jarusl@cs.northwestern.edu>
+#
+# This is free software.  You are permitted to use,
+# redistribute, and modify it as specified in the file "V3VEE_LICENSE".
+
+
+.global MyBuzzVM
+MyBuzzVM:
+       pushl   %ebp
+       movl    %esp, %ebp
+       pushl   %esi
+       pushl   %ebx
+       inb $97, %al            
+       movl    $97, %ecx
+       movb    %al, %bl
+       orl     $2, %ebx
+       movl    %eax, %esi
+.L24:
+       movb    %bl, %al
+       movl    %ecx, %edx
+       outb    %al, %dx
+       movl    $0, %edx
+.L30:
+       incl    %edx
+       cmpl    $999999, %edx
+       jle     .L30
+       movl    %esi, %eax
+       movl    %ecx, %edx
+       outb %al, %dx
+       movl    $0, %edx
+.L35:
+       incl    %edx
+       cmpl    $999999, %edx
+       jle     .L35
+       jmp     .L24
+       
+       
+       
+       
+       
+       
+       
+       
+       
+       
+       
+       
index fa4fe80..3533e72 100644 (file)
@@ -17,6 +17,7 @@
  * redistribute, and modify it as specified in the file "V3VEE_LICENSE".
  */
 
+
 #include <palacios/vmm_config.h>
 #include <palacios/vmm.h>
 #include <palacios/vmm_debug.h>