Blame SOURCES/ghostscript-cve-2018-19134.patch

ed4834
From 693baf02152119af6e6afd30bb8ec76d14f84bbf Mon Sep 17 00:00:00 2001
09061c
From: Ken Sharp <ken.sharp@artifex.com>
ed4834
Date: Thu, 8 Nov 2018 14:43:32 +0000
ed4834
Subject: [PATCH] PS interpreter - check the Implementation of a Pattern before
ed4834
 use
09061c
09061c
Bug #700141 "Type confusion in setpattern"
09061c
09061c
As the bug thread says, we were not checking that the Implementation
09061c
of a pattern dictionary was a structure type, leading to a crash when
09061c
we tried to treat it as one.
09061c
09061c
Here we make the st_pattern1_instance and st_pattern2_instance
09061c
structures public definitions and in zsetcolor we check the object
09061c
stored under the Implementation key in the supplied dictionary to see if
09061c
its a t_struct or t_astruct type, and if it is that its a
09061c
st_pattern1_instance or st_pattern2_instance structure.
09061c
09061c
If either check fails we throw a typecheck error.
09061c
09061c
We need to make the st_pattern1_instance and st_pattern2_instance
09061c
definitions public as they are defined in the graphics library and we
09061c
need to check in the interpreter.
09061c
---
ed4834
 base/gsptype1.c |  2 +-
ed4834
 base/gsptype2.c |  6 +++---
ed4834
 base/gsptype2.h |  4 ++--
ed4834
 base/gxcolor2.h |  4 ++--
ed4834
 psi/zcolor.c    | 11 ++++++++---
ed4834
 5 files changed, 16 insertions(+), 11 deletions(-)
09061c
ed4834
diff --git a/base/gsptype1.c b/base/gsptype1.c
ed4834
index 27fdd5a..e98dde1 100644
ed4834
--- a/base/gsptype1.c
ed4834
+++ b/base/gsptype1.c
09061c
@@ -50,7 +50,7 @@
09061c
 
09061c
 /* GC descriptors */
09061c
 private_st_pattern1_template();
09061c
-private_st_pattern1_instance();
09061c
+public_st_pattern1_instance();
09061c
 
09061c
 /* GC procedures */
