contrast-agent 4.6.0 → 4.9.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (190) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +6 -1
  3. data/.gitmodules +1 -1
  4. data/.simplecov +1 -0
  5. data/Rakefile +1 -2
  6. data/ext/build_funchook.rb +3 -3
  7. data/ext/extconf_common.rb +1 -5
  8. data/lib/contrast.rb +24 -14
  9. data/lib/contrast/agent/assess.rb +1 -1
  10. data/lib/contrast/agent/assess/contrast_event.rb +1 -4
  11. data/lib/contrast/agent/assess/contrast_object.rb +2 -2
  12. data/lib/contrast/agent/assess/events/event_factory.rb +2 -1
  13. data/lib/contrast/agent/assess/finalizers/hash.rb +2 -4
  14. data/lib/contrast/agent/assess/policy/dynamic_source_factory.rb +6 -3
  15. data/lib/contrast/agent/assess/policy/patcher.rb +16 -21
  16. data/lib/contrast/agent/assess/policy/policy.rb +1 -1
  17. data/lib/contrast/agent/assess/policy/policy_node.rb +25 -33
  18. data/lib/contrast/agent/assess/policy/policy_scanner.rb +3 -5
  19. data/lib/contrast/agent/assess/policy/preshift.rb +7 -5
  20. data/lib/contrast/agent/assess/policy/propagation_method.rb +10 -19
  21. data/lib/contrast/agent/assess/policy/propagation_node.rb +19 -8
  22. data/lib/contrast/agent/assess/policy/propagator.rb +1 -0
  23. data/lib/contrast/agent/assess/policy/propagator/center.rb +2 -1
  24. data/lib/contrast/agent/assess/policy/propagator/database_write.rb +3 -6
  25. data/lib/contrast/agent/assess/policy/propagator/insert.rb +3 -1
  26. data/lib/contrast/agent/assess/policy/propagator/match_data.rb +2 -1
  27. data/lib/contrast/agent/assess/policy/propagator/rack_protection.rb +73 -0
  28. data/lib/contrast/agent/assess/policy/propagator/select.rb +2 -12
  29. data/lib/contrast/agent/assess/policy/propagator/split.rb +12 -13
  30. data/lib/contrast/agent/assess/policy/propagator/substitution.rb +3 -10
  31. data/lib/contrast/agent/assess/policy/propagator/trim.rb +3 -15
  32. data/lib/contrast/agent/assess/policy/rewriter_patch.rb +13 -10
  33. data/lib/contrast/agent/assess/policy/source_method.rb +12 -12
  34. data/lib/contrast/agent/assess/policy/source_validation/source_validation.rb +1 -3
  35. data/lib/contrast/agent/assess/policy/trigger/reflected_xss.rb +5 -1
  36. data/lib/contrast/agent/assess/policy/trigger/xpath.rb +0 -3
  37. data/lib/contrast/agent/assess/policy/trigger_method.rb +8 -18
  38. data/lib/contrast/agent/assess/policy/trigger_node.rb +3 -2
  39. data/lib/contrast/agent/assess/policy/trigger_validation/redos_validator.rb +4 -3
  40. data/lib/contrast/agent/assess/policy/trigger_validation/ssrf_validator.rb +1 -2
  41. data/lib/contrast/agent/assess/policy/trigger_validation/xss_validator.rb +1 -8
  42. data/lib/contrast/agent/assess/property/evented.rb +8 -5
  43. data/lib/contrast/agent/assess/rule/provider/hardcoded_key.rb +11 -5
  44. data/lib/contrast/agent/assess/rule/provider/hardcoded_password.rb +4 -1
  45. data/lib/contrast/agent/assess/rule/provider/hardcoded_value_rule.rb +7 -9
  46. data/lib/contrast/agent/at_exit_hook.rb +3 -3
  47. data/lib/contrast/agent/class_reopener.rb +9 -6
  48. data/lib/contrast/agent/disable_reaction.rb +4 -7
  49. data/lib/contrast/agent/exclusion_matcher.rb +7 -14
  50. data/lib/contrast/agent/inventory/dependencies.rb +2 -0
  51. data/lib/contrast/agent/inventory/dependency_analysis.rb +2 -6
  52. data/lib/contrast/agent/inventory/dependency_usage_analysis.rb +3 -5
  53. data/lib/contrast/agent/inventory/policy/datastores.rb +3 -4
  54. data/lib/contrast/agent/inventory/policy/policy.rb +1 -1
  55. data/lib/contrast/agent/middleware.rb +17 -18
  56. data/lib/contrast/agent/module_data.rb +3 -3
  57. data/lib/contrast/agent/patching/policy/after_load_patch.rb +3 -3
  58. data/lib/contrast/agent/patching/policy/after_load_patcher.rb +9 -9
  59. data/lib/contrast/agent/patching/policy/method_policy.rb +6 -2
  60. data/lib/contrast/agent/patching/policy/module_policy.rb +14 -7
  61. data/lib/contrast/agent/patching/policy/patch.rb +20 -25
  62. data/lib/contrast/agent/patching/policy/patch_status.rb +6 -7
  63. data/lib/contrast/agent/patching/policy/patcher.rb +21 -18
  64. data/lib/contrast/agent/patching/policy/policy.rb +2 -4
  65. data/lib/contrast/agent/patching/policy/policy_node.rb +16 -7
  66. data/lib/contrast/agent/patching/policy/trigger_node.rb +21 -8
  67. data/lib/contrast/agent/protect/policy/applies_command_injection_rule.rb +1 -1
  68. data/lib/contrast/agent/protect/policy/applies_deserialization_rule.rb +1 -1
  69. data/lib/contrast/agent/protect/policy/applies_no_sqli_rule.rb +1 -1
  70. data/lib/contrast/agent/protect/policy/applies_path_traversal_rule.rb +2 -3
  71. data/lib/contrast/agent/protect/policy/applies_sqli_rule.rb +1 -1
  72. data/lib/contrast/agent/protect/policy/applies_xxe_rule.rb +5 -9
  73. data/lib/contrast/agent/protect/policy/policy.rb +1 -1
  74. data/lib/contrast/agent/protect/policy/rule_applicator.rb +7 -9
  75. data/lib/contrast/agent/protect/rule/base.rb +20 -23
  76. data/lib/contrast/agent/protect/rule/base_service.rb +9 -5
  77. data/lib/contrast/agent/protect/rule/cmd_injection.rb +18 -23
  78. data/lib/contrast/agent/protect/rule/deserialization.rb +6 -13
  79. data/lib/contrast/agent/protect/rule/http_method_tampering.rb +3 -14
  80. data/lib/contrast/agent/protect/rule/no_sqli.rb +6 -2
  81. data/lib/contrast/agent/protect/rule/no_sqli/mongo_no_sql_scanner.rb +1 -3
  82. data/lib/contrast/agent/protect/rule/path_traversal.rb +6 -10
  83. data/lib/contrast/agent/protect/rule/sqli.rb +1 -1
  84. data/lib/contrast/agent/protect/rule/unsafe_file_upload.rb +1 -1
  85. data/lib/contrast/agent/protect/rule/xss.rb +1 -1
  86. data/lib/contrast/agent/protect/rule/xxe.rb +5 -12
  87. data/lib/contrast/agent/protect/rule/xxe/entity_wrapper.rb +1 -2
  88. data/lib/contrast/agent/reaction_processor.rb +13 -13
  89. data/lib/contrast/agent/request.rb +27 -26
  90. data/lib/contrast/agent/request_context.rb +17 -22
  91. data/lib/contrast/agent/request_handler.rb +5 -3
  92. data/lib/contrast/agent/response.rb +2 -3
  93. data/lib/contrast/agent/rewriter.rb +9 -6
  94. data/lib/contrast/agent/rule_set.rb +5 -4
  95. data/lib/contrast/agent/service_heartbeat.rb +4 -6
  96. data/lib/contrast/agent/static_analysis.rb +6 -5
  97. data/lib/contrast/agent/thread.rb +2 -4
  98. data/lib/contrast/agent/thread_watcher.rb +3 -4
  99. data/lib/contrast/agent/tracepoint_hook.rb +5 -5
  100. data/lib/contrast/agent/version.rb +1 -1
  101. data/lib/contrast/api/communication/messaging_queue.rb +4 -5
  102. data/lib/contrast/api/communication/response_processor.rb +11 -13
  103. data/lib/contrast/api/communication/service_lifecycle.rb +9 -6
  104. data/lib/contrast/api/communication/socket_client.rb +22 -31
  105. data/lib/contrast/api/communication/speedracer.rb +8 -13
  106. data/lib/contrast/api/decorators/address.rb +2 -3
  107. data/lib/contrast/api/decorators/agent_startup.rb +7 -9
  108. data/lib/contrast/api/decorators/application_startup.rb +12 -10
  109. data/lib/contrast/api/decorators/application_update.rb +0 -4
  110. data/lib/contrast/api/decorators/http_request.rb +3 -7
  111. data/lib/contrast/api/decorators/instrumentation_mode.rb +3 -5
  112. data/lib/contrast/api/decorators/library.rb +8 -6
  113. data/lib/contrast/api/decorators/message.rb +9 -9
  114. data/lib/contrast/api/decorators/trace_event.rb +3 -1
  115. data/lib/contrast/api/decorators/trace_event_object.rb +3 -6
  116. data/lib/contrast/api/decorators/trace_taint_range_tags.rb +1 -6
  117. data/lib/contrast/components/agent.rb +17 -17
  118. data/lib/contrast/components/app_context.rb +11 -15
  119. data/lib/contrast/components/assess.rb +16 -16
  120. data/lib/contrast/components/base.rb +40 -0
  121. data/lib/contrast/components/config.rb +2 -3
  122. data/lib/contrast/components/contrast_service.rb +12 -18
  123. data/lib/contrast/components/heap_dump.rb +5 -4
  124. data/lib/contrast/components/inventory.rb +2 -7
  125. data/lib/contrast/components/logger.rb +1 -2
  126. data/lib/contrast/components/protect.rb +10 -13
  127. data/lib/contrast/components/sampling.rb +13 -7
  128. data/lib/contrast/components/scope.rb +0 -4
  129. data/lib/contrast/components/settings.rb +5 -7
  130. data/lib/contrast/config/assess_rules_configuration.rb +1 -3
  131. data/lib/contrast/config/base_configuration.rb +4 -5
  132. data/lib/contrast/config/exception_configuration.rb +1 -5
  133. data/lib/contrast/config/heap_dump_configuration.rb +12 -6
  134. data/lib/contrast/config/logger_configuration.rb +1 -5
  135. data/lib/contrast/configuration.rb +6 -18
  136. data/lib/contrast/extension/assess/array.rb +3 -10
  137. data/lib/contrast/extension/assess/erb.rb +1 -7
  138. data/lib/contrast/extension/assess/eval_trigger.rb +4 -9
  139. data/lib/contrast/extension/assess/exec_trigger.rb +3 -9
  140. data/lib/contrast/extension/assess/fiber.rb +8 -17
  141. data/lib/contrast/extension/assess/hash.rb +3 -3
  142. data/lib/contrast/extension/assess/kernel.rb +4 -13
  143. data/lib/contrast/extension/assess/marshal.rb +6 -10
  144. data/lib/contrast/extension/assess/regexp.rb +6 -10
  145. data/lib/contrast/extension/assess/string.rb +8 -6
  146. data/lib/contrast/extension/kernel.rb +2 -2
  147. data/lib/contrast/extension/protect/kernel.rb +0 -5
  148. data/lib/contrast/framework/manager.rb +3 -5
  149. data/lib/contrast/framework/rack/patch/session_cookie.rb +11 -24
  150. data/lib/contrast/framework/rack/patch/support.rb +6 -4
  151. data/lib/contrast/framework/rails/patch/assess_configuration.rb +12 -9
  152. data/lib/contrast/framework/rails/patch/support.rb +41 -35
  153. data/lib/contrast/framework/rails/railtie.rb +34 -0
  154. data/lib/contrast/framework/rails/rewrite/action_controller_railties_helper_inherited.rb +4 -1
  155. data/lib/contrast/framework/rails/rewrite/active_record_attribute_methods_read.rb +2 -0
  156. data/lib/contrast/framework/rails/rewrite/active_record_named.rb +5 -4
  157. data/lib/contrast/framework/rails/rewrite/active_record_time_zone_inherited.rb +2 -0
  158. data/lib/contrast/framework/rails/support.rb +2 -2
  159. data/lib/contrast/framework/sinatra/support.rb +3 -1
  160. data/lib/contrast/funchook/funchook.rb +5 -8
  161. data/lib/contrast/logger/application.rb +13 -15
  162. data/lib/contrast/logger/format.rb +2 -5
  163. data/lib/contrast/logger/log.rb +26 -9
  164. data/lib/contrast/logger/request.rb +1 -6
  165. data/lib/contrast/security_exception.rb +1 -1
  166. data/lib/contrast/tasks/config.rb +0 -1
  167. data/lib/contrast/tasks/service.rb +6 -7
  168. data/lib/contrast/utils/assess/sampling_util.rb +2 -3
  169. data/lib/contrast/utils/assess/tracking_util.rb +3 -6
  170. data/lib/contrast/utils/class_util.rb +0 -8
  171. data/lib/contrast/utils/hash_digest.rb +2 -5
  172. data/lib/contrast/utils/heap_dump_util.rb +5 -3
  173. data/lib/contrast/utils/invalid_configuration_util.rb +4 -3
  174. data/lib/contrast/utils/inventory_util.rb +2 -3
  175. data/lib/contrast/utils/io_util.rb +3 -5
  176. data/lib/contrast/utils/job_servers_running.rb +13 -7
  177. data/lib/contrast/utils/os.rb +4 -4
  178. data/lib/contrast/utils/ruby_ast_rewriter.rb +2 -1
  179. data/lib/contrast/utils/string_utils.rb +2 -3
  180. data/lib/contrast/utils/tag_util.rb +25 -19
  181. data/resources/assess/policy.json +55 -0
  182. data/ruby-agent.gemspec +17 -16
  183. data/service_executables/VERSION +1 -1
  184. data/service_executables/linux/contrast-service +0 -0
  185. data/service_executables/mac/contrast-service +0 -0
  186. data/sonar-project.properties +9 -0
  187. metadata +61 -46
  188. data/lib/contrast/agent/railtie.rb +0 -31
  189. data/lib/contrast/components/interface.rb +0 -195
  190. data/lib/contrast/delegators/input_analysis.rb +0 -12
