linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Re: How to map user space's virtual memory into kernel logical address space
       [not found] <25b1e0c5-c6f4-43e6-a168-7cb701ef9018@e10g2000prf.googlegroups.com>
@ 2007-11-29  0:33 ` Robert Hancock
  0 siblings, 0 replies; only message in thread
From: Robert Hancock @ 2007-11-29  0:33 UTC (permalink / raw)
  To: Maitre Bart; +Cc: linux-kernel

Maitre Bart wrote:
> A given app is allocating a large amount of memory (~10M) with
> malloc().
> It passes this pointer to the kernel (device driver) via an custom
> ioctl.
> I would like the driver to work on that memory with a pointer (as if
> it was allocated with vmalloc) as well as the user space too (upon
> return of the syscall).
> Is there a way to map a user space's virtual memory range into the
> kernel logical address space?
> 
> As far as I learned from my readings, using the user-space pointer
> directly in kernel space will not work.
> 
> Of course, copy_from_user() is out of question for efficiency
> purposes.
> 
> ioremap() is pretty close to what I wish to do except that it accepts
> a physical address and I don't how to get it from a user space
> pointer. And since a physical address is required, I assume the range
> is considered contiguous, which is not really the case for malloc().
> 
> mmap()/remap_pfn_range() are interesting but I don't know how to get a
> kernel pointer out of them.
> 
> kmap() does the job for a single page (and anyway, I wouldn't know how
> to  feed it with a struct page from the userland pointer).
> 
> get_user_pages() looks promising but it seems I have to call kmap() on
> each page, so it looks like I cannot operate on the buffer with a
> single pointer.
> 
> Does any one know if it is possible? And if so, how can I do it?

10MB is an awfully big mapping to put into kernel virtual memory space. 
I suspect it might be easier to allocate the memory in the kernel and 
map it in from userspace, but then you have the same problem (and 10MB 
is awfully big for vmalloc).

Is there a good reason why you have to be able to do this? There's 
likely a better way.

-- 
Robert Hancock      Saskatoon, SK, Canada
To email, remove "nospam" from hancockr@nospamshaw.ca
Home Page: http://www.roberthancock.com/


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2007-11-29  0:34 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <25b1e0c5-c6f4-43e6-a168-7cb701ef9018@e10g2000prf.googlegroups.com>
2007-11-29  0:33 ` How to map user space's virtual memory into kernel logical address space Robert Hancock

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).