-
Notifications
You must be signed in to change notification settings - Fork 42
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Nexus: %20N header crashes Kodi #229
Comments
Note that this crash occurs on Nexus only. It works ok on Matrix. @matthuisman do you know if this is kodi issue or an add-on issue? @basilgello FYI |
i use the same pipe headers fine with IA and built-in ffmpeg. Just crashes with ffmpeg direct only |
Interesting. But where's the stacktrace? |
@basilgello do the URLS cause a crash for you on non-windows? |
@basilgello how can i get stacktrace without a debug build? |
You will need a debug build. |
i dont really want to setup the build environment on this pc so might just leave it for now. Most of the time stacktrace isn't required for bug issues I hope? |
We should be able to build you a debug build in Jenkins. |
Here is a debug build and a PDB. The add-on should be included in the build. I don’t know if the add-on is also built with debug. I guess we’ll find out. https://mirrors.kodi.tv/test-builds/windows/win64/KodiSetup-20230306-038f4e73-Nexus-x64.exe https://mirrors.kodi.tv/test-builds/windows/win64/KodiSetup-20230306-038f4e73-Nexus-x64.pdb If add-on is not debug I’ll find someone in the team to build it for us. I assume you would only need the PDB for the add-on. |
couldnt get any crash log out of kodi. maybe I need visual studio? Anyway - here is test strm that can be used to reproduce that should work any where in the world below works on all (no %20N in user-agent) |
I can not reproduce the crash on Debian. However, this closely reminds me the parsing error in urldecode. |
Yes, likely here:
But that same code is in Kodi: https://github.com/xbmc/xbmc/blob/eac2e81c62aec2099404d2eb66ccb64a67e9bcfd/xbmc/URL.cpp#L647 |
Yes, you would need VS and load the PDB file while running the binary. VS Code should also be able to do this. |
Why whole VS? WinDbg / cdb no??? I can try setting VM to reproduce the issue |
I’m not familiar with Windows debug tools at all. If you can do that @basilgello then great. |
any updates on this? really wanting to try using ffmpeg direct for timeshift :) |
googled %20n crash and found Looks like a printf / sprintf issue |
Bonus points if you can tell me which is the offending statement! |
purely because the last line in log is ffmpegdirect::FFmpegStream::Open - av_find_stream_info finished |
changed the N to a M i get
When its N, it doesnt get that last line. |
Crash
https://rbmn-live.akamaized.net/hls/live/590964/BoRB-AT/master.m3u8|user-agent=Mozilla/5.0%20%28Windows%20NT%2010.0%3B%20Win64%3B%20x64%29%20AppleWebKit/537.36%20%28KHTML%2C%20like%20Gecko%29%20Chrome/98.0.4758.102%20Safari/537.36
Removed characters until I got something that worked
https://rbmn-live.akamaized.net/hls/live/590964/BoRB-AT/master.m3u8|user-agent=Mozilla/5.0%20%28Windows%20
Then trying below breaks:
https://rbmn-live.akamaized.net/hls/live/590964/BoRB-AT/master.m3u8|user-agent=Mozilla/5.0%20%28Windows%20N
However, below works:
https://rbmn-live.akamaized.net/hls/live/590964/BoRB-AT/master.m3u8|user-agent=Mozilla/5.0%20%28Windows%20A
not a length issue as below works fine
https://rbmn-live.akamaized.net/hls/live/590964/BoRB-AT/master.m3u8|user-agent=Mozilla/5.0%20%28Windowsabcdefgsdfdsfsdtersfddsfsdte
and also non-encoded works fine:
https://rbmn-live.akamaized.net/hls/live/590964/BoRB-AT/master.m3u8|user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36
finally I tried
https://rbmn-live.akamaized.net/hls/live/590964/BoRB-AT/master.m3u8|user-agent=%20N
and that causes CRASH. and so does %20n
but all other letters seem ok.
Weird!
The text was updated successfully, but these errors were encountered: