contrast-agent 4.7.0 → 4.10.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (145) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +6 -1
  3. data/.rspec +0 -1
  4. data/.rspec_parallel +6 -0
  5. data/.simplecov +1 -0
  6. data/ext/cs__contrast_patch/cs__contrast_patch.c +0 -1
  7. data/ext/cs__contrast_patch/cs__contrast_patch.h +0 -2
  8. data/lib/contrast/agent/assess/contrast_event.rb +1 -5
  9. data/lib/contrast/agent/assess/finalizers/hash.rb +2 -5
  10. data/lib/contrast/agent/assess/policy/patcher.rb +5 -4
  11. data/lib/contrast/agent/assess/policy/policy.rb +1 -1
  12. data/lib/contrast/agent/assess/policy/policy_scanner.rb +2 -6
  13. data/lib/contrast/agent/assess/policy/preshift.rb +11 -8
  14. data/lib/contrast/agent/assess/policy/propagation_method.rb +102 -59
  15. data/lib/contrast/agent/assess/policy/propagator/database_write.rb +2 -7
  16. data/lib/contrast/agent/assess/policy/propagator/match_data.rb +31 -11
  17. data/lib/contrast/agent/assess/policy/propagator/rack_protection.rb +73 -0
  18. data/lib/contrast/agent/assess/policy/propagator/split.rb +10 -6
  19. data/lib/contrast/agent/assess/policy/propagator/substitution.rb +3 -3
  20. data/lib/contrast/agent/assess/policy/propagator.rb +1 -0
  21. data/lib/contrast/agent/assess/policy/rewriter_patch.rb +6 -7
  22. data/lib/contrast/agent/assess/policy/source_method.rb +18 -22
  23. data/lib/contrast/agent/assess/policy/trigger/xpath.rb +0 -4
  24. data/lib/contrast/agent/assess/policy/trigger_method.rb +61 -86
  25. data/lib/contrast/agent/assess/policy/trigger_node.rb +1 -1
  26. data/lib/contrast/agent/assess/property/evented.rb +2 -1
  27. data/lib/contrast/agent/assess/rule/provider/hardcoded_value_rule.rb +3 -4
  28. data/lib/contrast/agent/at_exit_hook.rb +3 -3
  29. data/lib/contrast/agent/class_reopener.rb +6 -5
  30. data/lib/contrast/agent/disable_reaction.rb +4 -5
  31. data/lib/contrast/agent/exclusion_matcher.rb +2 -7
  32. data/lib/contrast/agent/inventory/database_config.rb +117 -0
  33. data/lib/contrast/agent/inventory/dependency_analysis.rb +2 -6
  34. data/lib/contrast/agent/inventory/dependency_usage_analysis.rb +8 -9
  35. data/lib/contrast/agent/inventory/policy/datastores.rb +5 -6
  36. data/lib/contrast/agent/inventory/policy/policy.rb +1 -1
  37. data/lib/contrast/agent/middleware.rb +15 -13
  38. data/lib/contrast/agent/patching/policy/after_load_patch.rb +6 -3
  39. data/lib/contrast/agent/patching/policy/after_load_patcher.rb +21 -16
  40. data/lib/contrast/agent/patching/policy/module_policy.rb +2 -4
  41. data/lib/contrast/agent/patching/policy/patch.rb +13 -8
  42. data/lib/contrast/agent/patching/policy/patch_status.rb +3 -7
  43. data/lib/contrast/agent/patching/policy/patcher.rb +14 -14
  44. data/lib/contrast/agent/patching/policy/policy.rb +2 -4
  45. data/lib/contrast/agent/patching/policy/policy_node.rb +2 -3
  46. data/lib/contrast/agent/protect/policy/applies_no_sqli_rule.rb +1 -1
  47. data/lib/contrast/agent/protect/policy/policy.rb +1 -1
  48. data/lib/contrast/agent/protect/policy/rule_applicator.rb +3 -5
  49. data/lib/contrast/agent/protect/rule/base.rb +10 -10
  50. data/lib/contrast/agent/protect/rule/cmd_injection.rb +4 -5
  51. data/lib/contrast/agent/protect/rule/no_sqli.rb +7 -53
  52. data/lib/contrast/agent/protect/rule/path_traversal.rb +1 -5
  53. data/lib/contrast/agent/protect/rule/sql_sample_builder.rb +137 -0
  54. data/lib/contrast/agent/protect/rule/sqli.rb +7 -70
  55. data/lib/contrast/agent/reaction_processor.rb +3 -4
  56. data/lib/contrast/agent/request.rb +9 -5
  57. data/lib/contrast/agent/request_context.rb +28 -31
  58. data/lib/contrast/agent/request_handler.rb +5 -3
  59. data/lib/contrast/agent/response.rb +2 -3
  60. data/lib/contrast/agent/rewriter.rb +4 -3
  61. data/lib/contrast/agent/rule_set.rb +5 -4
  62. data/lib/contrast/agent/service_heartbeat.rb +2 -3
  63. data/lib/contrast/agent/static_analysis.rb +7 -6
  64. data/lib/contrast/agent/thread.rb +2 -4
  65. data/lib/contrast/agent/thread_watcher.rb +3 -4
  66. data/lib/contrast/agent/tracepoint_hook.rb +10 -5
  67. data/lib/contrast/agent/version.rb +1 -1
  68. data/lib/contrast/api/communication/messaging_queue.rb +16 -11
  69. data/lib/contrast/api/communication/response_processor.rb +11 -11
  70. data/lib/contrast/api/communication/service_lifecycle.rb +9 -5
  71. data/lib/contrast/api/communication/socket_client.rb +18 -14
  72. data/lib/contrast/api/communication/speedracer.rb +5 -6
  73. data/lib/contrast/api/decorators/address.rb +2 -3
  74. data/lib/contrast/api/decorators/agent_startup.rb +7 -9
  75. data/lib/contrast/api/decorators/application_startup.rb +9 -10
  76. data/lib/contrast/api/decorators/application_update.rb +0 -4
  77. data/lib/contrast/api/decorators/http_request.rb +3 -7
  78. data/lib/contrast/api/decorators/instrumentation_mode.rb +3 -5
  79. data/lib/contrast/api/decorators/message.rb +7 -7
  80. data/lib/contrast/api/decorators/route_coverage.rb +24 -1
  81. data/lib/contrast/api/decorators/trace_event_object.rb +2 -3
  82. data/lib/contrast/components/agent.rb +13 -15
  83. data/lib/contrast/components/app_context.rb +7 -11
  84. data/lib/contrast/components/assess.rb +19 -16
  85. data/lib/contrast/components/base.rb +40 -0
  86. data/lib/contrast/components/config.rb +1 -2
  87. data/lib/contrast/components/contrast_service.rb +8 -11
  88. data/lib/contrast/components/heap_dump.rb +5 -4
  89. data/lib/contrast/components/inventory.rb +2 -7
  90. data/lib/contrast/components/logger.rb +14 -10
  91. data/lib/contrast/components/protect.rb +10 -13
  92. data/lib/contrast/components/sampling.rb +5 -5
  93. data/lib/contrast/components/scope.rb +9 -32
  94. data/lib/contrast/components/settings.rb +1 -5
  95. data/lib/contrast/config/base_configuration.rb +14 -6
  96. data/lib/contrast/configuration.rb +22 -19
  97. data/lib/contrast/extension/assess/array.rb +3 -15
  98. data/lib/contrast/extension/assess/eval_trigger.rb +2 -23
  99. data/lib/contrast/extension/assess/fiber.rb +6 -16
  100. data/lib/contrast/extension/assess/hash.rb +3 -13
  101. data/lib/contrast/extension/assess/kernel.rb +3 -14
  102. data/lib/contrast/extension/assess/marshal.rb +6 -14
  103. data/lib/contrast/extension/assess/regexp.rb +5 -15
  104. data/lib/contrast/extension/assess/string.rb +6 -31
  105. data/lib/contrast/extension/extension.rb +61 -0
  106. data/lib/contrast/extension/kernel.rb +2 -4
  107. data/lib/contrast/extension/protect/kernel.rb +0 -15
  108. data/lib/contrast/framework/grape/support.rb +174 -0
  109. data/lib/contrast/framework/manager.rb +44 -9
  110. data/lib/contrast/framework/rack/patch/session_cookie.rb +6 -6
  111. data/lib/contrast/framework/rack/support.rb +1 -1
  112. data/lib/contrast/framework/rails/patch/assess_configuration.rb +5 -8
  113. data/lib/contrast/framework/rails/patch/support.rb +44 -37
  114. data/lib/contrast/framework/rails/railtie.rb +34 -0
  115. data/lib/contrast/framework/rails/rewrite/active_record_named.rb +4 -4
  116. data/lib/contrast/framework/rails/support.rb +60 -13
  117. data/lib/contrast/framework/sinatra/support.rb +1 -1
  118. data/lib/contrast/funchook/funchook.rb +4 -3
  119. data/lib/contrast/logger/application.rb +1 -6
  120. data/lib/contrast/logger/log.rb +103 -13
  121. data/lib/contrast/logger/request.rb +0 -4
  122. data/lib/contrast/tasks/config.rb +0 -1
  123. data/lib/contrast/tasks/service.rb +1 -6
  124. data/lib/contrast/utils/assess/sampling_util.rb +2 -3
  125. data/lib/contrast/utils/assess/tracking_util.rb +2 -4
  126. data/lib/contrast/utils/heap_dump_util.rb +5 -3
  127. data/lib/contrast/utils/invalid_configuration_util.rb +4 -3
  128. data/lib/contrast/utils/io_util.rb +3 -5
  129. data/lib/contrast/utils/job_servers_running.rb +4 -3
  130. data/lib/contrast/utils/os.rb +2 -3
  131. data/lib/contrast/utils/ruby_ast_rewriter.rb +16 -13
  132. data/lib/contrast/utils/string_utils.rb +2 -3
  133. data/lib/contrast/utils/tag_util.rb +26 -19
  134. data/lib/contrast.rb +24 -14
  135. data/resources/assess/policy.json +252 -2
  136. data/resources/deadzone/policy.json +10 -0
  137. data/ruby-agent.gemspec +14 -3
  138. data/service_executables/VERSION +1 -1
  139. data/service_executables/linux/contrast-service +0 -0
  140. data/service_executables/mac/contrast-service +0 -0
  141. metadata +104 -24
  142. data/lib/contrast/agent/railtie.rb +0 -31
  143. data/lib/contrast/components/interface.rb +0 -196
  144. data/lib/contrast/delegators/input_analysis.rb +0 -12
  145. data/lib/contrast/utils/inventory_util.rb +0 -114
