Project

General

Profile

Actions

Bug #10222

closed

require_relative and require should be compatible with each other when symlinks are used

Added by rosenfeld (Rodrigo Rosenfeld Rosas) over 9 years ago. Updated over 3 years ago.

Status:
Closed
Assignee:
-
Target version:
-
ruby -v:
2.3.1, 2.1.2p95
[ruby-core:64928]

Description

Not sure if this should be considered a bug or a feature request since I don't know whether the current behavior is intended or not.

Recently I got a report for my gem rails-web-console related to require_relative causing trouble with symlinked dirs:

https://github.com/rosenfeld/active_record_migrations/issues/6

Dmitry was able to replicate the issue using vanilla Ruby:

mkdir a
ln -s a b
echo "require_relative 'b'" > a/a.rb
echo "p 'b loaded'" > a/b.rb
echo "$: << File.expand_path('../b', __FILE__); require 'a'; require 'b'" > c.rb
ruby c.rb

Notice how "b loaded" is printed twice but if you replace require_relative with require it's just loaded once.

Shouldn't Ruby always expand the loaded files before appending them to the $LOADED_FEATURES and avoid this kind of error? I don't think require_relative should behave differently than a regular require in such cases.

Any thoughts?


Related issues 4 (1 open3 closed)

Related to Ruby master - Bug #14372: Memory leak in require with Pathnames in the $LOAD_PATH in 2.3/2.4ClosedActions
Related to Ruby master - Feature #16978: Ruby should not use realpath for __FILE__Assignednobu (Nobuyoshi Nakada)Actions
Has duplicate Ruby master - Bug #13695: Issue with require and require_relative with symlinked directoriesClosedActions
Has duplicate Ruby master - Bug #17885: require_relative and require should be compatible with each other when symlinked files are usedClosedActions

Updated by rosenfeld (Rodrigo Rosenfeld Rosas) over 9 years ago

I can't change the title myself. Could someone with privileges please change it to something like: "require_relative and require should be compatible with each other when symlinks are used".

I think this would make it easier to be searchable if others are experiencing the same issue. The key change is to add the "symlinks" word to the title so that the connection is made clear.

Updated by shevegen (Robert A. Heiler) over 9 years ago

Curious behaviour indeed, there may be a reason why symlinks were assumed to behave differently.

Updated by abolshakov (Tema Bolshakov) over 7 years ago

  • ruby -v changed from 2.1.2p95 to 2.3.1

Updated by abolshakov (Tema Bolshakov) over 7 years ago

  • ruby -v changed from 2.3.1 to 2.3.1, 2.1.2p95

Updated by shyouhei (Shyouhei Urabe) over 7 years ago

  • Subject changed from require_relative and require should be compatible with each other to require_relative and require should be compatible with each other when symlinks are used

We looked at this issue in developer meeting today.

The ultimate reason why require and require_relative behaves differently is that while require_relative infers its argument's realpath every time, require doesn't.

This was by design; because require is called many times, we wanted to completely avoid disk access for 2nd and later calls to require with identical arguments.

But I believe the reported behaviour is a bug to be fixed. In order to do so a meeting attendee suggested to push both symlink-resolved and unresolved paths at once to $LOADED_FEATURES on the first call.

Updated by rosenfeld (Rodrigo Rosenfeld Rosas) over 7 years ago

This could make it harder for auto-reloaders to unload a required file when require_relative is used... Doesn't seem like a great solution to this bug to me... Ruby could cache internally the real path when using "require" so that the second call would avoid any disk access...

Updated by nobu (Nobuyoshi Nakada) over 7 years ago

Shyouhei Urabe wrote:

In order to do so a meeting attendee suggested to push both symlink-resolved and unresolved paths at once to $LOADED_FEATURES on the first call.

I think this explanation differs from that we discussed accurately.
IIRC, it should be vm->expanded_load_path, not $LOADED_FEATURES.
$LOADED_FEATURES won't be doubled, but will have realpaths only.

Updated by rosenfeld (Rodrigo Rosenfeld Rosas) over 7 years ago

