RESOLVED FIXED Bug 238239
REGRESSION (r287807): WEBGL_multi_draw validation rejecting valid arguments
https://bugs.webkit.org/show_bug.cgi?id=238239
Summary REGRESSION (r287807): WEBGL_multi_draw validation rejecting valid arguments
Kenneth Russell
Reported 2022-03-22 16:29:30 PDT
A change was made to the validation code for WEBGL_multi_draw in Bug 234966 which was incorrect. Unfortunately, it causes about half of the tests in conformance/extensions/webgl-multi-draw.html to fail, and breaks customer applications, as reported on https://groups.google.com/g/webgl-dev-list .
Attachments
Patch (2.20 KB, patch)
2022-03-22 16:51 PDT, Kenneth Russell
no flags
alternative impl (3.22 KB, patch)
2022-03-23 07:14 PDT, Kimmo Kinnunen
no flags
alternative impl (3.43 KB, patch)
2022-03-23 07:16 PDT, Kimmo Kinnunen
no flags
Patch (3.52 KB, patch)
2022-03-23 11:35 PDT, Kenneth Russell
no flags
Kenneth Russell
Comment 1 2022-03-22 16:51:55 PDT
Kenneth Russell
Comment 2 2022-03-22 16:56:24 PDT
Kimmo / Brent / Darin: please review. Thanks. Confirmed by running: https://www.khronos.org/registry/webgl/sdk/tests/conformance/extensions/webgl-multi-draw.html locally that this fixes the test.
Darin Adler
Comment 3 2022-03-23 05:36:33 PDT
Comment on attachment 455455 [details] Patch This seems too complicated to me. Couldn’t this also be solved by removing the incorrect type cast of size - drawCount to GCGLuint?
Darin Adler
Comment 4 2022-03-23 05:38:02 PDT
Comment on attachment 455455 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=455455&action=review > Source/WebCore/html/canvas/WebGLMultiDraw.cpp:-137 > - if (offset >= static_cast<GCGLuint>(size - drawcount)) { The bug seems to be that this can chop a large integer to a smaller one. Can we just change this to not do that rather than adding more code?
Darin Adler
Comment 5 2022-03-23 05:40:08 PDT
Comment on attachment 455455 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=455455&action=review >> Source/WebCore/html/canvas/WebGLMultiDraw.cpp:-137 >> - if (offset >= static_cast<GCGLuint>(size - drawcount)) { > > The bug seems to be that this can chop a large integer to a smaller one. Can we just change this to not do that rather than adding more code? Or is the real problem that this is used >= rather than >? I’d like to understand what the actual problem was before weighing in on the solution.
Darin Adler
Comment 6 2022-03-23 05:41:29 PDT
Your post about this says there are “gaps in WebGL testing in WebKit” but this patch does not include any new WebGL tests.
Darin Adler
Comment 7 2022-03-23 05:43:22 PDT
Webkit policy requires adding a new test case when fixing a bug so we do need to add a test case here.
Darin Adler
Comment 8 2022-03-23 05:44:19 PDT
Darin Adler
Comment 9 2022-03-23 05:45:04 PDT
Is there something that prevents us from using these Kronos test cases as part of the Webkit test suite?
Radar WebKit Bug Importer
Comment 10 2022-03-23 05:47:41 PDT
Radar WebKit Bug Importer
Comment 11 2022-03-23 05:48:51 PDT
Darin Adler
Comment 12 2022-03-23 05:49:35 PDT
I see now, by to 20753 is the reason we had this untested. Is there something we can do to resolve that so that we can at least run some of that test?
Darin Adler
Comment 13 2022-03-23 06:04:59 PDT
Besides the disabled test leaving us vulnerable, my suggestion for a cleaner way to write the range check in the first place is probably what led to the mistake. I understand if others would like to take Ken‘s patch as is. I would, however, like to understand what was wrong with the original and I think that could lead to a more elegant fix. However I will not insist on this; urgent, I think, to have this fixed one way or another.
Kimmo Kinnunen
Comment 14 2022-03-23 07:14:43 PDT
Created attachment 455495 [details] alternative impl
Kimmo Kinnunen
Comment 15 2022-03-23 07:16:48 PDT
Created attachment 455496 [details] alternative impl
Kimmo Kinnunen
Comment 16 2022-03-23 07:19:42 PDT
*** Bug 237418 has been marked as a duplicate of this bug. ***
Darin Adler
Comment 17 2022-03-23 07:46:35 PDT
Comment on attachment 455496 [details] alternative impl Yes, I like this better. i’m gonna say r=me on this one, assuming we make sure tests really are all passing
Kenneth Russell
Comment 18 2022-03-23 11:35:56 PDT
Kenneth Russell
Comment 19 2022-03-23 11:38:25 PDT
Darin and Kimmo, thanks for your review and for pointing out the alternative implementation (and my unclear description of what was wrong). Anyway, here is Kimmo's patch with his authorship attributed in the ChangeLog, and the tests marked Slow in TestExpectations as they take a while to run. If the EWS is green I'll CQ this later today.
Kenneth Russell
Comment 20 2022-03-23 18:34:00 PDT
The http/wpt/webrtc/getUserMedia-processSwapping.html failure on mac-AS-debug-wk2 is unrelated; filed Bug 238303 about it. Notably, webgl-multi-draw.html passed in that run in both the WebGL 1.0.x and 2.0.y conformance tests: https://ews-build.webkit.org/#/builders/60/builds/27223
Kenneth Russell
Comment 21 2022-03-23 18:35:11 PDT
Kimmo, could you take over this patch from me and try to land it during your workday? In particular, to see if the other EWS bots pass.
EWS
Comment 22 2022-03-24 05:45:35 PDT
Committed r291791 (248819@main): <https://commits.webkit.org/248819@main> All reviewed patches have been landed. Closing bug and clearing flags on attachment 455532 [details].
Brent Fulgham
Comment 23 2022-05-26 15:03:24 PDT
This fix shipped with Safari 15.5 (all platforms).
Note You need to log in before you can comment on or make changes to this bug.