@@ -1,20 +1,22 @@
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
+ require 'contrast/components/scope'
6
+
4
7
  module Contrast
5
8
  module Agent
6
9
  # This class is instantiated when we receive a request and the agent is enabled to process
7
10
  # that request. It holds the ruleset that we perform filtering operations on (currently
8
11
  # prefilter and postfilter).
9
12
  class RequestHandler
10
- include Contrast::Components::Interface
11
- access_component :agent, :logging, :scope
13
+ include Contrast::Components::Logger::InstanceMethods
12
14
 
13
15
  attr_reader :ruleset, :context
14
16
 
15
17
  def initialize context
16
18
  @context = context
17
- @ruleset = AGENT.ruleset
19
+ @ruleset = ::Contrast::AGENT.ruleset
18
20
  end
19
21
 
20
22
  def send_activity_messages
@@ -7,7 +7,7 @@ require 'timeout'
7
7
  require 'contrast/utils/object_share'
8
8
  require 'contrast/utils/string_utils'
9
9
  require 'contrast/utils/hash_digest'
10
- require 'contrast/components/interface'
10
+ require 'contrast/components/logger'
11
11
 
12
12
  module Contrast
13
13
  module Agent
@@ -16,8 +16,7 @@ module Contrast
16
16
  # data in a format that the Agent expects, caching those transformations in