@@ -3,9 +3,12 @@
3
3
 
4
4
  # intentional -- we're using a << operator here
5
5
 
6
+ return unless RUBY_VERSION < '2.6.0' # TODO: RUBY-714 remove guard w/ EOL of 2.5
7
+
6
8
  require 'contrast/agent/class_reopener'
7
9
  require 'contrast/agent/patching/policy/patch_status'
8
- require 'contrast/components/interface'
10
+ require 'contrast/components/logger'
11
+ require 'contrast/components/scope'
9
12
  require 'contrast/utils/ruby_ast_rewriter'
10
13
 
11
14
  module Contrast
@@ -17,8 +20,8 @@ module Contrast
17
20
  # @deprecated Changes to this class are discouraged as this approach is
18
21
  # being phased out with support for those language versions.
19
22
  class Rewriter
20
- include Contrast::Components::Interface
21
- access_component :logging, :scope
23
+ extend Contrast::Components::Logger::InstanceMethods
24
+ extend Contrast::Components::Scope::InstanceMethods
22
25
 
23
26
  SELF_DEFINITION = 'def self.'
24
27
  DEFINITION = 'def '
@@ -57,13 +60,13 @@ module Contrast
57
60
  rescue SyntaxError, StandardError => e
58
61
  opener = nil