09061c
 static ENUM_PTRS_BEGIN(pattern1_instance_enum_ptrs) {
ed4834
diff --git a/base/gsptype2.c b/base/gsptype2.c
ed4834
index 791e538..c53eb2e 100644
ed4834
--- a/base/gsptype2.c
ed4834
+++ b/base/gsptype2.c
09061c
@@ -33,7 +33,7 @@
09061c
 
09061c
 /* GC descriptors */
09061c
 private_st_pattern2_template();
09061c
-private_st_pattern2_instance();
09061c
+public_st_pattern2_instance();
09061c
 
09061c
 /* GC procedures */
09061c
 static ENUM_PTRS_BEGIN(pattern2_instance_enum_ptrs) {
ed4834
@@ -206,10 +206,10 @@ gs_pattern2_set_color(const gs_client_color * pcc, gs_gstate * pgs)
ed4834
 
ed4834
     pinst->saved->overprint_mode = pgs->overprint_mode;
ed4834
     pinst->saved->overprint = pgs->overprint;
ed4834
-    
ed4834
+
09061c
     num_comps = pgs->device->color_info.num_components;
09061c
     for (k = 0; k < num_comps; k++) {
09061c
-        pgs->color_component_map.color_map[k] = 
09061c
+        pgs->color_component_map.color_map[k] =
09061c
             pinst->saved->color_component_map.color_map[k];
09061c
     }
09061c
     code = pcs->type->set_overprint(pcs, pgs);
ed4834
diff --git a/base/gsptype2.h b/base/gsptype2.h
ed4834
index f0f26d1..4186201 100644
ed4834
--- a/base/gsptype2.h
ed4834
+++ b/base/gsptype2.h
09061c
@@ -57,8 +57,8 @@ typedef struct gs_pattern2_instance_s {
09061c
     bool shfill;
09061c
 } gs_pattern2_instance_t;
09061c
 
09061c
-#define private_st_pattern2_instance() /* in gsptype2.c */\
09061c
-  gs_private_st_composite(st_pattern2_instance, gs_pattern2_instance_t,\
09061c
+#define public_st_pattern2_instance() /* in gsptype2.c */\
09061c
+  gs_public_st_composite(st_pattern2_instance, gs_pattern2_instance_t,\
09061c
     "gs_pattern2_instance_t", pattern2_instance_enum_ptrs,\
09061c
     pattern2_instance_reloc_ptrs)
09061c
 
ed4834
diff --git a/base/gxcolor2.h b/base/gxcolor2.h
ed4834
index 62ec05e..d5b1095 100644
ed4834
--- a/base/gxcolor2.h
ed4834
+++ b/base/gxcolor2.h
09061c
@@ -92,8 +92,8 @@ struct gs_pattern1_instance_s {
09061c
     gx_bitmap_id id;		/* key for cached bitmap (= id of mask) */
09061c
 };
09061c
 
09061c
-#define private_st_pattern1_instance() /* in gsptype1.c */\
09061c
-  gs_private_st_composite(st_pattern1_instance, gs_pattern1_instance_t,\
09061c
+#define public_st_pattern1_instance() /* in gsptype1.c */\
09061c
+  gs_public_st_composite(st_pattern1_instance, gs_pattern1_instance_t,\
09061c
     "gs_pattern1_instance_t", pattern1_instance_enum_ptrs,\
09061c
     pattern1_instance_reloc_ptrs)
09061c
 
ed4834
diff --git a/psi/zcolor.c b/psi/zcolor.c
ed4834
index 7a00d4e..fe81e79 100644
ed4834
--- a/psi/zcolor.c
ed4834
+++ b/psi/zcolor.c
ed4834
@@ -65,6 +65,8 @@ static const float default_0_1[] = {0, 1, 0, 1, 0, 1, 0, 1};
09061c
 
09061c
 /* imported from gsht.c */
ed4834
 extern  void    gx_set_effective_transfer(gs_gstate *);
09061c
+extern_st(st_pattern1_instance);
09061c
+extern_st(st_pattern2_instance);
09061c
 
09061c
 /* Essential forward declarations */
09061c
 static int validate_spaces(i_ctx_t *i_ctx_p, ref *arr, int *depth);
ed4834
@@ -289,6 +291,9 @@ zsetcolor(i_ctx_t * i_ctx_p)
ed4834
                 code = array_get(imemory, pImpl, 0, &pPatInst);
ed4834
                 if (code < 0)
ed4834
                     return code;
09061c
+                if (!r_is_struct(&pPatInst) || (!r_has_stype(&pPatInst, imemory, st_pattern1_instance) && !r_has_stype(&pPatInst, imemory, st_pattern2_instance)))
09061c
+                    return_error(gs_error_typecheck);
09061c
+
ed4834
                 cc.pattern = r_ptr(&pPatInst, gs_pattern_instance_t);
ed4834
                 n_numeric_comps = ( pattern_instance_uses_base_space(cc.pattern)
ed4834
                       ? n_comps - 1
ed4834
@@ -4421,7 +4426,7 @@ static int setindexedspace(i_ctx_t * i_ctx_p, ref *r, int *stage, int *cont, int
ed4834
         /* If we have a named color profile and the base space is DeviceN or
ed4834
            Separation use a different set of procedures to ensure the named
ed4834
            color remapping code is used */
ed4834
-        if (igs->icc_manager->device_named != NULL && 
ed4834
+        if (igs->icc_manager->device_named != NULL &&
ed4834
             (base_type == gs_color_space_index_Separation ||
ed4834
              base_type == gs_color_space_index_DeviceN))
ed4834
             pcs = gs_cspace_alloc(imemory, &gs_color_space_type_Indexed_Named);
ed4834
@@ -5573,7 +5578,7 @@ static int iccompareproc(i_ctx_t *i_ctx_p, ref *space, ref *testspace)
ed4834
         return 0;
ed4834
 
ed4834
     /* As a quick check see if current is same as new */
ed4834
-    if (ICCdict1.value.bytes == ICCdict2.value.bytes) 
ed4834
+    if (ICCdict1.value.bytes == ICCdict2.value.bytes)
ed4834
          return 1;
ed4834
 
ed4834
     /* Need to check all the various parts */
ed4834
@@ -5593,7 +5598,7 @@ static int iccompareproc(i_ctx_t *i_ctx_p, ref *space, ref *testspace)
ed4834
     code2 = dict_find_string(&ICCdict2, "DataSource", &tempref2);
ed4834
     if (code2 <= 0)
ed4834
         return 0;
ed4834
-    if (r_size(tempref1) != r_size(tempref2)) 
ed4834
+    if (r_size(tempref1) != r_size(tempref2))
ed4834
         return 0;
ed4834
 
ed4834
     buff_size = r_size(tempref1);
ed4834
-- 
ed4834
2.17.2
ed4834