large-source.c 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. /*
  2. * Copyright © Chris Wilson, 2008
  3. *
  4. * Permission to use, copy, modify, distribute, and sell this software
  5. * and its documentation for any purpose is hereby granted without
  6. * fee, provided that the above copyright notice appear in all copies
  7. * and that both that copyright notice and this permission notice
  8. * appear in supporting documentation, and that the name of
  9. * Chris Wilson not be used in advertising or publicity pertaining to
  10. * distribution of the software without specific, written prior
  11. * permission. Chris Wilson makes no representations about the
  12. * suitability of this software for any purpose. It is provided "as
  13. * is" without express or implied warranty.
  14. *
  15. * CHRIS WILSON DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS
  16. * SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
  17. * FITNESS, IN NO EVENT SHALL CHRIS WILSON BE LIABLE FOR ANY SPECIAL,
  18. * INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER
  19. * RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
  20. * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
  21. * IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  22. *
  23. * Authors: Chris Wilson <chris@chris-wilson.co.uk>
  24. */
  25. #include "cairo-test.h"
  26. /* This is a test case for the following bug:
  27. *
  28. * crafted gif file will crash firefox
  29. * [XError: 'BadAlloc (insufficient resources for operation)']
  30. * https://bugzilla.mozilla.org/show_bug.cgi?id=424333
  31. */
  32. #ifdef WORDS_BIGENDIAN
  33. #define RED_MASK 0xA0
  34. #define GREEN_MASK 0xA
  35. #else
  36. #define RED_MASK 0x5
  37. #define GREEN_MASK 0x50
  38. #endif
  39. static cairo_test_status_t
  40. draw (cairo_t *cr, int width, int height)
  41. {
  42. cairo_surface_t *surface;
  43. unsigned char *data;
  44. cairo_set_source_rgb (cr, 0, 0, 1); /* blue */
  45. cairo_paint (cr);
  46. surface = cairo_image_surface_create (CAIRO_FORMAT_A1, 32000, 20);
  47. data = cairo_image_surface_get_data (surface);
  48. if (data != NULL) {
  49. int stride = cairo_image_surface_get_stride (surface);
  50. int width = cairo_image_surface_get_width (surface);
  51. int height = cairo_image_surface_get_height (surface);
  52. int x, y;
  53. for (y = 0; y < height; y++) {
  54. for (x = 0; x < (width + 7) / 8; x++)
  55. data[x] = RED_MASK;
  56. data += stride;
  57. }
  58. cairo_surface_mark_dirty (surface);
  59. }
  60. cairo_set_source_rgb (cr, 1, 0, 0); /* red */
  61. cairo_mask_surface (cr, surface, 0, 0);
  62. cairo_surface_destroy (surface);
  63. surface = cairo_image_surface_create (CAIRO_FORMAT_A1, 20, 32000);
  64. data = cairo_image_surface_get_data (surface);
  65. if (data != NULL) {
  66. int stride = cairo_image_surface_get_stride (surface);
  67. int width = cairo_image_surface_get_width (surface);
  68. int height = cairo_image_surface_get_height (surface);
  69. int x, y;
  70. for (y = 0; y < height; y++) {
  71. for (x = 0; x < (width + 7) / 8; x++)
  72. data[x] = GREEN_MASK;
  73. data += stride;
  74. }
  75. cairo_surface_mark_dirty (surface);
  76. }
  77. cairo_set_source_rgb (cr, 0, 1, 0); /* green */
  78. cairo_mask_surface (cr, surface, 0, 0);
  79. cairo_surface_destroy (surface);
  80. return CAIRO_TEST_SUCCESS;
  81. }
  82. CAIRO_TEST (large_source,
  83. "Exercises mozilla bug 424333 - handling of massive images",
  84. "stress, source", /* keywords */
  85. NULL, /* requirements */
  86. 20, 20,
  87. NULL, draw)