59
62
  mod ||= module_data.mod
60
- logger.debug('Reopening threw a handled exception - skipping rewriting', e, module: module_data.name)
63
+ logger.debug('Reopening threw a handled exception - skipping rewriting', e, module: module_data.mod_name)
61
64
  status ||= Contrast::Agent::Patching::Policy::PatchStatus.get_status(mod)
62
65
  status.failed_rewrite!
63
66
  ensure
64
67
  opener&.commit_patches
65
68
  logger.trace('Rewriting complete',
66
- module: module_data.name,
69
+ module: module_data.mod_name,
67
70
  result: Contrast::Agent::Patching::Policy::PatchStatus.get_status(
68
71
  module_data.mod).rewrite_status)
69
72
  end
@@ -238,7 +241,7 @@ module Contrast
238
241
  ].cs__freeze
239
242
  def should_rewrite? module_data
240
243
  clazz = module_data.mod
241
- name = module_data.name
244
+ name = module_data.mod_name
242
245
  return false unless clazz
243
246
 
244
247
  # Name can be nil for anonymous modules. We won't work on them.
@@ -1,13 +1,14 @@
1
1
  # Copyright (c) 2021 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
2
2
  # frozen_string_literal: true
3
3
 
4
+ require 'contrast/components/logger'
5
+
4
6
  module Contrast
