Re: [RFC] scsi: target: tcmu: running 32bit userspace on 64bit kernel

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 





On 2020-06-30 19:27, James Bottomley wrote:
On Tue, 2020-06-30 at 19:17 +0200, Bodo Stroesser wrote:
On 2020-06-30 18:52, James Bottomley wrote:
On Tue, 2020-06-30 at 18:49 +0200, Bodo Stroesser wrote:
[...]
So we can compile a 32-bit application that works on 64-bit
kernel without need to manipulate the include file prepared by
the kernel.

What do you think? Do you know a better solution?

Can you not use something similar to the compat_ioctl
mechanism?  the job of the compat layer is to re-layout the input
and output structures to impedance match between 32 and 64 bit.

James


struct tcmu_cmd_entry is prepared by kernel and exposed to userspace
via an mmap()ed uio device. From tcmu module point of view it is
vmalloc area.

So there is no 'glue' code that could do conversion.

OK, so can't you do it like a vdso then?  For them we detect on mmap
what the architectural model is and map different areas depending on
that, so effectively you have a 64 and a 32 bit layout area and which
one you map depends on the architecture type you see coming into the
setup call.  You expect only one to be mapped and you only do extra
conversions on the impedance mismatch case.

I think, vdso and tcmu's uio mmaps are different in vdso AFAIK being
constant code while the uio mmap contains data (e.g. tcmu_cmd_entries) that is written and read by tcmu module and userspace. So kernel needs to know what format of entries userspace expects.
Additionally, the data is preserved over close and re-open of the uio
device and mapping. So it would be necessary to re-format data existing
in a ring buffer according to the appl arch. I don't like this idea.
But alternatively on architecture change we could flush the ring buffer.

Hmm. tcmu is called during mmap() for the uio-device. If we can
determine the appl arch at that time, it would work. Let me check.

Bodo



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [SCSI Target Devel]     [Linux SCSI Target Infrastructure]     [Kernel Newbies]     [IDE]     [Security]     [Git]     [Netfilter]     [Bugtraq]     [Yosemite News]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Linux ATA RAID]     [Linux IIO]     [Samba]     [Device Mapper]

  Powered by Linux