17
17
  # order to avoid repeatedly creating Strings & thrashing GC.
18
18
  class Response
19
- include Contrast::Components::Interface
20
- access_component :logging
19
+ include Contrast::Components::Logger::InstanceMethods
21
20
 
22
21
  extend Forwardable
23
22
 
@@ -7,7 +7,8 @@ return unless RUBY_VERSION < '2.6.0' # TODO: RUBY-714 remove guard w/ EOL of 2.5
7
7
 
8
8
  require 'contrast/agent/class_reopener'
9
9
  require 'contrast/agent/patching/policy/patch_status'
10
- require 'contrast/components/interface'
10
+ require 'contrast/components/logger'
11
+ require 'contrast/components/scope'
11
12
  require 'contrast/utils/ruby_ast_rewriter'
12
13
 
13
14
  module Contrast
@@ -19,8 +20,8 @@ module Contrast
19
20
  # @deprecated Changes to this class are discouraged as this approach is
20
21
  # being phased out with support for those language versions.
21
22
  class Rewriter
22
- include Contrast::Components::Interface
23
- access_component :logging, :scope
23
+ extend Contrast::Components::Logger::InstanceMethods
24
+ extend Contrast::Components::Scope::InstanceMethods
24
25
 
25
26
  SELF_DEFINITION = 'def self.'
26
27
  DEFINITION = 'def '
@@ -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
@@ -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,11 +24,11 @@ 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
 