5
7
  module Agent
6
8
  # This class is responsible for holding our ruleset and performing filtering operations on all
7
9
  # rules when asked by the middleware.
8
10
  class RuleSet < Set
9
- include Contrast::Components::Interface
10
- access_component :analysis, :logging
11
+ include Contrast::Components::Logger::InstanceMethods
11
12
 
12
13
  # The filtering that needs to happen before the application gets access to the request object.
13
14
  # The main action here is snapshotting the request as provided to the application from the
@@ -16,7 +17,7 @@ module Contrast
16
17
  def prefilter
17
18
  context = Contrast::Agent::REQUEST_TRACKER.current
18
19
  # TODO: RUBY-801 We shouldn't be responsible for knowing what modes are enabled
19
- return unless context&.analyze_request? || PROTECT.enabled?
20
+ return unless context&.analyze_request? || ::Contrast::PROTECT.enabled?
20
21
 
21
22
  logger.trace_with_time('Running prefilter...') do
22
23
  map { |rule| rule.prefilter(context) }
@@ -33,7 +34,7 @@ module Contrast
33
34
  def postfilter
34
35
  context = Contrast::Agent::REQUEST_TRACKER.current
35
36
  # TODO: RUBY-801 We shouldn't be responsible for knowing what modes are enabled
36
- return unless context&.analyze_response? || PROTECT.enabled?
37
+ return unless context&.analyze_response? || ::Contrast::PROTECT.enabled?
37
38
 
