Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

My question is whether linux kernel can use virtual memory or does it always uses fixed memory? Another question is that if due to some soft error, the kernel memory is corrupted, what will happen then? Does Linux has any mechanism to protect itself from such faults?

share|improve this question
1  
Please ask each question separately. – Arafangion Aug 26 '11 at 11:19

2 Answers

up vote 2 down vote accepted

Kernel uses virtual adresses. Allocated memory, function pointers etc... are all virtual adress. You only manipulate physical adress when speaking to some devices or when doing certain kind of DMA.

"Linux" or "The linux kernel" run on many architecture. Some of these architecture can have memory error detection or correction hardware. I don't know how these device are supported. But on most architecture, there is no protection against memory corruption.

But you are speaking of soft error. There is no protection from kernel code writing at random adresses. Some function test the parameters they get to catch bug, but if you overflow a buffer or the stack in kernel mode, then various funny things can happen.

Const data and code is usually placed in read-only pages, so that a write can be detected. The memory protection of the kernel is thus limited to :

  • Parameter checking in some places.
  • magic value in some structure.
  • read only attribute for code and const sections.

read only attribute is only possible because the kernel uses virtual memory

share|improve this answer
What do you mean by "magic value in some structure"? – MetallicPriest Aug 26 '11 at 17:08

Yes, see this answer on segfaults for a detailed description of what happens while handling memory.

share|improve this answer
That is about user space which I already know, MMU and virtual memory etc... I was asking about the kernel space. – MetallicPriest Aug 26 '11 at 11:28
Especially what will happen if execution of kernel is affected due to some soft error? – MetallicPriest Aug 26 '11 at 11:30
Nothing exists in kernel space. In kernel space, you are God. – Arafangion Aug 26 '11 at 11:30
Look closely at the diagram. You'll see that there's kernel there too. – Mihai Maruseac Aug 26 '11 at 11:31
@Arafangion: In kernel everything is code, true. But reading the code can reveal interesting things – Mihai Maruseac Aug 26 '11 at 11:32
show 2 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.