30
- Contrast::Utils::InventoryUtil.append_db_config(app_update_msg)
31
+ Contrast::Agent::Inventory::DatabaseConfig.append_db_config(app_update_msg)
31
32
  Contrast::Agent.messaging_queue.send_event_eventually(app_update_msg)
32
33
  end
33
34
 
@@ -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!
@@ -35,10 +35,15 @@ module Contrast
35
35
  path = tracepoint_event.path
36
36
  return if path&.include?('contrast')
37
37
 
38
+ Contrast::Agent.framework_manager.register_late_framework(loaded_module)
38
39
  Contrast::Agent::Inventory::DependencyUsageAnalysis.instance.associate_file(path) if path
39
40
  Contrast::Agent::Patching::Policy::Patcher.patch_specific_module(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
+ if RUBY_VERSION < '2.6.0' # TODO: RUBY-714 remove guard w/ EOL of 2.5
42
+ Contrast::Agent::Assess::Policy::RewriterPatch.rewrite_interpolation(loaded_module)
43
+ end
41
44
  Contrast::Agent::Assess::Policy::PolicyScanner.scan(tracepoint_event)
45
+ rescue StandardError => e
46
+ logger.error('Unable to complete TracePoint analysis', e, module: loaded_module)
42
47
  end
43
48
  end
44
49
  end
@@ -3,6 +3,6 @@
3
3
 
4
4
  module Contrast
5
5
  module Agent
6
- VERSION = '4.7.0'
6
+ VERSION = '4.10.0'
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,29 +9,31 @@ 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
- attr_reader :queue, :speedracer
14
+ attr_reader :speedracer
16
15
 
17
16
  def initialize
18
- @queue = Queue.new
19
17
  @speedracer = Contrast::Api::Communication::Speedracer.new
20
18
  super
21
19
  end
22
20
 
23
21
  # Use this to bypass the messaging queue and leave response processing to the caller
24
22
  def send_event_immediately event
25
- if AGENT.disabled?
23
+ if ::Contrast::AGENT.disabled?
26
24
  logger.warn('Attempted to send event immediately with Agent disabled', caller: caller, event: event)
27
25
  return
28
26
  end
29
27
  speedracer.return_response(event)
30
28
  end
31
29
 
30
+ def queue
31
+ @_queue ||= Queue.new
32
+ end
33
+
32
34
  # Use this to add a message to the queue and process the response internally
33
35
  def send_event_eventually event
34
- if AGENT.disabled?
36
+ if ::Contrast::AGENT.disabled?
35
37
  logger.warn('Attempted to queue event with Agent disabled', caller: caller, event: event)
36
38
  return
37
39
  end
@@ -43,7 +45,6 @@ module Contrast
43
45
  speedracer.ensure_startup!
44
46
  return if running?
45
47
 
46
- @queue ||= Queue.new
47
48
  @_thread = Contrast::Agent::Thread.new do
48
49
  loop do
49
50
  event = queue.pop
@@ -59,13 +60,17 @@ module Contrast
59
60
  logger.debug('Started background sending thread.')
60
61
  end
61
62
 
63
+ def delete_queue!
64
+ @_queue&.clear
65
+ @_queue&.close
66
+ @_queue = nil
67
+ end
68
+
62
69
  def stop!
63
70
  return unless running?
64
71
 
65
72
  super
66
- @queue&.clear
67
- @queue&.close
68
- @queue = nil
73
+ delete_queue!
69
74
  end
70
75
  end
71
76
  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,8 +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('Agent settings updated in response to Service', protect_on: PROTECT.enabled?,
28
- 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?)
29
29
  end
30
30
 
31
31
  private
@@ -40,7 +40,7 @@ module Contrast
40
40
 
41
41
  logger.trace('Agent: Received updated server features')
42
42
 
43
- SETTINGS.update_from_server_features(server_features)
43
+ ::Contrast::SETTINGS.update_from_server_features(server_features)
44
44
 
45
45
  server_features
46
46
  end
@@ -55,7 +55,7 @@ module Contrast
55
55
 
56
56
  logger.debug('Agent: Received updated application settings')
57
57
 
58
- SETTINGS.update_from_application_settings(app_settings)
58
+ ::Contrast::SETTINGS.update_from_application_settings(app_settings)
59
59
 
60
60
  app_settings
61
61
  end
@@ -64,16 +64,16 @@ module Contrast
64
64
  # I don't think it should go into contrast_service because that only handles connection specific data
65
65
  def update_features server_features, app_settings
66
66
  return unless !!(server_features || app_settings)
67
- return unless AGENT.enabled?
67
+ return unless ::Contrast::AGENT.enabled?
68
68
 
69
69
  logger.trace_with_time('Rebuilding rule modes') do
70
- SETTINGS.build_protect_rules if PROTECT.enabled?
71
- AGENT.reset_ruleset
70
+ ::Contrast::SETTINGS.build_protect_rules if ::Contrast::PROTECT.enabled?
71
+ ::Contrast::AGENT.reset_ruleset
72
72
 
73
73
  logger.info('Current rule settings:')
74
74
 
75
- PROTECT.rules.each { |k, v| logger.info('Protect Rule mode set', rule: k, mode: v.mode) }
76
- 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)
77
77
  end