38
39
  logger.trace_with_time('Running postfilter...') do
39
40
  map { |rule| rule.postfilter(context) }
@@ -1,7 +1,7 @@
1
1
  # Copyright (c) 2021 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
2
2
  # frozen_string_literal: true
3
3
 
4
- require 'contrast/components/interface'
4
+ require 'contrast/components/logger'
5
5
  require 'contrast/agent/worker_thread'
6
6
 
7
7
  module Contrast
@@ -9,8 +9,7 @@ module Contrast
9
9
  # The ServiceHeartbeat functions to keep the Contrast Service alive and
10
10
  # ensure that it maintains this Agent's ApplicationContext.
11
11
  class ServiceHeartbeat < WorkerThread
12
- include Contrast::Components::Interface
13
- access_component :logging
12
+ include Contrast::Components::Logger::InstanceMethods
14
13
 
15
14
  # Spec recommends 30 seconds, we're going with 15.
16
15
  REFRESH_INTERVAL_SEC = 15
@@ -21,9 +20,8 @@ module Contrast
21
20
  @_thread = Contrast::Agent::Thread.new do
22
21
  logger.info('Starting heartbeat thread.')
23
22
  loop do
24
- begin
25
- Contrast::Agent.messaging_queue.send_event_eventually(poll_message)
26
- end
23
+ Contrast::Agent.messaging_queue.send_event_eventually(poll_message)
24
+
27
25
  sleep REFRESH_INTERVAL_SEC
28
26
  end
29
27
  end
@@ -1,8 +1,8 @@
1
1
  # Copyright (c) 2021 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
2
2
  # frozen_string_literal: true
3
3
 
4
- require 'contrast/components/interface'
5
- require 'contrast/agent/inventory'
4
+ require 'contrast/components/logger'
5
+ require 'contrast/components/scope'
6
6
  require 'contrast/api/decorators/application_update'
7
7
 
8
8
  module Contrast
@@ -10,8 +10,9 @@ module Contrast
10
10
  # this module handles one time static analysis tasks
11
11
  class StaticAnalysis
12
12
  include Singleton
13
- include Contrast::Components::Interface
14
- access_component :logging, :analysis, :scope
13
+ include Contrast::Components::Logger::InstanceMethods
14
+ include Contrast::Components::Scope::InstanceMethods
15
+
15
16
  class << self
16
17
  # After the first request is complete, we do a one-time manual catchup to review and
17
18
  # report the already-loaded gems.
@@ -23,7 +24,7 @@ module Contrast
23
24
  end
24
25
 
25
26
  def send_inventory_message
26
- return unless INVENTORY.enabled?
27
+ return unless ::Contrast::INVENTORY.enabled?
27
28
 
28
29
  app_update_msg = Contrast::Api::Dtm::ApplicationUpdate.build
29
30
 
@@ -1,15 +1,13 @@
1
1
  # Copyright (c) 2021 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
2
2
  # frozen_string_literal: true
3
3
 
4
- require 'contrast/components/interface'
4
+ require 'contrast/components/scope'
5
5
 
6
6
  module Contrast
7
7
  module Agent
8
8
  # Threads used by Contrast. Any long running thread should be created and managed by our ThreadWatcher class.
9
9
  class Thread < ::Thread
10
- include Contrast::Components::Interface
11
-
12
- access_component :scope
10
+ include Contrast::Components::Scope::InstanceMethods
13
11
 
14
12
  # Make our internal code run in Contrast scope.
15
13
  def initialize *args
@@ -1,7 +1,7 @@
1
1
  # Copyright (c) 2021 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
2
2
  # frozen_string_literal: true
3
3
 
4
- require 'contrast/components/interface'
4
+ require 'contrast/components/logger'
5
5
  require 'contrast/agent/service_heartbeat'
6
6
  require 'contrast/api/communication/messaging_queue'
7
7
 
@@ -13,8 +13,7 @@ module Contrast
13
13
  # @attr_reader heartbeat [Contrast::Agent::ServiceHeartbeat]
14
14
  # @attr_reader messaging_queue [Contrast::Api::Communication::MessagingQueue]
15
15
  class ThreadWatcher
16
- include Contrast::Components::Interface
17
- access_component :agent, :logging
16
+ include Contrast::Components::Logger::InstanceMethods
18
17
 
19
18
  attr_reader :heapdump_util, :heartbeat, :messaging_queue
20
19
 
@@ -26,7 +25,7 @@ module Contrast
26
25
  end
27
26
 
28
27
  def startup!
29
- return unless AGENT.enabled?
28
+ return unless ::Contrast::AGENT.enabled?
30
29
 
