[PATCH] powerpc/mm: Allow user space to map rtas_rmo_buf

Nathan Fontenot nfont at linux.vnet.ibm.com
Tue Jan 26 05:42:22 AEDT 2016


On 01/22/2016 02:35 AM, Michael Ellerman wrote:
> On Fri, 2016-01-22 at 11:58 +0530, Vasant Hegde wrote:
>> On 01/22/2016 10:59 AM, Michael Ellerman wrote:
>>> On Thu, 2016-01-21 at 21:45 +0530, Vasant Hegde wrote:
>>>
>>>> With commit 90a545e9 (restrict /dev/mem to idle io memory ranges) mapping
>>>> rtas_rmo_buf from user space is failing. Hence we are not able to make
>>>> RTAS syscall.
>>>
>>> Having said that, why the <expletive deleted> is librtas mapping /dev/mem in
>>> the first place? Unless there is a very good reason, and probably even if there
>>> is, we should fix that to use a sane API.
>>
>> We use rtas system call. We use /dev/mem interface to map the RTAS memory region
>> (allocated by kernel and information is passed to user space via procfs) so that
>> we can read/write to RTAS memory.
>>
>> I do not have historical information. May be Nathan has more information on this.
> 
> Yeah, we need to dig into what it's actually doing and why. I had a quick look
> but it wasn't obvious.

This was done many years ago, going on memory for now...

I will have to dig back into this code further but what I remember is that the
following process is used. At boot time a piece of low memory (buffers passed
to rtas have to be in low memory) is reserved to use for rtas calls. This memory
is made available to userspace, namely the librtas library. The code in librtas
will then reserve pieces of this memory to use for buffers when making rtas
calls that require large buffers. I think the biggest user of this is the rtas
configure-connector call which can require two 1-page buffers.

If I remember correctly this was done to avoid having the kernel do all of the
copying to/from user of the buffers used.


> 
> We should not need 1) a system call, 2) a proc interface, and 3) a mmap of
> /dev/mem.
> 

It seems that we could move to an interface that just uses a syscall and have
the kernel copy the buffers in from userspace into the kernels reserved rtas
buffer space.

> If the syscall's not sufficient and we really need to mmap, we should create a
> device which can then be mmapped in a more standard way.
> 
This would also work if having the kernel copy the buffers is not what we
want to do.

-Nathan

> Having said that, Nathan's been moving more of the hotplug logic into the
> kernel, so I'm also not clear on how much of the existing API we will need in
> the future. So yep hopefully Nathan can chime in.
> 
> cheers
> 



More information about the Linuxppc-dev mailing list