|
|
d285d7 |
From 40e9d1a0a69f01b55b4fa131bc253c7c09a0ae91 Mon Sep 17 00:00:00 2001
|
|
|
d285d7 |
From: Heiko Lewin <heiko.lewin@worldiety.de>
|
|
|
d285d7 |
Date: Tue, 15 Dec 2020 16:48:19 +0100
|
|
|
d285d7 |
Subject: [PATCH 1/2] Fix mask usage in image-compositor
|
|
|
d285d7 |
|
|
|
d285d7 |
---
|
|
|
d285d7 |
src/cairo-image-compositor.c | 8 ++--
|
|
|
d285d7 |
test/Makefile.sources | 1 +
|
|
|
d285d7 |
test/bug-image-compositor.c | 39 ++++++++++++++++++++
|
|
|
d285d7 |
test/reference/bug-image-compositor.ref.png | Bin 0 -> 185 bytes
|
|
|
d285d7 |
4 files changed, 44 insertions(+), 4 deletions(-)
|
|
|
d285d7 |
create mode 100644 test/bug-image-compositor.c
|
|
|
d285d7 |
create mode 100644 test/reference/bug-image-compositor.ref.png
|
|
|
d285d7 |
|
|
|
d285d7 |
diff --git a/src/cairo-image-compositor.c b/src/cairo-image-compositor.c
|
|
|
d285d7 |
index 122a8ca42..b20e2ec78 100644
|
|
|
d285d7 |
--- a/src/cairo-image-compositor.c
|
|
|
d285d7 |
+++ b/src/cairo-image-compositor.c
|
|
|
d285d7 |
@@ -2601,14 +2601,14 @@ _inplace_src_spans (void *abstract_renderer, int y, int h,
|
|
|
d285d7 |
unsigned num_spans)
|
|
|
d285d7 |
{
|
|
|
d285d7 |
cairo_image_span_renderer_t *r = abstract_renderer;
|
|
|
d285d7 |
- uint8_t *m;
|
|
|
d285d7 |
+ uint8_t *m, *base = (uint8_t*)pixman_image_get_data(r->mask);
|
|
|
d285d7 |
int x0;
|
|
|
d285d7 |
|
|
|
d285d7 |
if (num_spans == 0)
|
|
|
d285d7 |
return CAIRO_STATUS_SUCCESS;
|
|
|
d285d7 |
|
|
|
d285d7 |
x0 = spans[0].x;
|
|
|
d285d7 |
- m = r->_buf;
|
|
|
d285d7 |
+ m = base;
|
|
|
d285d7 |
do {
|
|
|
d285d7 |
int len = spans[1].x - spans[0].x;
|
|
|
d285d7 |
if (len >= r->u.composite.run_length && spans[0].coverage == 0xff) {
|
|
|
d285d7 |
@@ -2646,7 +2646,7 @@ _inplace_src_spans (void *abstract_renderer, int y, int h,
|
|
|
d285d7 |
spans[0].x, y,
|
|
|
d285d7 |
spans[1].x - spans[0].x, h);
|
|
|
d285d7 |
|
|
|
d285d7 |
- m = r->_buf;
|
|
|
d285d7 |
+ m = base;
|
|
|
d285d7 |
x0 = spans[1].x;
|
|
|
d285d7 |
} else if (spans[0].coverage == 0x0) {
|
|
|
d285d7 |
if (spans[0].x != x0) {
|
|
|
d285d7 |
@@ -2675,7 +2675,7 @@ _inplace_src_spans (void *abstract_renderer, int y, int h,
|
|
|
d285d7 |
#endif
|
|
|
d285d7 |
}
|
|
|
d285d7 |
|
|
|
d285d7 |
- m = r->_buf;
|
|
|
d285d7 |
+ m = base;
|
|
|
d285d7 |
x0 = spans[1].x;
|
|
|
d285d7 |
} else {
|
|
|
d285d7 |
*m++ = spans[0].coverage;
|
|
|
d285d7 |
diff --git a/test/Makefile.sources b/test/Makefile.sources
|
|
|
d285d7 |
index c47131faf..86fd53d15 100644
|
|
|
d285d7 |
--- a/test/Makefile.sources
|
|
|
d285d7 |
+++ b/test/Makefile.sources
|
|
|
d285d7 |
@@ -33,6 +33,7 @@ test_sources = \
|
|
|
d285d7 |
bug-source-cu.c \
|
|
|
d285d7 |
bug-extents.c \
|
|
|
d285d7 |
bug-seams.c \
|
|
|
d285d7 |
+ bug-image-compositor.c \
|
|
|
d285d7 |
caps.c \
|
|
|
d285d7 |
checkerboard.c \
|
|
|
d285d7 |
caps-joins.c \
|
|
|
d285d7 |
diff --git a/test/bug-image-compositor.c b/test/bug-image-compositor.c
|
|
|
d285d7 |
new file mode 100644
|
|
|
d285d7 |
index 000000000..fc4fd370b
|
|
|
d285d7 |
--- /dev/null
|
|
|
d285d7 |
+++ b/test/bug-image-compositor.c
|
|
|
d285d7 |
@@ -0,0 +1,39 @@
|
|
|
d285d7 |
+#include "cairo-test.h"
|
|
|
d285d7 |
+
|
|
|
d285d7 |
+static cairo_test_status_t
|
|
|
d285d7 |
+draw (cairo_t *cr, int width, int height)
|
|
|
d285d7 |
+{
|
|
|
d285d7 |
+ cairo_set_source_rgb (cr, 0., 0., 0.);
|
|
|
d285d7 |
+ cairo_paint (cr);
|
|
|
d285d7 |
+
|
|
|
d285d7 |
+ cairo_set_source_rgb (cr, 1., 1., 1.);
|
|
|
d285d7 |
+ cairo_set_line_width (cr, 1.);
|
|
|
d285d7 |
+
|
|
|
d285d7 |
+ cairo_pattern_t *p = cairo_pattern_create_linear (0, 0, width, height);
|
|
|
d285d7 |
+ cairo_pattern_add_color_stop_rgb (p, 0, 0.99, 1, 1);
|
|
|
d285d7 |
+ cairo_pattern_add_color_stop_rgb (p, 1, 1, 1, 1);
|
|
|
d285d7 |
+ cairo_set_source (cr, p);
|
|
|
d285d7 |
+
|
|
|
d285d7 |
+ cairo_move_to (cr, 0.5, -1);
|
|
|
d285d7 |
+ for (int i = 0; i < width; i+=3) {
|
|
|
d285d7 |
+ cairo_rel_line_to (cr, 2, 2);
|
|
|
d285d7 |
+ cairo_rel_line_to (cr, 1, -2);
|
|
|
d285d7 |
+ }
|
|
|
d285d7 |
+
|
|
|
d285d7 |
+ cairo_set_operator (cr, CAIRO_OPERATOR_SOURCE);
|
|
|
d285d7 |
+ cairo_stroke (cr);
|
|
|
d285d7 |
+
|
|
|
d285d7 |
+ cairo_pattern_destroy(p);
|
|
|
d285d7 |
+
|
|
|
d285d7 |
+ return CAIRO_TEST_SUCCESS;
|
|
|
d285d7 |
+}
|
|
|
d285d7 |
+
|
|
|
d285d7 |
+
|
|
|
d285d7 |
+CAIRO_TEST (bug_image_compositor,
|
|
|
d285d7 |
+ "Crash in image-compositor",
|
|
|
d285d7 |
+ "stroke, stress", /* keywords */
|
|
|
d285d7 |
+ NULL, /* requirements */
|
|
|
d285d7 |
+ 10000, 1,
|
|
|
d285d7 |
+ NULL, draw)
|
|
|
d285d7 |
+
|
|
|
d285d7 |
+
|
|
|
d285d7 |
diff --git a/test/reference/bug-image-compositor.ref.png b/test/reference/bug-image-compositor.ref.png
|
|
|
d285d7 |
new file mode 100644
|
|
|
d285d7 |
index 0000000000000000000000000000000000000000..939f659d2c8620e9927a3a79f5e96fb639c418be
|
|
|
d285d7 |
GIT binary patch
|
|
|
d285d7 |
literal 185
|
|
|
d285d7 |
zcmeAS@N?(olHy`uVBq!ia0y~yP!|BQ89A7M<o7+wF+hqf$=lt9;Xep2*t>i(P$bXO
|
|
|
d285d7 |
z#WAE}&f8-f1se=_SPWL_NSx=C)BnJ0eBr6Z%1egFEOv(*t#+|{>X&v^RS7GQe(vez
|
|
|
d285d7 |
lf)$wgmAfM(p2Sx&&i!{gWy)N&qd=P(JYD@<);T3K0RWsgHuC@g
|
|
|
d285d7 |
|
|
|
d285d7 |
literal 0
|
|
|
d285d7 |
HcmV?d00001
|
|
|
d285d7 |
|
|
|
d285d7 |
--
|
|
|
d285d7 |
2.34.1
|
|
|
d285d7 |
|
|
|
d285d7 |
|
|
|
d285d7 |
From afc23bfdc3c2597b9fe0ee34b9b4bfa47fa03698 Mon Sep 17 00:00:00 2001
|
|
|
d285d7 |
From: Heiko Lewin <heiko.lewin@worldiety.de>
|
|
|
d285d7 |
Date: Tue, 15 Dec 2020 17:14:18 +0100
|
|
|
d285d7 |
Subject: [PATCH 2/2] Minor cleanups
|
|
|
d285d7 |
|
|
|
d285d7 |
---
|
|
|
d285d7 |
test/bug-image-compositor.c | 33 ++++++++++++++++++++++++++++++---
|
|
|
d285d7 |
1 file changed, 30 insertions(+), 3 deletions(-)
|
|
|
d285d7 |
|
|
|
d285d7 |
diff --git a/test/bug-image-compositor.c b/test/bug-image-compositor.c
|
|
|
d285d7 |
index fc4fd370b..304ea089c 100644
|
|
|
d285d7 |
--- a/test/bug-image-compositor.c
|
|
|
d285d7 |
+++ b/test/bug-image-compositor.c
|
|
|
d285d7 |
@@ -1,5 +1,34 @@
|
|
|
d285d7 |
+/*
|
|
|
d285d7 |
+ * Copyright © 2020 Uli Schlachter, Heiko Lewin
|
|
|
d285d7 |
+ *
|
|
|
d285d7 |
+ * Permission is hereby granted, free of charge, to any person
|
|
|
d285d7 |
+ * obtaining a copy of this software and associated documentation
|
|
|
d285d7 |
+ * files (the "Software"), to deal in the Software without
|
|
|
d285d7 |
+ * restriction, including without limitation the rights to use, copy,
|
|
|
d285d7 |
+ * modify, merge, publish, distribute, sublicense, and/or sell copies
|
|
|
d285d7 |
+ * of the Software, and to permit persons to whom the Software is
|
|
|
d285d7 |
+ * furnished to do so, subject to the following conditions:
|
|
|
d285d7 |
+ *
|
|
|
d285d7 |
+ * The above copyright notice and this permission notice shall be
|
|
|
d285d7 |
+ * included in all copies or substantial portions of the Software.
|
|
|
d285d7 |
+ *
|
|
|
d285d7 |
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
|
d285d7 |
+ * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
d285d7 |
+ * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
|
d285d7 |
+ * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
|
|
|
d285d7 |
+ * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
|
|
|
d285d7 |
+ * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
|
d285d7 |
+ * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
d285d7 |
+ * SOFTWARE.
|
|
|
d285d7 |
+ *
|
|
|
d285d7 |
+ * Author: Uli Schlachter <psychon@znc.in>
|
|
|
d285d7 |
+ * Author: Heiko Lewin <hlewin@gmx.de>
|
|
|
d285d7 |
+ */
|
|
|
d285d7 |
#include "cairo-test.h"
|
|
|
d285d7 |
|
|
|
d285d7 |
+
|
|
|
d285d7 |
+/* This test reproduces an overflow of a mask-buffer in cairo-image-compositor.c */
|
|
|
d285d7 |
+
|
|
|
d285d7 |
static cairo_test_status_t
|
|
|
d285d7 |
draw (cairo_t *cr, int width, int height)
|
|
|
d285d7 |
{
|
|
|
d285d7 |
@@ -13,6 +42,7 @@ draw (cairo_t *cr, int width, int height)
|
|
|
d285d7 |
cairo_pattern_add_color_stop_rgb (p, 0, 0.99, 1, 1);
|
|
|
d285d7 |
cairo_pattern_add_color_stop_rgb (p, 1, 1, 1, 1);
|
|
|
d285d7 |
cairo_set_source (cr, p);
|
|
|
d285d7 |
+ cairo_pattern_destroy(p);
|
|
|
d285d7 |
|
|
|
d285d7 |
cairo_move_to (cr, 0.5, -1);
|
|
|
d285d7 |
for (int i = 0; i < width; i+=3) {
|
|
|
d285d7 |
@@ -23,8 +53,6 @@ draw (cairo_t *cr, int width, int height)
|
|
|
d285d7 |
cairo_set_operator (cr, CAIRO_OPERATOR_SOURCE);
|
|
|
d285d7 |
cairo_stroke (cr);
|
|
|
d285d7 |
|
|
|
d285d7 |
- cairo_pattern_destroy(p);
|
|
|
d285d7 |
-
|
|
|
d285d7 |
return CAIRO_TEST_SUCCESS;
|
|
|
d285d7 |
}
|
|
|
d285d7 |
|
|
|
d285d7 |
@@ -36,4 +64,3 @@ CAIRO_TEST (bug_image_compositor,
|
|
|
d285d7 |
10000, 1,
|
|
|
d285d7 |
NULL, draw)
|
|
|
d285d7 |
|
|
|
d285d7 |
-
|
|
|
d285d7 |
--
|
|
|
d285d7 |
2.34.1
|
|
|
d285d7 |
|