78
78
  end
79
79
  end
@@ -1,13 +1,17 @@
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
- # Handles local service startup
9
+ # Handles local service startup. As this should only ever be invoked by the Speedracer class, which includes
10
+ # this, all methods here are private.
8
11
  module ServiceLifecycle
9
- include Contrast::Components::Interface
10
- access_component :logging, :contrast_service
12
+ include Contrast::Components::Logger::InstanceMethods
13
+
14
+ private
11
15
 
12
16
  def attempt_local_service_startup
13
17
  zombie_check
@@ -33,8 +37,8 @@ module Contrast
33
37
  end
34
38
 
35
39
  def determine_startup_options
36
- return { out: :out, err: :out } if CONTRAST_SERVICE.logger_path == 'STDOUT'
37
- return { out: :err, err: :err } if CONTRAST_SERVICE.logger_path == 'STDERR'
40
+ return { out: :out, err: :out } if ::Contrast::CONTRAST_SERVICE.logger_path == 'STDOUT'
41
+ return { out: :err, err: :err } if ::Contrast::CONTRAST_SERVICE.logger_path == 'STDERR'
38
42
 
39
43
  { out: File::NULL, err: File::NULL }
40
44
  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,29 +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
  else
42
- Contrast::Api::Communication::UnixSocket.new(CONTRAST_SERVICE.socket_path)
42
+ Contrast::Api::Communication::UnixSocket.new(::Contrast::CONTRAST_SERVICE.socket_path)
43
43
  end
44
44
  end
45
45
 
46
46
  def log_connection
47
47
  # The socket is set,
48
- if CONFIG.root.agent.service.socket
48
+ if ::Contrast::CONFIG.root.agent.service.socket
49
49
  logger.info('Connecting to the Contrast Service using a UnixSocket socket',
50
- socket: CONTRAST_SERVICE.socket_path)
50
+ socket: ::Contrast::CONTRAST_SERVICE.socket_path)
51
51
  return
52
52
  end
53
53
  # The host & port are set,
54
- if CONFIG.root.agent.service.host && CONFIG.root.agent.service.port
55
- logger.info('Connecting to the Contrast Service using a TCP socket', host: CONTRAST_SERVICE.host,
56
- port: CONTRAST_SERVICE.port)
54
+ if ::Contrast::CONFIG.root.agent.service.host && ::Contrast::CONFIG.root.agent.service.port
55
+ logger.info('Connecting to the Contrast Service using a TCP socket',
56
+ host: ::Contrast::CONTRAST_SERVICE.host,
57
+ port: ::Contrast::CONTRAST_SERVICE.port)
57
58
  return
58
59
  end
59
60
 
60
61
  # Or something is not set.
61
- logger.warn(log_connection_error_msg, host: CONTRAST_SERVICE.host, port: CONTRAST_SERVICE.port)
62
+ logger.warn(
63
+ log_connection_error_msg,
64
+ host: ::Contrast::CONTRAST_SERVICE.host,
65
+ port: ::Contrast::CONTRAST_SERVICE.port)
62
66
  end
63
67
 
64
68
  # If our connection isn't built properly, we need to warn the user. This builds out the context specific
@@ -66,11 +70,11 @@ module Contrast
66
70
  #
67
71
  # @return [String]
68
72
  def log_connection_error_msg
69
- if CONFIG.root.agent.service.host
73
+ if ::Contrast::CONFIG.root.agent.service.host
70
74
  'Missing a required connection value to the Contrast Service. ' \
71
75
  '`agent.service.port` is not set. ' \
72
76
  'Falling back to default TCP socket port.'
73
- elsif CONFIG.root.agent.service.port
77
+ elsif ::Contrast::CONFIG.root.agent.service.port
74
78
  'Missing a required connection value to the Contrast Service. ' \
75
79
  '`agent.service.host` is not set. ' \
76
80
  'Falling back to default TCP socket host.'