All of lore.kernel.org
 help / color / mirror / Atom feed
* copy_*_user
@ 2011-10-22 17:06 Xin Tong
  2011-10-23  2:50 ` copy_*_user Américo Wang
  0 siblings, 1 reply; 5+ messages in thread
From: Xin Tong @ 2011-10-22 17:06 UTC (permalink / raw)
  To: linux-kernel

I am investigating copy_from_user  and copy_to_user in linux under
i386. These two function both take a pointer with virtual address and
a pointer with physical address.

copy_from_user calls __copy_from_user_ll and copy_to_user  calls
__copy_to_user_ll. It make sense to me that __copy_to_user_ll converts
the virtual address to physical address using the current process's
page table.


unsigned long __copy_to_user_ll(void __user *to, const void *from,
unsigned long n)
{
   ...
    retval = get_user_pages(current, current->mm,
                                        (unsigned long)to, 1, 1, 0, &pg, NULL);

                        if (retval == -ENOMEM && is_global_init(current)) {
                                up_read(&current->mm->mmap_sem);
                                congestion_wait(BLK_RW_ASYNC, HZ/50);
                                goto survive;
                        }

                        if (retval != 1) {
                                up_read(&current->mm->mmap_sem);
                                break;
                        }

       maddr = kmap_atomic(pg, KM_USER0);
       memcpy(maddr + offset, from, len);
     ...
}

But it seems to be that __copy_from_user_ll  is not converted the
address at all before attempting to copy. Can someone help explain to
me why ?


Thanks

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2011-10-23 11:25 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-10-22 17:06 copy_*_user Xin Tong
2011-10-23  2:50 ` copy_*_user Américo Wang
2011-10-23  9:23   ` copy_*_user Xin Tong
2011-10-23 10:15     ` copy_*_user H. Peter Anvin
2011-10-23 11:25       ` copy_*_user Xin Tong

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.