Package: graphicsmagick / 1.3.30+hg15796-1~deb9u4

CVE-2019-11473-11474-1.patch Patch series | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184

# HG changeset patch
# User Bob Friesenhahn <bfriesen@GraphicsMagick.org>
# Date 1555263241 18000
# Node ID 5402c5cbd8bdce7d59a6f2253bf7841220122528
# Parent  ce367bc7f85e0b1fd312c8cbd024cb502b12985b
ReadXWDImage(): Add more validation logic to avoid crashes due to FPE and invalid reads.

diff -r ce367bc7f85e -r 5402c5cbd8bd coders/xwd.c
--- a/coders/xwd.c	Sat Apr 13 13:40:50 2019 -0500
+++ b/coders/xwd.c	Sun Apr 14 12:34:01 2019 -0500
@@ -321,6 +321,7 @@
   if (header.header_size < sz_XWDheader)
     ThrowXWDReaderException(CorruptImageError,ImproperImageHeader,image);
 
+  /* Display classes  used in opening the connection */
   switch (header.visual_class)
     {
     case StaticGray:
@@ -335,11 +336,43 @@
         ThrowXWDReaderException(CorruptImageError,ImproperImageHeader,image);
       }
     }
+
+  /* XYBitmap, XYPixmap, ZPixmap */
   switch (header.pixmap_format)
     {
-    case XYBitmap:
-    case XYPixmap:
-    case ZPixmap:
+    case XYBitmap: /* 1 bit bitmap format */
+      if (header.pixmap_depth != 1)
+        ThrowXWDReaderException(CorruptImageError,ImproperImageHeader,image);
+      break;
+    case XYPixmap: /* Single plane bitmap. */
+    case ZPixmap:  /* Bitmap with 2 or more planes */
+      if ((header.pixmap_depth < 1) || (header.pixmap_depth > 32))
+        ThrowXWDReaderException(CorruptImageError,ImproperImageHeader,image);
+      break;
+    default:
+      {
+        ThrowXWDReaderException(CorruptImageError,ImproperImageHeader,image);
+      }
+    }
+
+  /* Data byte order, LSBFirst, MSBFirst */
+  switch (header.byte_order)
+    {
+    case LSBFirst:
+    case MSBFirst:
+      break;
+    default:
+      {
+        ThrowXWDReaderException(CorruptImageError,ImproperImageHeader,image);
+      }
+    }
+
+  /* Quant. of scanline 8, 16, 32 */
+  switch (header.bitmap_unit)
+    {
+    case 8:
+    case 16:
+    case 32:
       break;
     default:
       {
@@ -347,8 +380,59 @@
       }
     }
 
-  if ((header.bits_per_pixel == 0) || (header.bits_per_pixel > 32))
-    ThrowXWDReaderException(CorruptImageError,ImproperImageHeader,image);
+  /* LSBFirst, MSBFirst */
+  switch (header.bitmap_bit_order)
+    {
+    case LSBFirst:
+    case MSBFirst:
+      break;
+    default:
+      {
+        ThrowXWDReaderException(CorruptImageError,ImproperImageHeader,image);
+      }
+    }
+
+  /* 8, 16, 32 either XY or ZPixmap */
+  if ((header.pixmap_format == XYPixmap) || (header.pixmap_format == ZPixmap))
+    switch (header.bitmap_pad)
+      {
+      case 8:
+      case 16:
+      case 32:
+        break;
+      default:
+        {
+          ThrowXWDReaderException(CorruptImageError,ImproperImageHeader,image);
+        }
+      }
+
+  /* Bits per pixel (ZPixmap) */
+  switch (header.visual_class)
+    {
+    case StaticGray:
+    case GrayScale:
+      /* Gray-scale image */
+      if (header.bits_per_pixel != 1)
+        ThrowXWDReaderException(CorruptImageError,ImproperImageHeader,image);
+      break;
+    case StaticColor:
+    case PseudoColor:
+      /* Color-mapped image */
+      if ((header.bits_per_pixel < 1) || (header.bits_per_pixel > 15) ||
+          (header.colormap_entries == 0))
+        ThrowXWDReaderException(CorruptImageError,ImproperImageHeader,image);
+      break;
+    case TrueColor:
+    case DirectColor:
+      /* True-color image */
+      if ((header.bits_per_pixel != 16) && (header.bits_per_pixel != 24) &&
+          (header.bits_per_pixel != 32))
+        ThrowXWDReaderException(CorruptImageError,ImproperImageHeader,image);
+      break;
+    }
+
+
+  /* 8, 16, 32 either XY or ZPixmap */
   if ((header.bitmap_pad % 8 != 0) || (header.bitmap_pad > 32))
     ThrowXWDReaderException(CorruptImageError,ImproperImageHeader,image);
 
@@ -417,6 +501,7 @@
   */
   if (ximage->width < 0 ||
       ximage->height < 0 ||
+      ximage->xoffset < 0 ||
       ximage->format < 0 ||
       ximage->byte_order < 0 ||
       ximage->bitmap_unit < 0 ||
@@ -439,10 +524,15 @@
     if (CheckImagePixelLimits(image, exception) != MagickPass)
       ThrowXWDReaderException(ResourceLimitError,ImagePixelLimitExceeded,image);
   image->depth=8;
-  if ((header.ncolors == 0U) ||
-      ((ximage->red_mask != 0) ||
-       (ximage->green_mask != 0) ||
-       (ximage->blue_mask != 0)))
+
+  /*
+    FIXME: This block of logic should be re-worked.
+  */
+  if ((header.visual_class != StaticGray) &&
+      ((header.ncolors == 0U) ||
+       ((ximage->red_mask != 0) ||
+        (ximage->green_mask != 0) ||
+        (ximage->blue_mask != 0))))
     {
       image->storage_class=DirectClass;
       if (!image_info->ping)
@@ -454,7 +544,7 @@
   else
     {
       image->storage_class=PseudoClass;
-      image->colors=header.ncolors;
+      image->colors=header.visual_class == StaticGray ? 2 : header.ncolors;
     }
   if (!image_info->ping)
     {
@@ -664,11 +754,14 @@
             if (!AllocateImageColormap(image,image->colors))
               ThrowXWDReaderException(ResourceLimitError,MemoryAllocationFailed,
                                       image);
-            for (i=0; i < (long) image->colors; i++)
+            if (colors != (XColor *) NULL)
               {
-                image->colormap[i].red=ScaleShortToQuantum(colors[i].red);
-                image->colormap[i].green=ScaleShortToQuantum(colors[i].green);
-                image->colormap[i].blue=ScaleShortToQuantum(colors[i].blue);
+                for (i=0; i < (long) image->colors; i++)
+                  {
+                    image->colormap[i].red=ScaleShortToQuantum(colors[i].red);
+                    image->colormap[i].green=ScaleShortToQuantum(colors[i].green);
+                    image->colormap[i].blue=ScaleShortToQuantum(colors[i].blue);
+                  }
               }
             for (y=0; y < (long) image->rows; y++)
               {