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.


debugging fixes
[palacios.git] / palacios / src / palacios / svm_handler.c
index b89d28c..af6c49f 100644 (file)
@@ -71,7 +71,18 @@ int v3_handle_svm_exit(struct guest_info * info) {
     exit_code = guest_ctrl->exit_code;
 
 
+    if ((info->intr_state.irq_pending == 1) && (guest_ctrl->guest_ctrl.V_IRQ == 0)) {
+       // Interrupt was taken in the guest
+#ifdef DEBUG_INTERRUPTS
+       if ((info->intr_state.irq_vector == 238) || 
+           (info->intr_state.irq_vector == 239)) {
+           PrintDebug("Interrupt %d taken by guest\n", info->intr_state.irq_vector);
+       }
+#endif
+       v3_injecting_intr(info, info->intr_state.irq_vector, EXTERNAL_IRQ);
+    }
 
+    info->intr_state.irq_pending = 0;
   
 
     // Disable printing io exits due to bochs debug messages
@@ -358,11 +369,16 @@ int v3_handle_svm_exit(struct guest_info * info) {
                guest_ctrl->guest_ctrl.V_IGN_TPR = 1;
                guest_ctrl->guest_ctrl.V_INTR_PRIO = 0xf;
 #ifdef DEBUG_INTERRUPTS
-               PrintDebug("Injecting Interrupt %d (EIP=%p)\n", 
-                          guest_ctrl->guest_ctrl.V_INTR_VECTOR, 
-                          (void *)(addr_t)info->rip);
+               if ((guest_ctrl->guest_ctrl.V_INTR_VECTOR == 238) || 
+                   (guest_ctrl->guest_ctrl.V_INTR_VECTOR == 239)) {
+                   PrintDebug("Injecting Interrupt %d (EIP=%p)\n", 
+                              guest_ctrl->guest_ctrl.V_INTR_VECTOR, 
+                              (void *)(addr_t)info->rip);
+               }
 #endif
-               v3_injecting_intr(info, irq, EXTERNAL_IRQ);
+               info->intr_state.irq_pending = 1;
+               info->intr_state.irq_vector = irq;
+
                    
                break;
            }
@@ -378,7 +394,7 @@ int v3_handle_svm_exit(struct guest_info * info) {
                    guest_ctrl->EVENTINJ.error_code = info->intr_state.excp_error_code;
                    guest_ctrl->EVENTINJ.ev = 1;
 #ifdef DEBUG_INTERRUPTS
-                   PrintDebug("Injecting error code %x\n", guest_ctrl->EVENTINJ.error_code);
+                   //              PrintDebug("Injecting exception %d with error code %x\n", excp, guest_ctrl->EVENTINJ.error_code);
 #endif
                }
                
@@ -386,7 +402,7 @@ int v3_handle_svm_exit(struct guest_info * info) {
                
                guest_ctrl->EVENTINJ.valid = 1;
 #ifdef DEBUG_INTERRUPTS
-               PrintDebug("Injecting Interrupt %d (EIP=%p)\n", 
+               PrintDebug("Injecting Exception %d (EIP=%p)\n", 
                           guest_ctrl->EVENTINJ.vector, 
                           (void *)(addr_t)info->rip);
 #endif
@@ -406,12 +422,9 @@ int v3_handle_svm_exit(struct guest_info * info) {
                return -1;
        }
        
-    } else {
-#ifdef DEBUG_INTERRUPTS
-       PrintDebug("No interrupts/exceptions pending\n");
-#endif
     }
-    
+
+
     guest_state->cr0 = info->ctrl_regs.cr0;
     guest_state->cr2 = info->ctrl_regs.cr2;
     guest_state->cr3 = info->ctrl_regs.cr3;