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

Why does the kernel use the copy_to_user function?

Couldn't it just directly operate on data in the user space?

share|improve this question

2 Answers

up vote 4 down vote accepted

kernel and user-space applications have different address spaces, so copying to user space require an address space change. Each process has its own (user) address space.

Also, kernel should never crash when copying to user space, so the copy_to_user function probably checks that the destination address is valid (perhaps that address should be paged-in, e.g. from swap space).

Read more about linux kernel, syscalls, processes, address space ...

share|improve this answer

If a given kernel were written for only one architecture this may or may not be a reasonable choice.

There are a lot of considerations that may vary per architecture and therefore require some sort of polymorphic operation...

  • protection ... the kernel may have too many or too few access rights, either way may require extra code on a given target

  • address space ... the user space and kernel space may overlap, and so a target-specific solution or temporary map would be needed

  • page fault management ... access to the user space can fault and this needs to be either avoided or allowed. Confining the access to a given specific place allows either extra setup or identification of the reason for the fault.

share|improve this answer

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.