summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorStan Hu <stanhu@gmail.com>2019-07-31 15:38:02 -0700
committerStan Hu <stanhu@gmail.com>2019-07-31 15:47:19 -0700
commit7a5c4cd0ca692e2fac0d648726b71dcd304602ec (patch)
tree8298693dda0fd46eb10271636f8f6c64ed74d5bd /lib
parentce77d137abcc8e21844fdee54620d95d7b626983 (diff)
downloadgitlab-ce-7a5c4cd0ca692e2fac0d648726b71dcd304602ec.tar.gz
Fix SystemStackError when Peek bar is active with Rugged callssh-fix-infite-loop-peek-bar
Peek attempts to serialize results with `to_json`, which calls `ActiveSupport::JSON`. If an object is passed to `to_json` that contains instance variables, `ActiveSupport` will attempt to recursively traverse all variables. The problem is that we can get into an infinite loop if the instance references to an instance that references to something else that points back to the same instance. To avoid this mess, we just call `to_s` on the object. It appears only `Gitlab::Git::Repository` and `::Repository` are the culprits here. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/65404
Diffstat (limited to 'lib')
-rw-r--r--lib/peek/views/rugged.rb8
1 files changed, 6 insertions, 2 deletions
diff --git a/lib/peek/views/rugged.rb b/lib/peek/views/rugged.rb
index 6b9d3e7b1a3..18b3f422852 100644
--- a/lib/peek/views/rugged.rb
+++ b/lib/peek/views/rugged.rb
@@ -29,8 +29,12 @@ module Peek
def format_args(args)
args.map do |arg|
- # Needed to avoid infinite as_json calls
- if arg.is_a?(Gitlab::Git::Repository)
+ # ActiveSupport::JSON recursively calls as_json on all
+ # instance variables, and if that instance variable points to
+ # something that refers back to the same instance, we can wind
+ # up in an infinite loop. Currently this only seems to happen with
+ # Gitlab::Git::Repository and ::Repository.
+ if arg.instance_variables.present?
arg.to_s
else
arg