Bug #4409
closedDRb: discrepency between DRb.here? and DRb.uri leads to failure to dereference a DrbObject
Description
=begin
When a reference on a local object is sent back by a client to a server, it may not be recognised as a local object during marshalling:
An object instance being sent as a reference is wrapped in a DRbObject built by make_proxy with DRbObject.new(obj); the DRbObject's uri will be the uri returned by DRb::uri.
When this reference is sent back, DRbObject::_load checks if it matches uri of current server with DRb::here? method.
The problem is that DRb.here? checks that a DRbObject uri is the same as the uri which was used by current DRbServer at his creation, while DRb.uri will return an uri created from the local socket from current thread's connection.
So, when a DRbObject it sent back, it may not be recognized as referencing a local object
Fixing DRb.here? so that it compares with the uri returned by DRb.uri should be enough to quick fix this problem, and seems safe to me.
(I call it a quick fix because I am sure that even with this change, it is possible to build some less realistics cases with the same kind of problem, due to the fact that a same reference may be valid or not depending which client sent it back ...)
Here is a very simple proof of concept:
The server:
#!/usr/bin/ruby
require 'drb'
class A
include DRb::DRbUndumped
end
class TheServer
include DRb::DRbUndumped
def initialize
@A (A A) = A.new
end
def get_a
@A (A A)
end
def is_a(iA)
puts "inside is_a: current DRb.uri:#{DRb.uri}; iA.class = #{iA.class} #{iA.__drburi if DRb::DRbObject === iA}"
@a.eql? iA
end
def getToken
retVal = @@token.clone
@@token.inc
return retVal
end
end
theServer = TheServer.new
DRb.start_service(nil,theServer)
puts "DRb.uri just after start_service: #{DRb.uri}"
DRb.thread.join
#############
The client:
#!/usr/bin/ruby
require 'drb'
theServer = DRb::DRbObject.new(nil,ARGV.shift)
a = theServer.get_a
puts "a.__drburi == #{a.__drburi}"
puts "theServer.is_a(a) == #{theServer.is_a(a)}"
#############
the outputs:
server side:
DRb.uri just after start_service: druby://Venus:60106
inside is_a: current DRb.uri:druby://127.0.0.1:60106; iA.class = DRb::DRbObject druby://127.0.0.1:60106
client side:
a.__drburi == druby://127.0.0.1:60106
theServer.is_a(a) == false
Cheers,
Nicolas
=end
Updated by naruse (Yui NARUSE) over 13 years ago
- Status changed from Open to Assigned
- Assignee set to seki (Masatoshi Seki)
Updated by nahi (Hiroshi Nakamura) over 13 years ago
- Target version set to 1.9.3
Updated by seki (Masatoshi Seki) over 13 years ago
- Status changed from Assigned to Closed
- % Done changed from 0 to 100
This issue was solved with changeset r32254.
Nicolas, thank you for reporting this issue.
Your contribution to Ruby is greatly appreciated.
May Ruby be with you.
fix [Bug #4409]. add DRbServer#here?
Updated by iamcory (Cory Banks) almost 13 years ago
Nicolas, thank you for reporting this issue - http://roofracksforvan.com