OSDev.org

The Place to Start for Operating System Developers
It is currently Fri Mar 29, 2024 12:24 am

All times are UTC - 6 hours




Post new topic Reply to topic  [ 4 posts ] 
Author Message
 Post subject: Bochs translates page inconsistently?
PostPosted: Thu Dec 28, 2017 2:59 pm 
Offline
Member
Member
User avatar

Joined: Sun Jan 17, 2016 7:57 am
Posts: 51
Hi,
I've been debugging a peculiar bug in my kernel that so far has only appeared on Bochs.
Through printf-debugging I managed to narrow down what was going wrong to a certain memory location.
In the Bochs GUI debugger, I used the `page` command to see which physical address the memory is at.
I then did a linear memory dump with the virtual address, and a physical memory dump with the address from the `page` command.
Thinking they would be the same, I was surprised to find that while the physical dump gave the values I was expecting, the linear memory dump gave completely different values - as if the page address had been translated differently.
I'm worried this might be a bug in Bochs - although I could be wrong. I'm using version 2.6.0, compiled with instructions from http://wiki.osdev.org/Bochs#Compiling_Bochs_from_Source.
Does anyone know what might be happening?


Top
 Profile  
 
 Post subject: Re: Bochs translates page inconsistently?
PostPosted: Thu Dec 28, 2017 10:32 pm 
Offline
Member
Member

Joined: Fri Aug 26, 2016 1:41 pm
Posts: 671
Do you have a project on Github (or similar service) that we could look at? If we could test your actual code and you tell us how to reproduce the problem we might be able to give you an answer. Although Bochs has bugs, I'd be surprised if the paging mechanism was an issue. but it is possible.

Maybe you didn't properly invalidate a page at some point?


Top
 Profile  
 
 Post subject: Re: Bochs translates page inconsistently?
PostPosted: Fri Dec 29, 2017 12:44 am 
Offline
Member
Member

Joined: Fri Apr 04, 2008 6:43 am
Posts: 357
>Maybe you didn't properly invalidate a page at some point?

Good guess about TLB.
BTW, you also should be able to dump Bochs internal TLB through param tree or using 'tlb' shortcut and see what you have in the TLB at the same time.
You can also enable memory trace in Bochs debugger using 'trace-mem on' and see what actually happens in Bochs during the memory access.


Top
 Profile  
 
 Post subject: Re: Bochs translates page inconsistently?
PostPosted: Fri Dec 29, 2017 12:51 pm 
Offline
Member
Member
User avatar

Joined: Sun Jan 17, 2016 7:57 am
Posts: 51
Okay, it's working now!

Here are the two things I did:

1. I updated to Bochs 2.6.8 (I couldn't get 2.6.9 to compile for some reason) which appeared to get rid of the inconsistent page translation in the debugger. (It also broke ATA DMA which is something else I'll need to investigate.)

2. I found and fixed a longstanding error in my TLB invalidation code that was causing my bug.

Code:
uintptr_t virtualAddressU = _virtualAddress;
_virtualAddress &= 0x0000FFFFFFFFF000;
...
tlbShootdownVirtualAddress = _virtualAddress; // <-- The bug is here!
tlbShootdownPageCount = pageCount;
tlbShootdownRemainingProcessors = scheduler.processors - 1;
ProcessorSendIPI(TLB_SHOOTDOWN_IPI);

I changed _virtualAddress to virtualAddressU, fixing my problem.

Thanks for the help.


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 4 posts ] 

All times are UTC - 6 hours


Who is online

Users browsing this forum: Bing [Bot] and 94 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group