-
Notifications
You must be signed in to change notification settings - Fork 375
/
patcher.rb
166 lines (137 loc) · 5.56 KB
/
patcher.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
# frozen_string_literal: true
require_relative '../../../core/utils/only_once'
require_relative '../patcher'
require_relative 'framework'
require_relative '../../response'
require_relative '../rack/request_middleware'
require_relative '../rack/request_body_middleware'
require_relative 'gateway/watcher'
require_relative 'gateway/request'
require_relative '../../../tracing/contrib/rack/middlewares'
module Datadog
module AppSec
module Contrib
module Rails
# Patcher for AppSec on Rails
module Patcher
include Datadog::AppSec::Contrib::Patcher
BEFORE_INITIALIZE_ONLY_ONCE_PER_APP = Hash.new { |h, key| h[key] = Datadog::Core::Utils::OnlyOnce.new }
AFTER_INITIALIZE_ONLY_ONCE_PER_APP = Hash.new { |h, key| h[key] = Datadog::Core::Utils::OnlyOnce.new }
module_function
def patched?
Patcher.instance_variable_get(:@patched)
end
def target_version
Integration.version
end
def patch
Gateway::Watcher.watch
patch_before_initialize
patch_after_initialize
Patcher.instance_variable_set(:@patched, true)
end
def patch_before_initialize
::ActiveSupport.on_load(:before_initialize) do
Datadog::AppSec::Contrib::Rails::Patcher.before_initialize(self)
end
end
def before_initialize(app)
BEFORE_INITIALIZE_ONLY_ONCE_PER_APP[app].run do
# Middleware must be added before the application is initialized.
# Otherwise the middleware stack will be frozen.
add_middleware(app) if Datadog.configuration.tracing[:rails][:middleware]
patch_process_action
end
end
def add_middleware(app)
# Add trace middleware
if include_middleware?(Datadog::Tracing::Contrib::Rack::TraceMiddleware, app)
app.middleware.insert_after(
Datadog::Tracing::Contrib::Rack::TraceMiddleware,
Datadog::AppSec::Contrib::Rack::RequestMiddleware
)
else
app.middleware.insert_before(0, Datadog::AppSec::Contrib::Rack::RequestMiddleware)
end
end
# Hook into ActionController::Instrumentation#process_action, which encompasses action filters
module ProcessActionPatch
def process_action(*args)
env = request.env
context = env[Datadog::AppSec::Ext::SCOPE_KEY]
return super unless context
# TODO: handle exceptions, except for super
gateway_request = Gateway::Request.new(request)
request_return, request_response = Instrumentation.gateway.push('rails.request.action', gateway_request) do
super
end
if request_response
blocked_event = request_response.find { |action, _options| action == :block }
if blocked_event
@_response = AppSec::Response.negotiate(
env,
blocked_event.last[:actions]
).to_action_dispatch_response
request_return = @_response.body
end
end
request_return
end
end
def patch_process_action
::ActionController::Metal.prepend(ProcessActionPatch)
end
def include_middleware?(middleware, app)
found = false
# find tracer middleware reference in Rails::Configuration::MiddlewareStackProxy
app.middleware.instance_variable_get(:@operations).each do |operation|
args = case operation
when Array
# rails 5.2
_op, args = operation
args
when Proc
if operation.binding.local_variables.include?(:args)
# rails 6.0, 6.1
operation.binding.local_variable_get(:args)
else
# rails 7.0 uses ... to pass args
args_getter = Class.new do
def method_missing(_op, *args) # rubocop:disable Style/MissingRespondToMissing
args
end
end.new
operation.call(args_getter)
end
else
# unknown, pass through
[]
end
found = true if args.include?(middleware)
end
found
end
def inspect_middlewares(app)
Datadog.logger.debug { +'Rails middlewares: ' << app.middleware.map(&:inspect).inspect }
end
def patch_after_initialize
::ActiveSupport.on_load(:after_initialize) do
Datadog::AppSec::Contrib::Rails::Patcher.after_initialize(self)
end
end
def after_initialize(app)
AFTER_INITIALIZE_ONLY_ONCE_PER_APP[app].run do
# Finish configuring the tracer after the application is initialized.
# We need to wait for some things, like application name, middleware stack, etc.
setup_security
inspect_middlewares(app)
end
end
def setup_security
Datadog::AppSec::Contrib::Rails::Framework.setup
end
end
end
end
end
end