blob: 19cf7cc8c03e9a3df97b75ce3a7dd61e1f396426 [file] [log] [blame]
Brad Bishop1a4b7ee2018-12-16 17:11:34 -08001From 37d7c9117b70e75ebed21c6c8192251f127c0fb0 Mon Sep 17 00:00:00 2001
2From: Nancy Durgin <nancy.durgin@artifex.com>
3Date: Mon, 5 Nov 2018 15:36:27 +0800
4Subject: [PATCH 1/2] Undefine some additional internal operators.
5
6.type, .writecvs, .setSMask, .currentSMask
7
8These don't seem to be referenced anywhere outside of the initialization code,
9which binds their usages. Passes cluster if they are removed.
10
11CVE: CVE-2018-18073
12Upstream-Status: Backport [git://git.ghostscript.com/ghostpdl.git]
13
14Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
15---
16 Resource/Init/gs_init.ps | 3 ++-
17 1 file changed, 2 insertions(+), 1 deletion(-)
18
19diff --git a/Resource/Init/gs_init.ps b/Resource/Init/gs_init.ps
20index f952f32..7c71d18 100644
21--- a/Resource/Init/gs_init.ps
22+++ b/Resource/Init/gs_init.ps
23@@ -2230,6 +2230,7 @@ SAFER { .setsafeglobal } if
24 /.localvmarray /.localvmdict /.localvmpackedarray /.localvmstring /.systemvmarray /.systemvmdict /.systemvmpackedarray /.systemvmstring /.systemvmfile /.systemvmlibfile
25 /.systemvmSFD /.settrapparams /.currentsystemparams /.currentuserparams /.getsystemparam /.getuserparam /.setsystemparams /.setuserparams
26 /.checkpassword /.locale_to_utf8 /.currentglobal /.gcheck /.imagepath
27+ /.type /.writecvs /.setSMask /.currentSMask
28
29 % Used by a free user in the Library of Congress. Apparently this is used to
30 % draw a partial page, which is then filled in by the results of a barcode
31@@ -2248,7 +2249,7 @@ SAFER { .setsafeglobal } if
32 % test files/utilities, or engineers expressed a desire to keep them visible.
33 %
34 %/currentdevice /.sort /.buildfont0 /.buildfont1 /.buildfont2 /.buildfont3 /.buildfont4 /.buildfont9 /.buildfont10 /.buildfont11
35- %/.buildfotn32 /.buildfont42 /.type9mapcid /.type11mapcid /.swapcolors
36+ %/.buildfont32 /.buildfont42 /.type9mapcid /.type11mapcid /.swapcolors
37 %/currentdevice /.quit /.setuseciecolor /.needinput /.setoverprintmode /.special_op /.dicttomark /.knownget
38 %/.FAPIavailable /.FAPIpassfont /.FAPIrebuildfont /.FAPIBuildGlyph /.FAPIBuildChar /.FAPIBuildGlyph9
39 %/.tempfile /.numicc_components /.set_outputintent /.max /.min /.vmreclaim /.getpath /.setglobal
40--
412.7.4
42