-
Notifications
You must be signed in to change notification settings - Fork 205
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* ext/psych/lib/psych.rb: Adding Psych.safe_load for loading a user
defined, restricted subset of Ruby object types. * ext/psych/lib/psych/class_loader.rb: A class loader for encapsulating the logic for which objects are allowed to be deserialized. * ext/psych/lib/psych/deprecated.rb: Changes to use the class loader * ext/psych/lib/psych/exception.rb: ditto * ext/psych/lib/psych/json/stream.rb: ditto * ext/psych/lib/psych/nodes/node.rb: ditto * ext/psych/lib/psych/scalar_scanner.rb: ditto * ext/psych/lib/psych/stream.rb: ditto * ext/psych/lib/psych/streaming.rb: ditto * ext/psych/lib/psych/visitors/json_tree.rb: ditto * ext/psych/lib/psych/visitors/to_ruby.rb: ditto * ext/psych/lib/psych/visitors/yaml_tree.rb: ditto * ext/psych/psych_to_ruby.c: ditto * test/psych/helper.rb: ditto * test/psych/test_safe_load.rb: tests for restricted subset. * test/psych/test_scalar_scanner.rb: ditto * test/psych/visitors/test_to_ruby.rb: ditto * test/psych/visitors/test_yaml_tree.rb: ditto
- Loading branch information
1 parent
d73609e
commit 2c644e1
Showing
19 changed files
with
383 additions
and
60 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
require 'psych/omap' | ||
require 'psych/set' | ||
|
||
module Psych | ||
class ClassLoader # :nodoc: | ||
BIG_DECIMAL = 'BigDecimal' | ||
COMPLEX = 'Complex' | ||
DATE = 'Date' | ||
DATE_TIME = 'DateTime' | ||
EXCEPTION = 'Exception' | ||
OBJECT = 'Object' | ||
PSYCH_OMAP = 'Psych::Omap' | ||
PSYCH_SET = 'Psych::Set' | ||
RANGE = 'Range' | ||
RATIONAL = 'Rational' | ||
REGEXP = 'Regexp' | ||
STRUCT = 'Struct' | ||
SYMBOL = 'Symbol' | ||
|
||
def initialize | ||
@cache = CACHE.dup | ||
end | ||
|
||
def load klassname | ||
return nil if !klassname || klassname.empty? | ||
|
||
find klassname | ||
end | ||
|
||
def symbolize sym | ||
symbol | ||
sym.to_sym | ||
end | ||
|
||
constants.each do |const| | ||
konst = const_get const | ||
define_method(const.to_s.downcase) do | ||
load konst | ||
end | ||
end | ||
|
||
private | ||
|
||
def find klassname | ||
@cache[klassname] ||= resolve(klassname) | ||
end | ||
|
||
def resolve klassname | ||
name = klassname | ||
retried = false | ||
|
||
begin | ||
path2class(name) | ||
rescue ArgumentError, NameError => ex | ||
unless retried | ||
name = "Struct::#{name}" | ||
retried = ex | ||
retry | ||
end | ||
raise retried | ||
end | ||
end | ||
|
||
CACHE = Hash[constants.map { |const| | ||
val = const_get const | ||
begin | ||
[val, ::Object.const_get(val)] | ||
rescue | ||
nil | ||
end | ||
}.compact] | ||
|
||
class Restricted < ClassLoader | ||
def initialize classes, symbols | ||
@classes = classes | ||
@symbols = symbols | ||
super() | ||
end | ||
|
||
def symbolize sym | ||
return super if @symbols.empty? | ||
|
||
if @symbols.include? sym | ||
super | ||
else | ||
raise DisallowedClass, 'Symbol' | ||
end | ||
end | ||
|
||
private | ||
|
||
def find klassname | ||
if @classes.include? klassname | ||
super | ||
else | ||
raise DisallowedClass, klassname | ||
end | ||
end | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,5 +32,6 @@ def streaming? | |
end | ||
|
||
include Psych::Streaming | ||
extend Psych::Streaming::ClassMethods | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.