ok, thanks
hverkuil: unfortunately it doesn't solve the problem. In my case the cmd passed to do_video_ioctl() is still VIDIOC_DQEVENT with a wrong embedded size for struct v4l2_event. So 'case VIDIOC_DQEVENT' is missed and I lost the ioctl
alse. The userspace is issueing the ioctl with VIDIOC_DQEVENT not VIDIOC_DQEVENT32. In do_video_ioctl() I would expect to receive VIDIOC_DQEVENT32 when the userspace is 32bit. Where the conversion VIDIOC_DQEVENT->VIDIOC_DQEVENT32 is done before reaching do_video_ioctl()?
hverkuil: ping
hverkuil: 655e9780ab913a3a06d4a164d55e3b755524186d is wrong.
The right solution would have been to use __packed
Albeit fixing that now could prove troublesome.
sailus: I don't think that with __packed the problem is solved, since what's happening here is that struct timespec definition differs in userspace and kernelspace. It's not that it's just wrongly packed.
ccaione: No, not quite.
I think the original problem came about with control events.
Aarch64 and arm appear to have similar alignment for the data types involved, unlike x86 and x86-64.
And the "fix" probably fixed it for aarch64 but broke x86 compat at the same time.
Is compat even relevant for aarch64 btw.?
I'm on aarch64
Can you run 32-bit arm binaries on aarch64 machines?
Ah.
Interesting.
I though the fix was especially intended for aarch64.
uhm, in what case do_video_ioctl() receive a ioctl with cmd == VIDIOC_DQEVENT32?
It *should* happen when you run a 32-bit program on a 64-bit machine.
If it doesn't, it's a bug (as pinchartl  noted).
the problem is that I don't see the code path for which the ioctl called from the 32-bit program using VIDIOC_DQEVENT, arrives in do_video_ioctl() as VIDIOC_DQEVENT32
ccaione: Can you run 32-bit arm binaries on aarch64?
sailus: yes
ccaione: I'll try to take a look at the issue, but right now I have other urgent matters to handle.
sailus: np. Thank you.
ccaione: Is the size of timespec different (i.e. sizeof(struct timespec) on 32-bit arm and sizeof(compat_timespec) on aarch64) different?
What are the values?
I wonder if you're getting the wrong definition of __kernel_time_t for some reason. That'd be long long, i.e. 64 bits...
sailus: IIRC of the 32-bit app side I have 8, on the 64-bit kernel side 16.
ccaione: How does your struct compat_timespec look like?
I can't figure out how that could be 16 bytes, it's a struct of two s32's.
sailus: I don't have the board with me to check run-time. For sure they were different.
ccaione: No need to. Just taking a glance to the source would be enough.
It's in arch/arm64/include/asm/compat.h .
sailus: on my kernel https://paste.fedoraproject.org/351828/01287711/
compat_time_t ?
It's in the same file.
s32
And... that'd be 16 bytes on aarch64?
I have to say I don't know aarch64 at all but it looks very strange to me.
I'm not following you here since in my test compat_timespec is never used, always the full struct timespec is used instead
userspace uses sizeof(v4l2_event) to encode the size portion of the cmd
and inside v4l2_event we have struct timespec
Yes.
this generate a cmd value for the VIDIOC_DQEVENT ioctl. For the kernel the cmd value associated with VIDIOC_DQEVENT is different
But the size was 16 bytes in the kernel, right?
since for the kernel sizeof(v4l2_event) is different
Yes, in the kernel it should match VIDIOC_DQEVENT32.
but how? if the userspace is doing a ioctl on VIDIOC_DQEVENT, how we receive VIDIOC_DQEVENT32 on the kernel side?
I'm missing this stpe
If you have a 32-bit user space binary that runs on a 64-bit kernel, this is expected.
The ABI is different, and the memory layout of struct v4l2_event on arm32 should match that of struct v4l2_event32 on aarch64.
struct v4l2_event is different on aarch64.
That's the point of the compat IOCTLs.
agree, but still I don't see the codepath that changes my VIDIOC_DQEVENT ioctl into a VIDIOC_DQEVENT32
VIDIOC_DQEVENT on arm is exactly the same as VIDIOC_DQEVENT32 on aarch64. At least that's the intent.
(And I presume that's not the case for you, for some reason.)
I guess that's the case also on my setup. But let me going through the code step by step.  1) my app issues an ioctl with VIDIOC_DQEVENT. In the value for the cmd is embedded the sizeof(struct v4l2_event). So for exaple cmd == 0xaaaaaaaa
2) this ioctl is passed in the kernel all the way to v4l2_compat_ioctl32()
3) from here to do_video_ioctl()
cmd is still 0xaaaaaaaa
hoooo, wait, I see you point now. So in theory VIDIOC_DQEVENT32 == 0xaaaaaaaa
and then we change cmd = VIDIOC_DQEVENT in the switch-case
sailus: ok, you are right. For some reason in my case VIDIOC_DQEVENT on arm != VIDIOC_DQEVENT32 on aarch64
Indeed.
I have no access to aarch64 hardware, I presume some others do, at least Andrzej who submitted the patch changing things a bit. It'd be helpful if you could debug what's causing the difference in size.
Need to leave now, might be back later.
sailus: I need to check that and I left the hw in the office. But now I undesterstood what's going on and I can better debug this issue on monday
thanks for your help
ccaione: You're welcome!
mchehab, about "[PATCH v3] [media] tpg: Export the tpg code from vivid as a module", the tpg doesn't really need vivid, anyone could write a module that uses the tpg as the video pattern generator, so it doesn't really depends on vivid. I am having a hard time to understand why "depends on VIDEO_VIVID" in the tpg's Kconfig is the best option?
koike: I'd use "select TPG" in the vivid Kconfig entry instead
pinchartl, I am going to resend the patch using "select TPG" then
pinchartl, when you use yavta -cX -F out, do you use any specific tool to visualize the captured images?
I usually use raw2rgbpnm3~
raw2rgbpnm
pinchartl, thank you, I am going to check that
it was hosted on gitorious :-/
sailus: can you push it somewhere else ?
pinchartl: in case is useful, I found an old repo some months ago and pushed to github: https://github.com/martinezjavier/raw2rgbpnm
probably is not the last version but I've been using it without issues
javier__: I have 8 patches on top of that. can you give pinchartl push permissions for that repo ?
pinchartl: done
pushed, thanks
you can now remove my commit access :-)
(if you want)
pinchartl: I'll keep it if you don't mind, so you can push there as a temporary repo until sailus finds a new home for that repo
sure, no issue
I actually have 3 more patches if you want to review them :-)
pinchartl: sure :)
sent
pinchartl: Ok, thanks
pinchartl, javier__: http://salottisipuli.retiisi.org.uk/cgi-bin/gitweb.cgi?p=~sailus/raw2rgbpnm.git;a=summary
sailus: thanks. can you get that indexed by google ?
It's been there all the time.
How do you do that?
I could add a link to gitweb to the main page I guess.
That might be actually a good idea.
that would be useful
and also
how about git.retiisi.org.uk ?
Looks like I've changed it in 2008...
I can add an alias.
thanks
and let me know if you like my three patches :-)
sailus: cool, I didn't know about that repo. I'll delete the temporary one I created at github
javier__: or maybe link to Sakari's repo from there
that might help getting it indexed by google
sailus: you can also post an announcement on linux-media
pinchartl: OK
Don't you think it's a bit late for an announcement? :-)
Sure I can send one.
pinchartl: your 3 format patches looks good to me
Hmm. I even have my old GPG key here I replaced in 2011.
Time to update, huh?
There's now git.retiisi.org.uk, redirecting from root to gitweb.cgi.
And a link from my homepage.
Eight years is a good interval for homepage updates, right?
sailus: slightly late, yes :-) but having it archived on the mailing list will improve search engine ratings a bit
sailus: I'm not sure I'd call it an interval :-)
sailus: if you can configure your web server to turn http://git.retiisi.org.uk/cgi-bin/gitweb.cgi?p=~sailus/raw2rgbpnm.git into http://git.retiisi.org.uk/sailus/raw2rgbpnm it would help too
pinchartl: Done.
Well, the gitweb is now available in the root.
hverkuil: ping
sailus: much better, thanks
nite