31
30
  unless heartbeat.running?
32
31
  logger.debug('Attempting to start heartbeat thread')
@@ -1,15 +1,15 @@
1
1
  # Copyright (c) 2021 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
2
2
  # frozen_string_literal: true
3
3
 
4
- require 'contrast/components/interface'
4
+ require 'contrast/components/logger'
5
+ require 'contrast/components/scope'
5
6
 
6
7
  module Contrast
7
8
  module Agent
8
9
  # This module is used to apply instrumentation to classes as they are required
9
10
  module TracePointHook
10
- include Contrast::Components::Interface
11
-
12
- access_component :logging, :scope
11
+ extend Contrast::Components::Logger::InstanceMethods
12
+ extend Contrast::Components::Scope::InstanceMethods
13
13
 
14
14
  class << self
15
15
  def enable!
@@ -37,7 +37,7 @@ module Contrast
37
37
 
38
38
  Contrast::Agent::Inventory::DependencyUsageAnalysis.instance.associate_file(path) if path
39
39
  Contrast::Agent::Patching::Policy::Patcher.patch_specific_module(loaded_module)
40
- Contrast::Agent::Assess::Policy::RewriterPatch.rewrite_interpolation(loaded_module)
40
+ Contrast::Agent::Assess::Policy::RewriterPatch.rewrite_interpolation(loaded_module) if RUBY_VERSION < '2.6.0' # TODO: RUBY-714 remove guard w/ EOL of 2.5
41
41
  Contrast::Agent::Assess::Policy::PolicyScanner.scan(tracepoint_event)
42
42
  end
43
43
  end
@@ -3,6 +3,6 @@
3
3
 
4
4
  module Contrast
5
5
  module Agent
6
- VERSION = '4.6.0'
6
+ VERSION = '4.9.1'
7
7
  end
8
8
  end
@@ -1,7 +1,7 @@
1
1
  # Copyright (c) 2021 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
2
2
  # frozen_string_literal: true
3
3
 
4
- require 'contrast/components/interface'
4
+ require 'contrast/components/logger'
5
5
  require 'contrast/agent/worker_thread'
6
6
 
7
7
  module Contrast
@@ -9,8 +9,7 @@ module Contrast
9
9
  module Communication
10
10
  # Top level gateway to messaging with speedracer
11
11
  class MessagingQueue < Contrast::Agent::WorkerThread
12
- include Contrast::Components::Interface
13
- access_component :agent, :analysis, :logging, :settings
12
+ include Contrast::Components::Logger::InstanceMethods
14
13
 
15
14
  attr_reader :queue, :speedracer
16
15
 
@@ -22,7 +21,7 @@ module Contrast
22
21
 
23
22
  # Use this to bypass the messaging queue and leave response processing to the caller
24
23
  def send_event_immediately event
25
- if AGENT.disabled?
24
+ if ::Contrast::AGENT.disabled?
26
25
  logger.warn('Attempted to send event immediately with Agent disabled', caller: caller, event: event)
27
26
  return
28
27
  end
@@ -31,7 +30,7 @@ module Contrast
31
30
 
32
31
  # Use this to add a message to the queue and process the response internally
33
32
  def send_event_eventually event
34
- if AGENT.disabled?
33
+ if ::Contrast::AGENT.disabled?
35
34
  logger.warn('Attempted to queue event with Agent disabled', caller: caller, event: event)
36
35
  return
37
36
  end
@@ -2,14 +2,14 @@
2
2
  # frozen_string_literal: true
3
3
 
4
4
  require 'contrast/agent/reaction_processor'
5
+ require 'contrast/components/logger'
5
6
 
6
7
  module Contrast
7
8
  module Api
8
9
  module Communication
9
10
  # Handles processing deferred messages
10
11
  class ResponseProcessor
11
- include Contrast::Components::Interface
12
- access_component :agent, :analysis, :logging, :settings
12
+ include Contrast::Components::Logger::InstanceMethods
13
13
 
14
14
  # @param response [Contrast::Api::Settings::AgentSettings]
15
15
  def process response
@@ -24,10 +24,8 @@ module Contrast
24
24
 
25
25
  Contrast::Logger::Log.instance.update(server_features&.log_file, server_features&.log_level)
26
26
  update_features(server_features, app_settings)
27
- logger.trace(
28
- 'Agent settings updated in response to Service',
29
- protect_on: PROTECT.enabled?,
30
- assess_on: ASSESS.enabled?)
27
+ logger.trace('Agent settings updated in response to Service', protect_on: ::Contrast::PROTECT.enabled?,
28
+ assess_on: ::Contrast::ASSESS.enabled?)
31
29
  end
32
30
 
33
31
  private
@@ -42,7 +40,7 @@ module Contrast
42
40
 
