Skip to content
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

Verify the texture buffer for tex_image_2d() call. #122

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

JerryShih
Copy link
Contributor

@JerryShih JerryShih commented Jun 2, 2017

r? @glennw @kvark

We might hit the crash when we pass an empty slice to tex_image_2d().


This change is Reviewable

src/gl_fns.rs Outdated
match opt_data {
Some(data) => {
if let Some(data) = opt_data {
if !data.is_empty() {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What about:

let ptr = match opt_data {
    Some(data) => {
        if data.is_empty() { ptr::null() } else { data.as_ptr() }
    }
    None => ptr::null(),
};

And just a single call after that?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

let ptr = match opt_data {
    Some(data) if !data.is_empty() => data.as_ptr(),
    _ => ptr::null(),
};

Copy link
Member

@emilio emilio left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good, with those.

src/gl_fns.rs Outdated
@@ -342,7 +342,6 @@ impl Gl for GlFns {
}
}

// FIXME: Does not verify buffer size -- unsafe!
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Also, this is still true (we don't verify that there is enough data on the buffer for the given format, width and height), so please add these comments back.

We will have a crash when we pass an empty slice to tex_image_2d().
Turn to pass a null() to tex_image_2d() if we have an empty slice.
@JerryShih
Copy link
Contributor Author

r? @emilio @jdm
update for review comment.

@kvark
Copy link
Member

kvark commented Jun 19, 2017

I don't understand. Why are we calling it with an empty slice?
If we are to verify the slice, we need to ensure proper length, not just check for emptiness of it.

@JerryShih
Copy link
Contributor Author

I don't understand. Why are we calling it with an empty slice?
If we are to verify the slice, we need to ensure proper length, not just check for emptiness of it.

@kvark
This idea comes from:
https://dxr.mozilla.org/mozilla-central/source/gfx/webrender_bindings/src/bindings.rs#107
If we pass a null(), then return an empty slice.

The tex_image_2d() already could accept null() and create a empty texture. I think the "empty slice" should have the same semantic. That's why I only convert the empty slice to null() here.

Copy link
Member

@kvark kvark left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JerryShih just because the Gecko binding code is incorrect, doesn't mean that gleam should accommodate to it. Gecko should pass None instead of Option<&[]>.

@JerryShih
Copy link
Contributor Author

@kvark
How about the second part? Is the reason still not strong enough?
The api doesn't restrict to pass a non-empty slice only. So, we should do something(update the api document or do something else). Otherwise, we will hit the crash.

The tex_image_2d() already could accept null() and create a empty texture. I think the "empty slice" should have the same semantic. That's why I only convert the empty slice to null() here.

@kvark
Copy link
Member

kvark commented Jun 20, 2017

The tex_image_2d() already could accept null() and create a empty texture. I think the "empty slice" should have the same semantic. That's why I only convert the empty slice to null() here.

I consider that being answered as well. Basically, it's just not sound to mix up the semantics of Some(&[]) and None. That's why we have Option as the parameter in the first place.

The api doesn't restrict to pass a non-empty slice only.

The API will also crash if the slice is non-zero but less then the requested data size. Your PR doesn't handle that range of cases, and I see an empty slice just being a sub-case of it.

So, we should do something(update the api document or do something else). Otherwise, we will hit the crash.

We should verify that the slice contains at least the required number of elements in order to prevent the crash. Notice the comment:

// FIXME: Does not verify buffer size -- unsafe!

The tex_image_2d() already could accept null() and create a empty texture. I think the "empty slice" should have the same semantic. That's why I only convert the empty slice to null() here.

It accepts None, not null. We clearly define the difference in semantics: passing Some(thing) means providing data, passing None means just allocating.

@nox
Copy link
Contributor

nox commented Oct 18, 2018

I don't see how this can be done exhaustively, given this also involves various UNPACK_* flags which can be set through glPixelStorei and we don't keep track of those in that method. IMO this method should just be unsafe.

@bors-servo
Copy link
Contributor

☔ The latest upstream changes (presumably #181) made this pull request unmergeable. Please resolve the merge conflicts.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants