Bug 102142 - cairo_image_surface_create_from_png() returns PNG errors as CAIRO_STATUS_NO_MEMORY
Summary: cairo_image_surface_create_from_png() returns PNG errors as CAIRO_STATUS_NO_M...
Status: RESOLVED MOVED
Alias: None
Product: cairo
Classification: Unclassified
Component: png functions (show other bugs)
Version: unspecified
Hardware: Other All
: medium normal
Assignee: Carl Worth
QA Contact: cairo-bugs mailing list
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2017-08-10 20:49 UTC by Federico Mena-Quintero
Modified: 2018-08-25 13:53 UTC (History)
0 users

See Also:
i915 platform:
i915 features:


Attachments

Description Federico Mena-Quintero 2017-08-10 20:49:26 UTC
I was writing some tests for cairo-rs (the Rust binding to Cairo) and tried feeding it an invalid PNG.

We get to cairo-png.c:read_png() where it does

    if (setjmp (png_jmpbuf (png))) {
	surface = _cairo_surface_create_in_error (status);
	goto BAIL;
    }

There, the status it gets was set by png_simple_error_callback():

static void
png_simple_error_callback (png_structp png,
	                   png_const_charp error_msg)
{
    cairo_status_t *error = png_get_error_ptr (png);

    if (*error == CAIRO_STATUS_SUCCESS)
	*error = _cairo_error (CAIRO_STATUS_PNG_ERROR);

    longjmp (png_jmpbuf (png), 1);
}

I thought that I would get an error surface with CAIRO_STATUS_PNG_ERROR out of the call to cairo_image_surface_get_from_png(), but read_png()'s call to _cairo_surface_create_in_error() has this:

cairo_surface_t *
_cairo_surface_create_in_error (cairo_status_t status)
{
    switch (status) {
    ...
    case CAIRO_STATUS_PNG_ERROR:
    ... other fall throughs ...
    default:
	_cairo_error_throw (CAIRO_STATUS_NO_MEMORY);
	return (cairo_surface_t *) &_cairo_surface_nil;
    }
}

And _cairo_surface_nil is the one with CAIRO_STATUS_NO_MEMORY.

I *think* we could meaningfully distinguish "out of memory in libpng" from "libpng reports an error in the data" from "I/O error in the reader functions" by a combination of things.

1. Use png_create_read_struct_2() instead of png_create_read_struct().  That would let us pass our own malloc() replacement, detect OOM, and store a flag to that effect in Cairo's own png_read_closure_t.

2. Add a new error surface for PNG_ERROR (why are all those fall-throughs to _cairo_surface_nil?).

Comments appreciated.
Comment 1 GitLab Migration User 2018-08-25 13:53:57 UTC
-- GitLab Migration Automatic Message --

This bug has been migrated to freedesktop.org's GitLab instance and has been closed from further activity.

You can subscribe and participate further through the new bug through this link to our GitLab instance: https://gitlab.freedesktop.org/cairo/cairo/issues/254.


Use of freedesktop.org services, including Bugzilla, is subject to our Code of Conduct. How we collect and use information is described in our Privacy Policy.