Nobu, if a symlinked path would be removed from $LOADED_FEATURES from Ruby code, will all related internal references to the same file be cleared too?

Updated by shyouhei (Shyouhei Urabe) over 7 years ago

Today I learned that PHP caches realpath, and causes troubles when people use symlink to deploy scripts.

The situation is not exactly the identical to ours, but we should avoid their footsteps.

Updated by nobu (Nobuyoshi Nakada) over 6 years ago

Would you expect just directory names get expanded?
Or basename too?
For instance, 'b loaded' should be printed twice or just once,?

mkdir a
echo "p 'b loaded'" > a/b.rb
ln -s b.rb a/c.rb
ruby -I./a -ra -rb -e''

Updated by rosenfeld (Rodrigo Rosenfeld Rosas) over 6 years ago

I'd expect b.rb and c.rb to be handled like separate files, so "b loaded" would be printed twice.

Updated by rosenfeld (Rodrigo Rosenfeld Rosas) over 6 years ago

I see, what you mean, if we simply add the expanded filenames to LOADED_PATH then that file would be loaded just once. Do you have any use cases where someone would symlink Ruby code for good usage?

Updated by matsuda (Akira Matsuda) over 6 years ago

Here's an actual use case that we saw in Rails: https://github.com/rails/rails/pull/29638#issuecomment-321335175
The reporter says that it happened in Jenkins, but I guess the same situation may happen in any case where we put the .rb files under a symlinked directory, for instance Capistrano.

Updated by rosenfeld (Rodrigo Rosenfeld Rosas) over 6 years ago

Akira, in those cases was the basename different among the real path and the symlink?

Actions #15

Updated by nobu (Nobuyoshi Nakada) over 6 years ago

  • Status changed from Open to Closed

Applied in changeset trunk|r59984.


load.c: real path to load

  • load.c (rb_construct_expanded_load_path): expand load paths to
    real paths to get rid of duplicate loading from symbolic-linked
    directories. [Feature #10222]
Actions #16

Updated by nobu (Nobuyoshi Nakada) about 6 years ago

  • Related to Bug #14372: Memory leak in require with Pathnames in the $LOAD_PATH in 2.3/2.4 added
Actions #17

Updated by nagachika (Tomoyuki Chikanaga) about 6 years ago

  • Backport changed from 2.0.0: UNKNOWN, 2.1: UNKNOWN to 2.3: REQUIRED, 2.4: REQUIRED, 2.5: DONTNEED

Updated by nagachika (Tomoyuki Chikanaga) about 6 years ago

I've filled Backport field according to the request at #14424.

Updated by nagachika (Tomoyuki Chikanaga) about 6 years ago

  • Backport changed from 2.3: REQUIRED, 2.4: REQUIRED, 2.5: DONTNEED to 2.3: REQUIRED, 2.4: DONE, 2.5: DONTNEED

ruby_2_4 r62440 merged revision(s) 59983,59984.

Actions #20

Updated by jeremyevans0 (Jeremy Evans) almost 5 years ago

  • Has duplicate Bug #13695: Issue with require and require_relative with symlinked directories added

Updated by greneholt (Connor McKay) over 3 years ago

I recently encountered this issue on v2.7.1, when symlinked directories were included in the $RUBYLIB environment variable. I was not experiencing the issue on v2.5.1 with the exact same setup however. Has the bug regressed, or was $RUBYLIB never handled by this fix to begin with?

Actions #22

Updated by mame (Yusuke Endoh) about 3 years ago

  • Related to Feature #16978: Ruby should not use realpath for __FILE__ added
Actions #23

Updated by shyouhei (Shyouhei Urabe) almost 3 years ago

  • Has duplicate Bug #17885: require_relative and require should be compatible with each other when symlinked files are used added
Actions

Also available in: Atom PDF

Like0
Like0Like0Like0Like0Like0Like0Like0Like0Like0Like0Like0Like0Like0Like0Like0Like0Like0Like0Like0Like0Like0Like0Like0