43
41
  logger.trace('Agent: Received updated server features')
44
42
 
45
- SETTINGS.update_from_server_features(server_features)
43
+ ::Contrast::SETTINGS.update_from_server_features(server_features)
46
44
 
47
45
  server_features
48
46
  end
@@ -57,7 +55,7 @@ module Contrast
57
55
 
58
56
  logger.debug('Agent: Received updated application settings')
59
57
 
60
- SETTINGS.update_from_application_settings(app_settings)
58
+ ::Contrast::SETTINGS.update_from_application_settings(app_settings)
61
59
 
62
60
  app_settings
63
61
  end
@@ -66,16 +64,16 @@ module Contrast
66
64
  # I don't think it should go into contrast_service because that only handles connection specific data
67
65
  def update_features server_features, app_settings
68
66
  return unless !!(server_features || app_settings)
69
- return unless AGENT.enabled?
67
+ return unless ::Contrast::AGENT.enabled?
70
68
 
71
69
  logger.trace_with_time('Rebuilding rule modes') do
72
- SETTINGS.build_protect_rules if PROTECT.enabled?
73
- AGENT.reset_ruleset
70
+ ::Contrast::SETTINGS.build_protect_rules if ::Contrast::PROTECT.enabled?
71
+ ::Contrast::AGENT.reset_ruleset
74
72
 
75
73
  logger.info('Current rule settings:')
76
74
 
77
- PROTECT.rules.each { |k, v| logger.info('Protect Rule mode set', rule: k, mode: v.mode) }
78
- logger.info('Disabled Assess Rules', rules: ASSESS.disabled_rules)
75
+ ::Contrast::PROTECT.rules.each { |k, v| logger.info('Protect Rule mode set', rule: k, mode: v.mode) }
76
+ logger.info('Disabled Assess Rules', rules: ::Contrast::ASSESS.disabled_rules)
79
77
  end
80
78
  end
81
79
  end
@@ -1,13 +1,14 @@
1
1
  # Copyright (c) 2021 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
2
2
  # frozen_string_literal: true
3
3
 
4
+ require 'contrast/components/logger'
5
+
4
6
  module Contrast
5
7
  module Api
6
8
  module Communication
7
9
  # Handles local service startup
8
10
  module ServiceLifecycle
9
- include Contrast::Components::Interface
10
- access_component :logging, :contrast_service
11
+ include Contrast::Components::Logger::InstanceMethods
11
12
 
12
13
  def attempt_local_service_startup
13
14
  zombie_check
@@ -21,18 +22,20 @@ module Contrast
21
22
  is_service_started
22
23
  end
23
24
 
24
- # check if there's a zombie service that exists, and wait on it if so.
25
- # currently, this only happens when trying to initialize speedracer
25
+ # check if there's a zombie service that exists, and wait on it if so. currently, this only happens when trying
26
+ # to initialize speedracer
26
27
  def zombie_check
27
28
  zombie_pid_list = Contrast::Utils::OS.zombie_pids
28
29
  zombie_pid_list.each do |pid|
29
30
  Process.wait(pid.to_i)
31
+ rescue Errno::ECHILD => _e
32
+ # Sometimes the zombie process dies between us finding it and killing it
30
33
  end
31
34
  end
32
35
 
33
36
  def determine_startup_options
34
- return { out: :out, err: :out } if CONTRAST_SERVICE.logger_path == 'STDOUT'
35
- return { out: :err, err: :err } if CONTRAST_SERVICE.logger_path == 'STDERR'
37
+ return { out: :out, err: :out } if ::Contrast::CONTRAST_SERVICE.logger_path == 'STDOUT'
38
+ return { out: :err, err: :err } if ::Contrast::CONTRAST_SERVICE.logger_path == 'STDERR'
36
39
 
37
40
  { out: File::NULL, err: File::NULL }
38
41
  end
@@ -6,7 +6,7 @@ require 'uri'
6
6
 
7
7
  require 'contrast/api/communication/tcp_socket'
8
8
  require 'contrast/api/communication/unix_socket'
9
- require 'contrast/components/interface'
9
+ require 'contrast/components/logger'
10
10
 
11
11
  module Contrast
12
12
  module Api
@@ -14,8 +14,7 @@ module Contrast
14
14
  # SocketClient acts as a interface between the agent and the service. It instantiates a
15
15
  # service proxy and tracks the state of that proxy.
16
16
  class SocketClient
17
- include Contrast::Components::Interface
18
- access_component :config, :contrast_service, :logging
17
+ include Contrast::Components::Logger::InstanceMethods
19
18
 
20
19
  def initialize
21
20
  @socket = init_connection
@@ -36,32 +35,34 @@ module Contrast
36
35
 
