121925
From 1281e56682692859e726e24fff30e44aac6f948b Mon Sep 17 00:00:00 2001
121925
From: nagachika <nagachika@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>
121925
Date: Wed, 11 Oct 2017 13:48:14 +0000
121925
Subject: [PATCH] merge revision(s) 60149: [Backport #14003]
121925
121925
	Merge rubygems-2.6.14 changes.
121925
121925
	  It fixed http://blog.rubygems.org/2017/10/09/unsafe-object-deserialization-vulnerability.html
121925
121925
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_4@60168 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
121925
---
121925
 lib/rubygems.rb               |  5 +++--
121925
 lib/rubygems/config_file.rb   |  2 +-
121925
 lib/rubygems/package.rb       |  2 +-
121925
 lib/rubygems/package/old.rb   |  2 +-
121925
 lib/rubygems/safe_yaml.rb     | 48 +++++++++++++++++++++++++++++++++++++++++++
121925
 lib/rubygems/specification.rb |  2 +-
121925
 6 files changed, 55 insertions(+), 6 deletions(-)
121925
 create mode 100644 lib/rubygems/safe_yaml.rb
121925
121925
diff --git a/lib/rubygems.rb b/lib/rubygems.rb
121925
index 55aa85b8b2bd..0685bcb3c629 100644
121925
--- a/lib/rubygems.rb
121925
+++ b/lib/rubygems.rb
121925
@@ -574,7 +574,7 @@ def self.load_yaml
121925
 
121925
     unless test_syck
121925
       begin
121925
-        gem 'psych', '~> 1.2', '>= 1.2.1'
121925
+        gem 'psych', '>= 2.0.0'
121925
       rescue Gem::LoadError
121925
         # It's OK if the user does not have the psych gem installed.  We will
121925
         # attempt to require the stdlib version
121925
@@ -598,6 +598,7 @@ def self.load_yaml
121925
     end
121925
 
121925
     require 'yaml'
121925
+    require 'rubygems/safe_yaml'
121925
 
121925
     # If we're supposed to be using syck, then we may have to force
121925
     # activate it via the YAML::ENGINE API.
121925
diff --git a/lib/rubygems/config_file.rb b/lib/rubygems/config_file.rb
121925
index c95d7dd1f14e..63583b361615 100644
121925
--- a/lib/rubygems/config_file.rb
121925
+++ b/lib/rubygems/config_file.rb
121925
@@ -316,7 +316,7 @@ def load_file(filename)
121925
     return {} unless filename and File.exist? filename
121925
 
121925
     begin
121925
-      content = YAML.load(File.read(filename))
121925
+      content = Gem::SafeYAML.load(File.read(filename))
121925
       unless content.kind_of? Hash
121925
         warn "Failed to load #{filename} because it doesn't contain valid YAML hash"
121925
         return {}
121925
diff --git a/lib/rubygems/package.rb b/lib/rubygems/package.rb
121925
index c36e71d800a2..77811ed5ecaa 100644
121925
--- a/lib/rubygems/package.rb
121925
+++ b/lib/rubygems/package.rb
121925
@@ -418,7 +418,7 @@ def read_checksums gem
121925
 
121925
     @checksums = gem.seek 'checksums.yaml.gz' do |entry|
121925
       Zlib::GzipReader.wrap entry do |gz_io|
121925
-        YAML.load gz_io.read
121925
+        Gem::SafeYAML.safe_load gz_io.read
121925
       end
121925
     end
121925
   end
121925
diff --git a/lib/rubygems/package/old.rb b/lib/rubygems/package/old.rb
121925
index 5e722baa3540..071f7141ab78 100644
121925
--- a/lib/rubygems/package/old.rb
121925
+++ b/lib/rubygems/package/old.rb
121925
@@ -100,7 +100,7 @@ def file_list io # :nodoc:
121925
       header << line
121925
     end
121925
 
121925
-    YAML.load header
121925
+    Gem::SafeYAML.safe_load header
121925
   end
121925
 
121925
   ##
121925
diff --git a/lib/rubygems/safe_yaml.rb b/lib/rubygems/safe_yaml.rb
121925
new file mode 100644
121925
index 000000000000..b98cfaa5e60d
121925
--- /dev/null
121925
+++ b/lib/rubygems/safe_yaml.rb
121925
@@ -0,0 +1,48 @@
121925
+module Gem
121925
+
121925
+  ###
121925
+  # This module is used for safely loading YAML specs from a gem.  The
121925
+  # `safe_load` method defined on this module is specifically designed for
121925
+  # loading Gem specifications.  For loading other YAML safely, please see
121925
+  # Psych.safe_load
121925
+
121925
+  module SafeYAML
121925
+    WHITELISTED_CLASSES = %w(
121925
+      Symbol
121925
+      Time
121925
+      Date
121925
+      Gem::Dependency
121925
+      Gem::Platform
121925
+      Gem::Requirement
121925
+      Gem::Specification
121925
+      Gem::Version
121925
+      Gem::Version::Requirement
121925
+      YAML::Syck::DefaultKey
121925
+      Syck::DefaultKey
121925
+    )
121925
+
121925
+    WHITELISTED_SYMBOLS = %w(
121925
+      development
121925
+      runtime
121925
+    )
121925
+
121925
+    if ::YAML.respond_to? :safe_load
121925
+      def self.safe_load input
121925
+        ::YAML.safe_load(input, WHITELISTED_CLASSES, WHITELISTED_SYMBOLS, true)
121925
+      end
121925
+
121925
+      def self.load input
121925
+        ::YAML.safe_load(input, [::Symbol])
121925
+      end
121925
+    else
121925
+      warn "YAML safe loading is not available. Please upgrade psych to a version that supports safe loading (>= 2.0)."
121925
+      def self.safe_load input, *args
121925
+        ::YAML.load input
121925
+      end
121925
+
121925
+      def self.load input
121925
+        ::YAML.load input
121925
+      end
121925
+    end
121925
+  end
121925
+end
121925
diff --git a/lib/rubygems/specification.rb b/lib/rubygems/specification.rb
121925
index 88e320c05ac9..40e3a70d476c 100644
121925
--- a/lib/rubygems/specification.rb
121925
+++ b/lib/rubygems/specification.rb
121925
@@ -910,7 +910,7 @@ def self.from_yaml(input)
121925
     Gem.load_yaml
121925
 
121925
     input = normalize_yaml_input input
121925
-    spec = YAML.load input
121925
+    spec = Gem::SafeYAML.safe_load input
121925
 
121925
     if spec && spec.class == FalseClass then
121925
       raise Gem::EndOfYAMLException