37
36
  def init_connection
38
37
  log_connection
39
- if CONTRAST_SERVICE.use_tcp?
40
- Contrast::Api::Communication::TcpSocket.new(CONTRAST_SERVICE.host, CONTRAST_SERVICE.port)
38
+ if ::Contrast::CONTRAST_SERVICE.use_tcp?
39
+ Contrast::Api::Communication::TcpSocket.new(
40
+ ::Contrast::CONTRAST_SERVICE.host, ::Contrast::CONTRAST_SERVICE.port
41
+ )
41
42
  else
42
- Contrast::Api::Communication::UnixSocket.new(CONTRAST_SERVICE.socket_path)
43
+ Contrast::Api::Communication::UnixSocket.new(::Contrast::CONTRAST_SERVICE.socket_path)
43
44
  end
44
45
  end
45
46
 
46
47
  def log_connection
47
48
  # The socket is set,
48
- if CONFIG.root.agent.service.socket
49
+ if ::Contrast::CONFIG.root.agent.service.socket
49
50
  logger.info('Connecting to the Contrast Service using a UnixSocket socket',
50
- socket: CONTRAST_SERVICE.socket_path)
51
+ socket: ::Contrast::CONTRAST_SERVICE.socket_path)
51
52
  return
52
53
  end
53
54
  # The host & port are set,
54
- if CONFIG.root.agent.service.host && CONFIG.root.agent.service.port
55
+ if ::Contrast::CONFIG.root.agent.service.host && ::Contrast::CONFIG.root.agent.service.port
55
56
  logger.info('Connecting to the Contrast Service using a TCP socket',
56
- host: CONTRAST_SERVICE.host,
57
- port: CONTRAST_SERVICE.port)
57
+ host: ::Contrast::CONTRAST_SERVICE.host,
58
+ port: ::Contrast::CONTRAST_SERVICE.port)
58
59
  return
59
60
  end
60
61
 
61
62
  # Or something is not set.
62
- logger.warn(log_connection_error_msg,
63
- host: CONTRAST_SERVICE.host,
64
- port: CONTRAST_SERVICE.port)
63
+ logger.warn(
64
+ log_connection_error_msg, host: ::Contrast::CONTRAST_SERVICE.host, port: ::Contrast::CONTRAST_SERVICE.port
65
+ )
65
66
  end
66
67
 
67
68
  # If our connection isn't built properly, we need to warn the user. This builds out the context specific
@@ -69,11 +70,11 @@ module Contrast
69
70
  #
70
71
  # @return [String]
71
72
  def log_connection_error_msg
72
- if CONFIG.root.agent.service.host
73
+ if ::Contrast::CONFIG.root.agent.service.host
73
74
  'Missing a required connection value to the Contrast Service. ' \
74
75
  '`agent.service.port` is not set. ' \
75
76
  'Falling back to default TCP socket port.'
76
- elsif CONFIG.root.agent.service.port
77
+ elsif ::Contrast::CONFIG.root.agent.service.port
77
78
  'Missing a required connection value to the Contrast Service. ' \
78
79
  '`agent.service.host` is not set. ' \
79
80
  'Falling back to default TCP socket host.'
@@ -87,26 +88,16 @@ module Contrast
87
88
  def send_message msg
88
89
  return unless msg
89
90
 
90
- logger.debug('Sending message.',
91
- msg_id: msg.__id__,
92
- p_id: msg.pid,
93
- msg_count: msg.message_count)
91
+ logger.debug('Sending message.', msg_id: msg.__id__, p_id: msg.pid, msg_count: msg.message_count)
94
92
  to_service = Contrast::Api::Dtm::Message.encode(msg)
95
93
  from_service = send_marshaled(to_service)
96
94
  response = Contrast::Api::Settings::AgentSettings.decode(from_service)
97
- logger.debug('Received response.',
98
- msg_id: msg.__id__,
99
- p_id: msg.pid,
100
- msg_count: msg.message_count,
101
- response_id: response&.__id__)
95
+ logger.debug('Received response.', msg_id: msg.__id__, p_id: msg.pid, msg_count: msg.message_count,
96
+ response_id: response&.__id__)
102
97
  response
103
98
  rescue StandardError => e
104
- logger.error('Sending failed for message.',
105
- e,
106
- msg_id: msg.__id__,
107
- p_id: msg.pid,
108
- msg_count: msg.message_count,
109
- response_id: response&.__id__)
99
+ logger.error('Sending failed for message.', e, msg_id: msg.__id__, p_id: msg.pid,
100
+ msg_count: msg.message_count, response_id: response&.__id__)
110
101
  raise e # reraise to let Speedracer manage the connection
111
102
  end
112
103