ddtrace 1.0.0 → 1.9.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +453 -2
- data/LICENSE-3rdparty.csv +6 -2
- data/README.md +10 -5
- data/ext/ddtrace_profiling_loader/ddtrace_profiling_loader.c +134 -0
- data/ext/ddtrace_profiling_loader/extconf.rb +74 -0
- data/ext/ddtrace_profiling_native_extension/NativeExtensionDesign.md +79 -9
- data/ext/ddtrace_profiling_native_extension/clock_id.h +22 -1
- data/ext/ddtrace_profiling_native_extension/clock_id_from_pthread.c +33 -10
- data/ext/ddtrace_profiling_native_extension/clock_id_noop.c +11 -2
- data/ext/ddtrace_profiling_native_extension/collectors_cpu_and_wall_time.c +899 -0
- data/ext/ddtrace_profiling_native_extension/collectors_cpu_and_wall_time.h +9 -0
- data/ext/ddtrace_profiling_native_extension/collectors_cpu_and_wall_time_worker.c +776 -0
- data/ext/ddtrace_profiling_native_extension/collectors_dynamic_sampling_rate.c +142 -0
- data/ext/ddtrace_profiling_native_extension/collectors_dynamic_sampling_rate.h +14 -0
- data/ext/ddtrace_profiling_native_extension/collectors_idle_sampling_helper.c +241 -0
- data/ext/ddtrace_profiling_native_extension/collectors_idle_sampling_helper.h +3 -0
- data/ext/ddtrace_profiling_native_extension/collectors_stack.c +390 -0
- data/ext/ddtrace_profiling_native_extension/collectors_stack.h +18 -0
- data/ext/ddtrace_profiling_native_extension/extconf.rb +156 -114
- data/ext/ddtrace_profiling_native_extension/helpers.h +17 -0
- data/ext/ddtrace_profiling_native_extension/http_transport.c +354 -0
- data/ext/ddtrace_profiling_native_extension/libdatadog_helpers.h +18 -0
- data/ext/ddtrace_profiling_native_extension/native_extension_helpers.rb +319 -0
- data/ext/ddtrace_profiling_native_extension/private_vm_api_access.c +820 -9
- data/ext/ddtrace_profiling_native_extension/private_vm_api_access.h +42 -0
- data/ext/ddtrace_profiling_native_extension/profiling.c +230 -3
- data/ext/ddtrace_profiling_native_extension/ruby_helpers.c +110 -0
- data/ext/ddtrace_profiling_native_extension/ruby_helpers.h +89 -0
- data/ext/ddtrace_profiling_native_extension/setup_signal_handler.c +115 -0
- data/ext/ddtrace_profiling_native_extension/setup_signal_handler.h +11 -0
- data/ext/ddtrace_profiling_native_extension/stack_recorder.c +487 -0
- data/ext/ddtrace_profiling_native_extension/stack_recorder.h +39 -0
- data/ext/ddtrace_profiling_native_extension/time_helpers.c +17 -0
- data/ext/ddtrace_profiling_native_extension/time_helpers.h +10 -0
- data/lib/datadog/appsec/assets/blocked.html +98 -3
- data/lib/datadog/appsec/assets/blocked.json +1 -0
- data/lib/datadog/appsec/assets/blocked.text +5 -0
- data/lib/datadog/appsec/assets/waf_rules/recommended.json +1250 -300
- data/lib/datadog/appsec/assets/waf_rules/risky.json +78 -78
- data/lib/datadog/appsec/assets/waf_rules/strict.json +308 -73
- data/lib/datadog/appsec/assets.rb +3 -3
- data/lib/datadog/appsec/autoload.rb +6 -4
- data/lib/datadog/appsec/configuration/settings.rb +55 -19
- data/lib/datadog/appsec/configuration.rb +17 -3
- data/lib/datadog/appsec/contrib/auto_instrument.rb +1 -3
- data/lib/datadog/appsec/contrib/configuration/settings.rb +2 -2
- data/lib/datadog/appsec/contrib/integration.rb +1 -1
- data/lib/datadog/appsec/contrib/patcher.rb +1 -1
- data/lib/datadog/appsec/contrib/rack/configuration/settings.rb +3 -3
- data/lib/datadog/appsec/contrib/rack/ext.rb +1 -1
- data/lib/datadog/appsec/contrib/rack/gateway/watcher.rb +95 -47
- data/lib/datadog/appsec/contrib/rack/integration.rb +5 -4
- data/lib/datadog/appsec/contrib/rack/patcher.rb +2 -3
- data/lib/datadog/appsec/contrib/rack/reactive/request.rb +17 -21
- data/lib/datadog/appsec/contrib/rack/reactive/request_body.rb +64 -0
- data/lib/datadog/appsec/contrib/rack/reactive/response.rb +13 -13
- data/lib/datadog/appsec/contrib/rack/request.rb +27 -1
- data/lib/datadog/appsec/contrib/rack/request_body_middleware.rb +41 -0
- data/lib/datadog/appsec/contrib/rack/request_middleware.rb +92 -10
- data/lib/datadog/appsec/contrib/rack/response.rb +1 -1
- data/lib/datadog/appsec/contrib/rails/configuration/settings.rb +3 -3
- data/lib/datadog/appsec/contrib/rails/ext.rb +1 -1
- data/lib/datadog/appsec/contrib/rails/framework.rb +1 -1
- data/lib/datadog/appsec/contrib/rails/gateway/watcher.rb +82 -0
- data/lib/datadog/appsec/contrib/rails/integration.rb +5 -5
- data/lib/datadog/appsec/contrib/rails/patcher.rb +42 -8
- data/lib/datadog/appsec/contrib/rails/reactive/action.rb +68 -0
- data/lib/datadog/appsec/contrib/rails/request.rb +36 -0
- data/lib/datadog/appsec/contrib/rails/request_middleware.rb +1 -1
- data/lib/datadog/appsec/contrib/sinatra/configuration/settings.rb +3 -3
- data/lib/datadog/appsec/contrib/sinatra/ext.rb +2 -1
- data/lib/datadog/appsec/contrib/sinatra/framework.rb +1 -1
- data/lib/datadog/appsec/contrib/sinatra/gateway/watcher.rb +126 -0
- data/lib/datadog/appsec/contrib/sinatra/integration.rb +4 -4
- data/lib/datadog/appsec/contrib/sinatra/patcher.rb +84 -10
- data/lib/datadog/appsec/contrib/sinatra/reactive/routed.rb +63 -0
- data/lib/datadog/appsec/contrib/sinatra/request_middleware.rb +1 -1
- data/lib/datadog/appsec/event.rb +38 -27
- data/lib/datadog/appsec/extensions.rb +43 -26
- data/lib/datadog/appsec/instrumentation/gateway.rb +17 -3
- data/lib/datadog/appsec/processor.rb +86 -13
- data/lib/datadog/appsec/rate_limiter.rb +6 -1
- data/lib/datadog/appsec/reactive/address_hash.rb +1 -1
- data/lib/datadog/appsec/reactive/engine.rb +3 -3
- data/lib/datadog/appsec/reactive/operation.rb +5 -6
- data/lib/datadog/appsec/reactive/subscriber.rb +1 -1
- data/lib/datadog/appsec/response.rb +63 -0
- data/lib/datadog/appsec/utils/http/media_range.rb +201 -0
- data/lib/datadog/appsec/utils/http/media_type.rb +87 -0
- data/lib/datadog/appsec/utils/http.rb +9 -0
- data/lib/datadog/appsec/utils.rb +7 -0
- data/lib/datadog/appsec.rb +6 -6
- data/lib/datadog/ci/configuration/components.rb +1 -1
- data/lib/datadog/ci/configuration/settings.rb +1 -1
- data/lib/datadog/ci/contrib/cucumber/configuration/settings.rb +2 -2
- data/lib/datadog/ci/contrib/cucumber/formatter.rb +5 -5
- data/lib/datadog/ci/contrib/cucumber/instrumentation.rb +1 -1
- data/lib/datadog/ci/contrib/cucumber/integration.rb +4 -4
- data/lib/datadog/ci/contrib/cucumber/patcher.rb +2 -2
- data/lib/datadog/ci/contrib/rspec/configuration/settings.rb +2 -2
- data/lib/datadog/ci/contrib/rspec/example.rb +5 -5
- data/lib/datadog/ci/contrib/rspec/integration.rb +4 -4
- data/lib/datadog/ci/contrib/rspec/patcher.rb +2 -2
- data/lib/datadog/ci/ext/environment.rb +99 -27
- data/lib/datadog/ci/extensions.rb +4 -4
- data/lib/datadog/ci/flush.rb +2 -2
- data/lib/datadog/ci/test.rb +3 -3
- data/lib/datadog/ci.rb +6 -6
- data/lib/datadog/core/buffer/cruby.rb +1 -1
- data/lib/datadog/core/buffer/thread_safe.rb +1 -1
- data/lib/datadog/core/configuration/agent_settings_resolver.rb +9 -12
- data/lib/datadog/core/configuration/base.rb +14 -2
- data/lib/datadog/core/configuration/components.rb +123 -54
- data/lib/datadog/core/configuration/ext.rb +26 -0
- data/lib/datadog/core/configuration/option_definition.rb +12 -3
- data/lib/datadog/core/configuration/option_definition_set.rb +1 -1
- data/lib/datadog/core/configuration/options.rb +3 -3
- data/lib/datadog/core/configuration/settings.rb +79 -251
- data/lib/datadog/core/configuration.rb +16 -11
- data/lib/datadog/core/diagnostics/environment_logger.rb +10 -5
- data/lib/datadog/core/diagnostics/health.rb +5 -23
- data/lib/datadog/core/environment/cgroup.rb +4 -2
- data/lib/datadog/core/environment/container.rb +3 -2
- data/lib/datadog/core/environment/ext.rb +1 -1
- data/lib/datadog/core/environment/identity.rb +2 -2
- data/lib/datadog/core/environment/platform.rb +40 -0
- data/lib/datadog/core/environment/socket.rb +1 -1
- data/lib/datadog/core/environment/variable_helpers.rb +83 -11
- data/lib/datadog/core/error.rb +1 -1
- data/lib/datadog/core/extensions.rb +1 -1
- data/lib/datadog/core/header_collection.rb +41 -0
- data/lib/datadog/core/logging/ext.rb +11 -0
- data/lib/datadog/core/metrics/client.rb +25 -14
- data/lib/datadog/core/metrics/ext.rb +0 -2
- data/lib/datadog/core/metrics/options.rb +3 -3
- data/lib/datadog/core/runtime/ext.rb +1 -1
- data/lib/datadog/core/runtime/metrics.rb +7 -7
- data/lib/datadog/core/telemetry/client.rb +79 -0
- data/lib/datadog/core/telemetry/collector.rb +233 -0
- data/lib/datadog/core/telemetry/emitter.rb +48 -0
- data/lib/datadog/core/telemetry/event.rb +71 -0
- data/lib/datadog/core/telemetry/ext.rb +11 -0
- data/lib/datadog/core/telemetry/heartbeat.rb +37 -0
- data/lib/datadog/core/telemetry/http/adapters/net.rb +113 -0
- data/lib/datadog/core/telemetry/http/env.rb +20 -0
- data/lib/datadog/core/telemetry/http/ext.rb +20 -0
- data/lib/datadog/core/telemetry/http/response.rb +68 -0
- data/lib/datadog/core/telemetry/http/transport.rb +53 -0
- data/lib/datadog/core/telemetry/v1/app_event.rb +52 -0
- data/lib/datadog/core/telemetry/v1/application.rb +86 -0
- data/lib/datadog/core/telemetry/v1/configuration.rb +25 -0
- data/lib/datadog/core/telemetry/v1/dependency.rb +36 -0
- data/lib/datadog/core/telemetry/v1/host.rb +51 -0
- data/lib/datadog/core/telemetry/v1/integration.rb +58 -0
- data/lib/datadog/core/telemetry/v1/product.rb +28 -0
- data/lib/datadog/core/telemetry/v1/telemetry_request.rb +100 -0
- data/lib/datadog/core/utils/compression.rb +5 -1
- data/lib/datadog/core/utils/object_set.rb +1 -1
- data/lib/datadog/core/utils/sequence.rb +5 -0
- data/lib/datadog/core/utils/string_table.rb +1 -1
- data/lib/datadog/core/utils/time.rb +3 -3
- data/lib/datadog/core/utils.rb +1 -22
- data/lib/datadog/core/vendor/multipart-post/multipart/post/multipartable.rb +2 -2
- data/lib/datadog/core/vendor/multipart-post/net/http/post/multipart.rb +3 -3
- data/lib/datadog/core/workers/async.rb +4 -4
- data/lib/datadog/core/workers/polling.rb +2 -2
- data/lib/datadog/core/workers/runtime_metrics.rb +4 -7
- data/lib/datadog/core.rb +28 -56
- data/lib/datadog/kit/appsec/events.rb +75 -0
- data/lib/datadog/kit/enable_core_dumps.rb +51 -0
- data/lib/datadog/kit/identity.rb +64 -0
- data/lib/datadog/kit.rb +11 -0
- data/lib/datadog/opentelemetry/api/context.rb +187 -0
- data/lib/datadog/opentelemetry/api/trace/span.rb +15 -0
- data/lib/datadog/opentelemetry/sdk/configurator.rb +38 -0
- data/lib/datadog/opentelemetry/sdk/id_generator.rb +27 -0
- data/lib/datadog/opentelemetry/sdk/propagator.rb +91 -0
- data/lib/datadog/opentelemetry/sdk/span_processor.rb +92 -0
- data/lib/datadog/opentelemetry.rb +48 -0
- data/lib/datadog/opentracer/distributed_headers.rb +7 -9
- data/lib/datadog/opentracer/rack_propagator.rb +10 -9
- data/lib/datadog/opentracer/span.rb +1 -1
- data/lib/datadog/opentracer/text_map_propagator.rb +13 -12
- data/lib/datadog/opentracer/thread_local_scope_manager.rb +26 -3
- data/lib/datadog/opentracer/tracer.rb +23 -23
- data/lib/datadog/opentracer.rb +16 -16
- data/lib/datadog/profiling/buffer.rb +3 -3
- data/lib/datadog/profiling/collectors/code_provenance.rb +1 -0
- data/lib/datadog/profiling/collectors/cpu_and_wall_time.rb +43 -0
- data/lib/datadog/profiling/collectors/cpu_and_wall_time_worker.rb +91 -0
- data/lib/datadog/profiling/collectors/dynamic_sampling_rate.rb +14 -0
- data/lib/datadog/profiling/collectors/idle_sampling_helper.rb +68 -0
- data/lib/datadog/profiling/collectors/old_stack.rb +305 -0
- data/lib/datadog/profiling/collectors/stack.rb +4 -288
- data/lib/datadog/profiling/encoding/profile.rb +8 -13
- data/lib/datadog/profiling/events/stack.rb +1 -1
- data/lib/datadog/profiling/exporter.rb +69 -9
- data/lib/datadog/profiling/ext/forking.rb +41 -42
- data/lib/datadog/profiling/ext.rb +4 -16
- data/lib/datadog/profiling/flush.rb +25 -56
- data/lib/datadog/profiling/http_transport.rb +132 -0
- data/lib/datadog/profiling/load_native_extension.rb +22 -0
- data/lib/datadog/profiling/old_recorder.rb +109 -0
- data/lib/datadog/profiling/pprof/builder.rb +4 -4
- data/lib/datadog/profiling/pprof/converter.rb +1 -1
- data/lib/datadog/profiling/pprof/message_set.rb +1 -1
- data/lib/datadog/profiling/pprof/stack_sample.rb +4 -4
- data/lib/datadog/profiling/pprof/string_table.rb +1 -1
- data/lib/datadog/profiling/pprof/template.rb +5 -5
- data/lib/datadog/profiling/preload.rb +1 -1
- data/lib/datadog/profiling/profiler.rb +7 -0
- data/lib/datadog/profiling/scheduler.rb +29 -50
- data/lib/datadog/profiling/stack_recorder.rb +79 -0
- data/lib/datadog/profiling/tag_builder.rb +53 -0
- data/lib/datadog/profiling/tasks/exec.rb +2 -2
- data/lib/datadog/profiling/tasks/setup.rb +8 -13
- data/lib/datadog/profiling/trace_identifiers/ddtrace.rb +2 -2
- data/lib/datadog/profiling/trace_identifiers/helper.rb +1 -1
- data/lib/datadog/profiling.rb +49 -44
- data/lib/datadog/tracing/analytics.rb +1 -1
- data/lib/datadog/tracing/buffer.rb +14 -8
- data/lib/datadog/tracing/client_ip.rb +164 -0
- data/lib/datadog/tracing/configuration/ext.rb +47 -4
- data/lib/datadog/tracing/configuration/settings.rb +433 -0
- data/lib/datadog/tracing/context.rb +1 -1
- data/lib/datadog/tracing/context_provider.rb +18 -2
- data/lib/datadog/tracing/contrib/action_cable/configuration/settings.rb +2 -2
- data/lib/datadog/tracing/contrib/action_cable/event.rb +4 -5
- data/lib/datadog/tracing/contrib/action_cable/events/broadcast.rb +4 -4
- data/lib/datadog/tracing/contrib/action_cable/events/perform_action.rb +3 -3
- data/lib/datadog/tracing/contrib/action_cable/events/transmit.rb +4 -4
- data/lib/datadog/tracing/contrib/action_cable/events.rb +4 -4
- data/lib/datadog/tracing/contrib/action_cable/instrumentation.rb +3 -4
- data/lib/datadog/tracing/contrib/action_cable/integration.rb +4 -4
- data/lib/datadog/tracing/contrib/action_cable/patcher.rb +4 -4
- data/lib/datadog/tracing/contrib/action_mailer/configuration/settings.rb +2 -2
- data/lib/datadog/tracing/contrib/action_mailer/event.rb +3 -3
- data/lib/datadog/tracing/contrib/action_mailer/events/deliver.rb +3 -3
- data/lib/datadog/tracing/contrib/action_mailer/events/process.rb +3 -3
- data/lib/datadog/tracing/contrib/action_mailer/events.rb +2 -2
- data/lib/datadog/tracing/contrib/action_mailer/integration.rb +4 -4
- data/lib/datadog/tracing/contrib/action_mailer/patcher.rb +3 -3
- data/lib/datadog/tracing/contrib/action_pack/action_controller/instrumentation.rb +10 -6
- data/lib/datadog/tracing/contrib/action_pack/action_controller/patcher.rb +2 -2
- data/lib/datadog/tracing/contrib/action_pack/configuration/settings.rb +2 -2
- data/lib/datadog/tracing/contrib/action_pack/integration.rb +4 -4
- data/lib/datadog/tracing/contrib/action_pack/patcher.rb +2 -2
- data/lib/datadog/tracing/contrib/action_pack/utils.rb +1 -1
- data/lib/datadog/tracing/contrib/action_view/configuration/settings.rb +2 -2
- data/lib/datadog/tracing/contrib/action_view/event.rb +1 -1
- data/lib/datadog/tracing/contrib/action_view/events/render_partial.rb +5 -5
- data/lib/datadog/tracing/contrib/action_view/events/render_template.rb +5 -5
- data/lib/datadog/tracing/contrib/action_view/events.rb +2 -2
- data/lib/datadog/tracing/contrib/action_view/instrumentation/partial_renderer.rb +2 -2
- data/lib/datadog/tracing/contrib/action_view/instrumentation/template_renderer.rb +2 -2
- data/lib/datadog/tracing/contrib/action_view/integration.rb +4 -4
- data/lib/datadog/tracing/contrib/action_view/patcher.rb +7 -8
- data/lib/datadog/tracing/contrib/action_view/utils.rb +1 -1
- data/lib/datadog/tracing/contrib/active_job/configuration/settings.rb +3 -3
- data/lib/datadog/tracing/contrib/active_job/event.rb +3 -3
- data/lib/datadog/tracing/contrib/active_job/events/discard.rb +4 -4
- data/lib/datadog/tracing/contrib/active_job/events/enqueue.rb +4 -4
- data/lib/datadog/tracing/contrib/active_job/events/enqueue_at.rb +4 -4
- data/lib/datadog/tracing/contrib/active_job/events/enqueue_retry.rb +4 -4
- data/lib/datadog/tracing/contrib/active_job/events/perform.rb +4 -4
- data/lib/datadog/tracing/contrib/active_job/events/retry_stopped.rb +4 -4
- data/lib/datadog/tracing/contrib/active_job/events.rb +6 -6
- data/lib/datadog/tracing/contrib/active_job/integration.rb +4 -4
- data/lib/datadog/tracing/contrib/active_job/log_injection.rb +0 -2
- data/lib/datadog/tracing/contrib/active_job/patcher.rb +4 -4
- data/lib/datadog/tracing/contrib/active_model_serializers/configuration/settings.rb +2 -2
- data/lib/datadog/tracing/contrib/active_model_serializers/event.rb +4 -5
- data/lib/datadog/tracing/contrib/active_model_serializers/events/render.rb +3 -3
- data/lib/datadog/tracing/contrib/active_model_serializers/events/serialize.rb +2 -2
- data/lib/datadog/tracing/contrib/active_model_serializers/events.rb +2 -2
- data/lib/datadog/tracing/contrib/active_model_serializers/integration.rb +3 -3
- data/lib/datadog/tracing/contrib/active_model_serializers/patcher.rb +3 -4
- data/lib/datadog/tracing/contrib/active_record/configuration/resolver.rb +4 -4
- data/lib/datadog/tracing/contrib/active_record/configuration/settings.rb +3 -3
- data/lib/datadog/tracing/contrib/active_record/event.rb +1 -1
- data/lib/datadog/tracing/contrib/active_record/events/instantiation.rb +4 -4
- data/lib/datadog/tracing/contrib/active_record/events/sql.rb +6 -6
- data/lib/datadog/tracing/contrib/active_record/events.rb +2 -2
- data/lib/datadog/tracing/contrib/active_record/integration.rb +6 -6
- data/lib/datadog/tracing/contrib/active_record/patcher.rb +2 -2
- data/lib/datadog/tracing/contrib/active_record/utils.rb +3 -3
- data/lib/datadog/tracing/contrib/active_record/vendor/connection_specification.rb +1 -1
- data/lib/datadog/tracing/contrib/active_support/cache/instrumentation.rb +19 -9
- data/lib/datadog/tracing/contrib/active_support/cache/patcher.rb +2 -2
- data/lib/datadog/tracing/contrib/active_support/cache/redis.rb +1 -1
- data/lib/datadog/tracing/contrib/active_support/configuration/settings.rb +2 -2
- data/lib/datadog/tracing/contrib/active_support/integration.rb +5 -5
- data/lib/datadog/tracing/contrib/active_support/notifications/event.rb +1 -1
- data/lib/datadog/tracing/contrib/active_support/notifications/subscriber.rb +1 -1
- data/lib/datadog/tracing/contrib/active_support/notifications/subscription.rb +4 -2
- data/lib/datadog/tracing/contrib/active_support/patcher.rb +2 -2
- data/lib/datadog/tracing/contrib/analytics.rb +1 -1
- data/lib/datadog/tracing/contrib/auto_instrument.rb +4 -4
- data/lib/datadog/tracing/contrib/aws/configuration/settings.rb +6 -3
- data/lib/datadog/tracing/contrib/aws/ext.rb +1 -0
- data/lib/datadog/tracing/contrib/aws/instrumentation.rb +5 -4
- data/lib/datadog/tracing/contrib/aws/integration.rb +3 -3
- data/lib/datadog/tracing/contrib/aws/patcher.rb +5 -5
- data/lib/datadog/tracing/contrib/aws/services.rb +0 -2
- data/lib/datadog/tracing/contrib/concurrent_ruby/configuration/settings.rb +2 -2
- data/lib/datadog/tracing/contrib/concurrent_ruby/context_composite_executor_service.rb +10 -3
- data/lib/datadog/tracing/contrib/concurrent_ruby/future_patch.rb +1 -1
- data/lib/datadog/tracing/contrib/concurrent_ruby/integration.rb +3 -3
- data/lib/datadog/tracing/contrib/concurrent_ruby/patcher.rb +2 -2
- data/lib/datadog/tracing/contrib/configurable.rb +2 -2
- data/lib/datadog/tracing/contrib/configuration/resolvers/pattern_resolver.rb +1 -1
- data/lib/datadog/tracing/contrib/configuration/settings.rb +2 -2
- data/lib/datadog/tracing/contrib/dalli/configuration/settings.rb +6 -3
- data/lib/datadog/tracing/contrib/dalli/ext.rb +2 -0
- data/lib/datadog/tracing/contrib/dalli/instrumentation.rb +8 -5
- data/lib/datadog/tracing/contrib/dalli/integration.rb +3 -3
- data/lib/datadog/tracing/contrib/dalli/patcher.rb +3 -4
- data/lib/datadog/tracing/contrib/dalli/quantize.rb +1 -1
- data/lib/datadog/tracing/contrib/delayed_job/configuration/settings.rb +3 -3
- data/lib/datadog/tracing/contrib/delayed_job/ext.rb +2 -0
- data/lib/datadog/tracing/contrib/delayed_job/integration.rb +3 -3
- data/lib/datadog/tracing/contrib/delayed_job/patcher.rb +8 -3
- data/lib/datadog/tracing/contrib/delayed_job/plugin.rb +7 -4
- data/lib/datadog/tracing/contrib/delayed_job/server_internal_tracer/worker.rb +32 -0
- data/lib/datadog/tracing/contrib/elasticsearch/configuration/settings.rb +7 -3
- data/lib/datadog/tracing/contrib/elasticsearch/ext.rb +3 -0
- data/lib/datadog/tracing/contrib/elasticsearch/integration.rb +12 -6
- data/lib/datadog/tracing/contrib/elasticsearch/patcher.rb +47 -9
- data/lib/datadog/tracing/contrib/elasticsearch/quantize.rb +1 -1
- data/lib/datadog/tracing/contrib/ethon/configuration/settings.rb +8 -3
- data/lib/datadog/tracing/contrib/ethon/easy_patch.rb +6 -7
- data/lib/datadog/tracing/contrib/ethon/ext.rb +1 -0
- data/lib/datadog/tracing/contrib/ethon/integration.rb +4 -4
- data/lib/datadog/tracing/contrib/ethon/multi_patch.rb +5 -4
- data/lib/datadog/tracing/contrib/ethon/patcher.rb +3 -4
- data/lib/datadog/tracing/contrib/excon/configuration/settings.rb +7 -3
- data/lib/datadog/tracing/contrib/excon/ext.rb +1 -0
- data/lib/datadog/tracing/contrib/excon/integration.rb +4 -4
- data/lib/datadog/tracing/contrib/excon/middleware.rb +8 -7
- data/lib/datadog/tracing/contrib/excon/patcher.rb +2 -2
- data/lib/datadog/tracing/contrib/ext.rb +25 -0
- data/lib/datadog/tracing/contrib/extensions.rb +5 -5
- data/lib/datadog/tracing/contrib/faraday/configuration/settings.rb +7 -3
- data/lib/datadog/tracing/contrib/faraday/ext.rb +1 -0
- data/lib/datadog/tracing/contrib/faraday/integration.rb +4 -4
- data/lib/datadog/tracing/contrib/faraday/middleware.rb +8 -8
- data/lib/datadog/tracing/contrib/faraday/patcher.rb +5 -6
- data/lib/datadog/tracing/contrib/grape/configuration/settings.rb +3 -3
- data/lib/datadog/tracing/contrib/grape/endpoint.rb +4 -7
- data/lib/datadog/tracing/contrib/grape/integration.rb +3 -3
- data/lib/datadog/tracing/contrib/grape/patcher.rb +4 -5
- data/lib/datadog/tracing/contrib/graphql/configuration/settings.rb +3 -3
- data/lib/datadog/tracing/contrib/graphql/integration.rb +3 -3
- data/lib/datadog/tracing/contrib/graphql/patcher.rb +2 -4
- data/lib/datadog/tracing/contrib/grpc/configuration/settings.rb +10 -4
- data/lib/datadog/tracing/contrib/grpc/datadog_interceptor/client.rb +20 -5
- data/lib/datadog/tracing/contrib/grpc/datadog_interceptor/server.rb +17 -17
- data/lib/datadog/tracing/contrib/grpc/datadog_interceptor.rb +7 -4
- data/lib/datadog/tracing/contrib/grpc/distributed/fetcher.rb +27 -0
- data/lib/datadog/tracing/contrib/grpc/distributed/propagation.rb +43 -0
- data/lib/datadog/tracing/contrib/grpc/ext.rb +4 -0
- data/lib/datadog/tracing/contrib/grpc/integration.rb +3 -3
- data/lib/datadog/tracing/contrib/grpc/patcher.rb +3 -6
- data/lib/datadog/tracing/contrib/hanami/action_tracer.rb +47 -0
- data/lib/datadog/tracing/contrib/hanami/configuration/settings.rb +22 -0
- data/lib/datadog/tracing/contrib/hanami/ext.rb +24 -0
- data/lib/datadog/tracing/contrib/hanami/integration.rb +44 -0
- data/lib/datadog/tracing/contrib/hanami/patcher.rb +33 -0
- data/lib/datadog/tracing/contrib/hanami/plugin.rb +23 -0
- data/lib/datadog/tracing/contrib/hanami/renderer_policy_tracing.rb +41 -0
- data/lib/datadog/tracing/contrib/hanami/router_tracing.rb +44 -0
- data/lib/datadog/tracing/contrib/http/circuit_breaker.rb +1 -2
- data/lib/datadog/tracing/contrib/http/configuration/settings.rb +13 -3
- data/lib/datadog/tracing/contrib/http/distributed/fetcher.rb +39 -0
- data/lib/datadog/tracing/contrib/http/distributed/propagation.rb +38 -0
- data/lib/datadog/tracing/contrib/http/ext.rb +2 -0
- data/lib/datadog/tracing/contrib/http/instrumentation.rb +8 -10
- data/lib/datadog/tracing/contrib/http/integration.rb +6 -6
- data/lib/datadog/tracing/contrib/http/patcher.rb +3 -3
- data/lib/datadog/tracing/contrib/httpclient/configuration/settings.rb +13 -3
- data/lib/datadog/tracing/contrib/httpclient/ext.rb +2 -0
- data/lib/datadog/tracing/contrib/httpclient/instrumentation.rb +9 -9
- data/lib/datadog/tracing/contrib/httpclient/integration.rb +4 -4
- data/lib/datadog/tracing/contrib/httpclient/patcher.rb +3 -3
- data/lib/datadog/tracing/contrib/httprb/configuration/settings.rb +13 -3
- data/lib/datadog/tracing/contrib/httprb/ext.rb +2 -0
- data/lib/datadog/tracing/contrib/httprb/instrumentation.rb +9 -9
- data/lib/datadog/tracing/contrib/httprb/integration.rb +4 -4
- data/lib/datadog/tracing/contrib/httprb/patcher.rb +3 -3
- data/lib/datadog/tracing/contrib/integration.rb +3 -3
- data/lib/datadog/tracing/contrib/kafka/configuration/settings.rb +2 -2
- data/lib/datadog/tracing/contrib/kafka/consumer_event.rb +1 -0
- data/lib/datadog/tracing/contrib/kafka/event.rb +3 -3
- data/lib/datadog/tracing/contrib/kafka/events/connection/request.rb +2 -2
- data/lib/datadog/tracing/contrib/kafka/events/consumer/process_batch.rb +3 -3
- data/lib/datadog/tracing/contrib/kafka/events/consumer/process_message.rb +3 -3
- data/lib/datadog/tracing/contrib/kafka/events/consumer_group/heartbeat.rb +4 -4
- data/lib/datadog/tracing/contrib/kafka/events/consumer_group/join_group.rb +4 -4
- data/lib/datadog/tracing/contrib/kafka/events/consumer_group/leave_group.rb +4 -4
- data/lib/datadog/tracing/contrib/kafka/events/consumer_group/sync_group.rb +4 -4
- data/lib/datadog/tracing/contrib/kafka/events/produce_operation/send_messages.rb +3 -2
- data/lib/datadog/tracing/contrib/kafka/events/producer/deliver_messages.rb +3 -2
- data/lib/datadog/tracing/contrib/kafka/events.rb +9 -9
- data/lib/datadog/tracing/contrib/kafka/integration.rb +3 -3
- data/lib/datadog/tracing/contrib/kafka/patcher.rb +3 -4
- data/lib/datadog/tracing/contrib/lograge/configuration/settings.rb +2 -2
- data/lib/datadog/tracing/contrib/lograge/instrumentation.rb +2 -2
- data/lib/datadog/tracing/contrib/lograge/integration.rb +3 -3
- data/lib/datadog/tracing/contrib/lograge/patcher.rb +2 -2
- data/lib/datadog/tracing/contrib/mongodb/configuration/settings.rb +7 -3
- data/lib/datadog/tracing/contrib/mongodb/ext.rb +8 -0
- data/lib/datadog/tracing/contrib/mongodb/instrumentation.rb +3 -3
- data/lib/datadog/tracing/contrib/mongodb/integration.rb +4 -4
- data/lib/datadog/tracing/contrib/mongodb/parsers.rb +1 -1
- data/lib/datadog/tracing/contrib/mongodb/patcher.rb +3 -3
- data/lib/datadog/tracing/contrib/mongodb/subscribers.rb +10 -4
- data/lib/datadog/tracing/contrib/mysql2/configuration/settings.rb +18 -3
- data/lib/datadog/tracing/contrib/mysql2/ext.rb +2 -0
- data/lib/datadog/tracing/contrib/mysql2/instrumentation.rb +20 -5
- data/lib/datadog/tracing/contrib/mysql2/integration.rb +3 -3
- data/lib/datadog/tracing/contrib/mysql2/patcher.rb +2 -2
- data/lib/datadog/tracing/contrib/patcher.rb +16 -4
- data/lib/datadog/tracing/contrib/pg/configuration/settings.rb +50 -0
- data/lib/datadog/tracing/contrib/pg/ext.rb +33 -0
- data/lib/datadog/tracing/contrib/pg/instrumentation.rb +168 -0
- data/lib/datadog/tracing/contrib/pg/integration.rb +43 -0
- data/lib/datadog/tracing/contrib/pg/patcher.rb +31 -0
- data/lib/datadog/tracing/contrib/presto/configuration/settings.rb +6 -3
- data/lib/datadog/tracing/contrib/presto/ext.rb +1 -0
- data/lib/datadog/tracing/contrib/presto/instrumentation.rb +2 -3
- data/lib/datadog/tracing/contrib/presto/integration.rb +3 -3
- data/lib/datadog/tracing/contrib/presto/patcher.rb +4 -4
- data/lib/datadog/tracing/contrib/propagation/sql_comment/comment.rb +43 -0
- data/lib/datadog/tracing/contrib/propagation/sql_comment/ext.rb +33 -0
- data/lib/datadog/tracing/contrib/propagation/sql_comment/mode.rb +28 -0
- data/lib/datadog/tracing/contrib/propagation/sql_comment.rb +47 -0
- data/lib/datadog/tracing/contrib/qless/configuration/settings.rb +2 -2
- data/lib/datadog/tracing/contrib/qless/integration.rb +3 -3
- data/lib/datadog/tracing/contrib/qless/patcher.rb +1 -3
- data/lib/datadog/tracing/contrib/qless/qless_job.rb +2 -3
- data/lib/datadog/tracing/contrib/qless/tracer_cleaner.rb +0 -2
- data/lib/datadog/tracing/contrib/que/configuration/settings.rb +3 -3
- data/lib/datadog/tracing/contrib/que/integration.rb +4 -4
- data/lib/datadog/tracing/contrib/que/patcher.rb +1 -2
- data/lib/datadog/tracing/contrib/que/tracer.rb +3 -1
- data/lib/datadog/tracing/contrib/racecar/configuration/settings.rb +2 -2
- data/lib/datadog/tracing/contrib/racecar/event.rb +4 -5
- data/lib/datadog/tracing/contrib/racecar/events/batch.rb +6 -3
- data/lib/datadog/tracing/contrib/racecar/events/consume.rb +2 -2
- data/lib/datadog/tracing/contrib/racecar/events/message.rb +6 -3
- data/lib/datadog/tracing/contrib/racecar/events.rb +3 -3
- data/lib/datadog/tracing/contrib/racecar/integration.rb +3 -3
- data/lib/datadog/tracing/contrib/racecar/patcher.rb +3 -4
- data/lib/datadog/tracing/contrib/rack/configuration/settings.rb +2 -2
- data/lib/datadog/tracing/contrib/rack/header_collection.rb +35 -0
- data/lib/datadog/tracing/contrib/rack/integration.rb +4 -4
- data/lib/datadog/tracing/contrib/rack/middlewares.rb +129 -61
- data/lib/datadog/tracing/contrib/rack/patcher.rb +12 -2
- data/lib/datadog/tracing/contrib/rails/auto_instrument_railtie.rb +1 -1
- data/lib/datadog/tracing/contrib/rails/configuration/settings.rb +4 -1
- data/lib/datadog/tracing/contrib/rails/framework.rb +18 -22
- data/lib/datadog/tracing/contrib/rails/integration.rb +4 -4
- data/lib/datadog/tracing/contrib/rails/log_injection.rb +3 -18
- data/lib/datadog/tracing/contrib/rails/middlewares.rb +1 -2
- data/lib/datadog/tracing/contrib/rails/patcher.rb +7 -8
- data/lib/datadog/tracing/contrib/rails/railtie.rb +3 -3
- data/lib/datadog/tracing/contrib/rails/utils.rb +1 -1
- data/lib/datadog/tracing/contrib/rake/configuration/settings.rb +17 -2
- data/lib/datadog/tracing/contrib/rake/instrumentation.rb +14 -9
- data/lib/datadog/tracing/contrib/rake/integration.rb +3 -3
- data/lib/datadog/tracing/contrib/rake/patcher.rb +3 -5
- data/lib/datadog/tracing/contrib/redis/configuration/resolver.rb +1 -1
- data/lib/datadog/tracing/contrib/redis/configuration/settings.rb +6 -3
- data/lib/datadog/tracing/contrib/redis/ext.rb +3 -0
- data/lib/datadog/tracing/contrib/redis/instrumentation.rb +36 -26
- data/lib/datadog/tracing/contrib/redis/integration.rb +37 -4
- data/lib/datadog/tracing/contrib/redis/patcher.rb +57 -14
- data/lib/datadog/tracing/contrib/redis/quantize.rb +12 -9
- data/lib/datadog/tracing/contrib/redis/tags.rb +12 -10
- data/lib/datadog/tracing/contrib/redis/trace_middleware.rb +72 -0
- data/lib/datadog/tracing/contrib/resque/configuration/settings.rb +3 -3
- data/lib/datadog/tracing/contrib/resque/integration.rb +3 -3
- data/lib/datadog/tracing/contrib/resque/patcher.rb +2 -3
- data/lib/datadog/tracing/contrib/resque/resque_job.rb +5 -4
- data/lib/datadog/tracing/contrib/rest_client/configuration/settings.rb +9 -3
- data/lib/datadog/tracing/contrib/rest_client/ext.rb +1 -0
- data/lib/datadog/tracing/contrib/rest_client/integration.rb +3 -3
- data/lib/datadog/tracing/contrib/rest_client/patcher.rb +2 -3
- data/lib/datadog/tracing/contrib/rest_client/request_patch.rb +7 -6
- data/lib/datadog/tracing/contrib/semantic_logger/configuration/settings.rb +2 -2
- data/lib/datadog/tracing/contrib/semantic_logger/instrumentation.rb +2 -2
- data/lib/datadog/tracing/contrib/semantic_logger/integration.rb +3 -3
- data/lib/datadog/tracing/contrib/semantic_logger/patcher.rb +2 -2
- data/lib/datadog/tracing/contrib/sequel/configuration/settings.rb +2 -2
- data/lib/datadog/tracing/contrib/sequel/database.rb +4 -5
- data/lib/datadog/tracing/contrib/sequel/dataset.rb +4 -5
- data/lib/datadog/tracing/contrib/sequel/integration.rb +3 -3
- data/lib/datadog/tracing/contrib/sequel/patcher.rb +3 -3
- data/lib/datadog/tracing/contrib/sequel/utils.rb +2 -2
- data/lib/datadog/tracing/contrib/shoryuken/configuration/settings.rb +3 -3
- data/lib/datadog/tracing/contrib/shoryuken/integration.rb +4 -4
- data/lib/datadog/tracing/contrib/shoryuken/patcher.rb +1 -1
- data/lib/datadog/tracing/contrib/shoryuken/tracer.rb +3 -1
- data/lib/datadog/tracing/contrib/sidekiq/client_tracer.rb +9 -5
- data/lib/datadog/tracing/contrib/sidekiq/configuration/settings.rb +4 -3
- data/lib/datadog/tracing/contrib/sidekiq/ext.rb +6 -0
- data/lib/datadog/tracing/contrib/sidekiq/integration.rb +3 -3
- data/lib/datadog/tracing/contrib/sidekiq/patcher.rb +14 -7
- data/lib/datadog/tracing/contrib/sidekiq/server_internal_tracer/heartbeat.rb +19 -1
- data/lib/datadog/tracing/contrib/sidekiq/server_internal_tracer/{scheduled_push.rb → redis_info.rb} +5 -6
- data/lib/datadog/tracing/contrib/sidekiq/server_internal_tracer/scheduled_poller.rb +53 -0
- data/lib/datadog/tracing/contrib/sidekiq/server_tracer.rb +29 -6
- data/lib/datadog/tracing/contrib/sidekiq/tracing.rb +2 -2
- data/lib/datadog/tracing/contrib/sinatra/configuration/settings.rb +2 -2
- data/lib/datadog/tracing/contrib/sinatra/env.rb +14 -25
- data/lib/datadog/tracing/contrib/sinatra/ext.rb +7 -3
- data/lib/datadog/tracing/contrib/sinatra/framework.rb +11 -2
- data/lib/datadog/tracing/contrib/sinatra/headers.rb +1 -1
- data/lib/datadog/tracing/contrib/sinatra/integration.rb +3 -3
- data/lib/datadog/tracing/contrib/sinatra/patcher.rb +7 -8
- data/lib/datadog/tracing/contrib/sinatra/tracer.rb +15 -88
- data/lib/datadog/tracing/contrib/sinatra/tracer_middleware.rb +20 -16
- data/lib/datadog/tracing/contrib/sneakers/configuration/settings.rb +2 -2
- data/lib/datadog/tracing/contrib/sneakers/integration.rb +4 -4
- data/lib/datadog/tracing/contrib/sneakers/patcher.rb +2 -3
- data/lib/datadog/tracing/contrib/sneakers/tracer.rb +4 -3
- data/lib/datadog/tracing/contrib/status_code_matcher.rb +2 -2
- data/lib/datadog/tracing/contrib/stripe/configuration/settings.rb +33 -0
- data/lib/datadog/tracing/contrib/stripe/ext.rb +26 -0
- data/lib/datadog/tracing/contrib/stripe/integration.rb +43 -0
- data/lib/datadog/tracing/contrib/stripe/patcher.rb +29 -0
- data/lib/datadog/tracing/contrib/stripe/request.rb +67 -0
- data/lib/datadog/tracing/contrib/sucker_punch/configuration/settings.rb +2 -2
- data/lib/datadog/tracing/contrib/sucker_punch/instrumentation.rb +3 -4
- data/lib/datadog/tracing/contrib/sucker_punch/integration.rb +3 -3
- data/lib/datadog/tracing/contrib/sucker_punch/patcher.rb +4 -6
- data/lib/datadog/tracing/contrib/utils/quantization/http.rb +92 -10
- data/lib/datadog/tracing/contrib.rb +50 -47
- data/lib/datadog/tracing/correlation.rb +1 -1
- data/lib/datadog/{core → tracing}/diagnostics/ext.rb +1 -6
- data/lib/datadog/tracing/diagnostics/health.rb +40 -0
- data/lib/datadog/tracing/distributed/b3_multi.rb +66 -0
- data/lib/datadog/tracing/distributed/b3_single.rb +66 -0
- data/lib/datadog/tracing/distributed/datadog.rb +153 -0
- data/lib/datadog/tracing/distributed/datadog_tags_codec.rb +85 -0
- data/lib/datadog/tracing/distributed/fetcher.rb +30 -0
- data/lib/datadog/tracing/distributed/headers/ext.rb +19 -15
- data/lib/datadog/tracing/distributed/helpers.rb +40 -4
- data/lib/datadog/tracing/distributed/none.rb +19 -0
- data/lib/datadog/tracing/distributed/propagation.rb +127 -0
- data/lib/datadog/tracing/distributed/trace_context.rb +378 -0
- data/lib/datadog/tracing/event.rb +3 -2
- data/lib/datadog/tracing/flush.rb +57 -35
- data/lib/datadog/tracing/metadata/analytics.rb +2 -2
- data/lib/datadog/tracing/metadata/errors.rb +2 -2
- data/lib/datadog/tracing/metadata/ext.rb +28 -1
- data/lib/datadog/tracing/metadata/tagging.rb +23 -2
- data/lib/datadog/tracing/metadata.rb +3 -3
- data/lib/datadog/tracing/pipeline/span_filter.rb +10 -6
- data/lib/datadog/tracing/pipeline.rb +3 -3
- data/lib/datadog/tracing/propagation/http.rb +3 -98
- data/lib/datadog/tracing/runtime/metrics.rb +1 -1
- data/lib/datadog/tracing/sampling/all_sampler.rb +1 -1
- data/lib/datadog/tracing/sampling/ext.rb +31 -0
- data/lib/datadog/tracing/sampling/priority_sampler.rb +64 -12
- data/lib/datadog/tracing/sampling/rate_by_key_sampler.rb +10 -11
- data/lib/datadog/tracing/sampling/rate_by_service_sampler.rb +32 -8
- data/lib/datadog/tracing/sampling/rate_limiter.rb +4 -1
- data/lib/datadog/tracing/sampling/rate_sampler.rb +27 -10
- data/lib/datadog/tracing/sampling/rule.rb +15 -9
- data/lib/datadog/tracing/sampling/rule_sampler.rb +11 -12
- data/lib/datadog/tracing/sampling/span/ext.rb +25 -0
- data/lib/datadog/tracing/sampling/span/matcher.rb +89 -0
- data/lib/datadog/tracing/sampling/span/rule.rb +82 -0
- data/lib/datadog/tracing/sampling/span/rule_parser.rb +104 -0
- data/lib/datadog/tracing/sampling/span/sampler.rb +75 -0
- data/lib/datadog/tracing/span.rb +24 -20
- data/lib/datadog/tracing/span_operation.rb +15 -16
- data/lib/datadog/tracing/sync_writer.rb +5 -5
- data/lib/datadog/tracing/trace_digest.rb +88 -2
- data/lib/datadog/tracing/trace_operation.rb +60 -16
- data/lib/datadog/tracing/trace_segment.rb +13 -8
- data/lib/datadog/tracing/tracer.rb +49 -21
- data/lib/datadog/tracing/utils.rb +50 -0
- data/lib/datadog/tracing/workers/trace_writer.rb +9 -9
- data/lib/datadog/tracing/workers.rb +3 -3
- data/lib/datadog/tracing/writer.rb +12 -5
- data/lib/datadog/tracing.rb +8 -8
- data/lib/ddtrace/auto_instrument.rb +9 -2
- data/lib/ddtrace/transport/ext.rb +7 -1
- data/lib/ddtrace/transport/http/adapters/net.rb +3 -2
- data/lib/ddtrace/transport/http/adapters/test.rb +1 -1
- data/lib/ddtrace/transport/http/adapters/unix_socket.rb +2 -2
- data/lib/ddtrace/transport/http/api/map.rb +1 -1
- data/lib/ddtrace/transport/http/api.rb +4 -4
- data/lib/ddtrace/transport/http/builder.rb +5 -5
- data/lib/ddtrace/transport/http/client.rb +4 -3
- data/lib/ddtrace/transport/http/response.rb +35 -5
- data/lib/ddtrace/transport/http/statistics.rb +1 -1
- data/lib/ddtrace/transport/http/traces.rb +5 -5
- data/lib/ddtrace/transport/http.rb +12 -9
- data/lib/ddtrace/transport/io/client.rb +5 -3
- data/lib/ddtrace/transport/io/response.rb +1 -1
- data/lib/ddtrace/transport/io/traces.rb +3 -3
- data/lib/ddtrace/transport/io.rb +3 -3
- data/lib/ddtrace/transport/statistics.rb +2 -2
- data/lib/ddtrace/transport/trace_formatter.rb +14 -10
- data/lib/ddtrace/transport/traces.rb +8 -6
- data/lib/ddtrace/version.rb +1 -1
- data/lib/ddtrace.rb +6 -5
- metadata +160 -44
- data/.editorconfig +0 -22
- data/.gitignore +0 -70
- data/CONTRIBUTING.md +0 -81
- data/ddtrace.gemspec +0 -59
- data/docs/0.x-trace.png +0 -0
- data/docs/1.0-trace.png +0 -0
- data/docs/AutoInstrumentation.md +0 -36
- data/docs/Deprecation.md +0 -8
- data/docs/DevelopmentGuide.md +0 -259
- data/docs/GettingStarted.md +0 -2671
- data/docs/ProfilingDevelopment.md +0 -110
- data/docs/PublicApi.md +0 -14
- data/docs/UpgradeGuide.md +0 -736
- data/lib/datadog/profiling/recorder.rb +0 -117
- data/lib/datadog/profiling/transport/client.rb +0 -16
- data/lib/datadog/profiling/transport/http/api/endpoint.rb +0 -107
- data/lib/datadog/profiling/transport/http/api/instance.rb +0 -38
- data/lib/datadog/profiling/transport/http/api/spec.rb +0 -42
- data/lib/datadog/profiling/transport/http/api.rb +0 -45
- data/lib/datadog/profiling/transport/http/builder.rb +0 -30
- data/lib/datadog/profiling/transport/http/client.rb +0 -35
- data/lib/datadog/profiling/transport/http/response.rb +0 -23
- data/lib/datadog/profiling/transport/http.rb +0 -112
- data/lib/datadog/profiling/transport/io/client.rb +0 -29
- data/lib/datadog/profiling/transport/io/response.rb +0 -18
- data/lib/datadog/profiling/transport/io.rb +0 -32
- data/lib/datadog/profiling/transport/parcel.rb +0 -19
- data/lib/datadog/profiling/transport/request.rb +0 -17
- data/lib/datadog/profiling/transport/response.rb +0 -10
- data/lib/datadog/tracing/distributed/headers/b3.rb +0 -55
- data/lib/datadog/tracing/distributed/headers/b3_single.rb +0 -67
- data/lib/datadog/tracing/distributed/headers/datadog.rb +0 -52
- data/lib/datadog/tracing/distributed/parser.rb +0 -70
- data/lib/datadog/tracing/propagation/grpc.rb +0 -88
@@ -8,14 +8,25 @@
|
|
8
8
|
//
|
9
9
|
// In the meanwhile, be very careful when changing things here :)
|
10
10
|
|
11
|
-
#ifdef
|
12
|
-
// Pick up internal structures from the private Ruby MJIT header file
|
13
|
-
#include RUBY_MJIT_HEADER
|
11
|
+
#ifdef RUBY_MJIT_HEADER
|
12
|
+
// Pick up internal structures from the private Ruby MJIT header file
|
13
|
+
#include RUBY_MJIT_HEADER
|
14
14
|
#else
|
15
|
-
// On older Rubies, use a copy of the VM internal headers shipped in the debase-ruby_core_source gem
|
16
|
-
|
15
|
+
// On older Rubies, use a copy of the VM internal headers shipped in the debase-ruby_core_source gem
|
16
|
+
|
17
|
+
// We can't do anything about warnings in VM headers, so we just use this technique to suppress them.
|
18
|
+
// See https://nelkinda.com/blog/suppress-warnings-in-gcc-and-clang/#d11e364 for details.
|
19
|
+
#pragma GCC diagnostic push
|
20
|
+
#pragma GCC diagnostic ignored "-Wunused-parameter"
|
21
|
+
#pragma GCC diagnostic ignored "-Wattributes"
|
22
|
+
#include <vm_core.h>
|
23
|
+
#pragma GCC diagnostic pop
|
24
|
+
#include <iseq.h>
|
17
25
|
#endif
|
18
26
|
|
27
|
+
#define PRIVATE_VM_API_ACCESS_SKIP_RUBY_INCLUDES
|
28
|
+
#include "private_vm_api_access.h"
|
29
|
+
|
19
30
|
// MRI has a similar rb_thread_ptr() function which we can't call it directly
|
20
31
|
// because Ruby does not expose the thread_data_type publicly.
|
21
32
|
// Instead, we have our own version of that function, and we lazily initialize the thread_data_type pointer
|
@@ -23,13 +34,813 @@
|
|
23
34
|
//
|
24
35
|
// Note that beyond returning the rb_thread_struct*, rb_check_typeddata() raises an exception
|
25
36
|
// if the argument passed in is not actually a `Thread` instance.
|
26
|
-
static inline
|
37
|
+
static inline rb_thread_t *thread_struct_from_object(VALUE thread) {
|
27
38
|
static const rb_data_type_t *thread_data_type = NULL;
|
28
|
-
if (thread_data_type == NULL) thread_data_type = RTYPEDDATA_TYPE(rb_thread_current());
|
39
|
+
if (UNLIKELY(thread_data_type == NULL)) thread_data_type = RTYPEDDATA_TYPE(rb_thread_current());
|
29
40
|
|
30
|
-
return (
|
41
|
+
return (rb_thread_t *) rb_check_typeddata(thread, thread_data_type);
|
31
42
|
}
|
32
43
|
|
33
44
|
rb_nativethread_id_t pthread_id_for(VALUE thread) {
|
34
|
-
|
45
|
+
// struct rb_native_thread was introduced in Ruby 3.2 (preview2): https://github.com/ruby/ruby/pull/5836
|
46
|
+
#ifndef NO_RB_NATIVE_THREAD
|
47
|
+
return thread_struct_from_object(thread)->nt->thread_id;
|
48
|
+
#else
|
49
|
+
return thread_struct_from_object(thread)->thread_id;
|
50
|
+
#endif
|
51
|
+
}
|
52
|
+
|
53
|
+
// Queries if the current thread is the owner of the global VM lock.
|
54
|
+
//
|
55
|
+
// @ivoanjo: Ruby has a similarly-named `ruby_thread_has_gvl_p` but that API is insufficient for our needs because it can
|
56
|
+
// still return `true` even when a thread DOES NOT HAVE the global VM lock.
|
57
|
+
// In particular, looking at the implementation, that API assumes that if a thread is not in a "blocking region" then it
|
58
|
+
// will have the GVL which is probably true for the situations that API was designed to be called from BUT this assumption
|
59
|
+
// does not hold true when calling `ruby_thread_has_gvl_p` from a signal handler. (Because the thread may have lost the
|
60
|
+
// GVL due to a scheduler decision, not because it decided to block.)
|
61
|
+
// I have also submitted https://bugs.ruby-lang.org/issues/19172 to discuss this with upstream Ruby developers.
|
62
|
+
//
|
63
|
+
// Thus we need our own gvl-checking method which actually looks at the gvl structure to determine if it is the owner.
|
64
|
+
bool is_current_thread_holding_the_gvl(void) {
|
65
|
+
current_gvl_owner owner = gvl_owner();
|
66
|
+
return owner.valid && pthread_equal(pthread_self(), owner.owner);
|
67
|
+
}
|
68
|
+
|
69
|
+
#ifndef NO_GVL_OWNER // Ruby < 2.6 doesn't have the owner/running field
|
70
|
+
// NOTE: Reading the owner in this is a racy read, because we're not grabbing the lock that Ruby uses to protect it.
|
71
|
+
//
|
72
|
+
// While we could potentially grab this lock, I (@ivoanjo) think we actually don't need it because:
|
73
|
+
// * In the case where a thread owns the GVL and calls `gvl_owner`, it will always see the correct value. That's
|
74
|
+
// because every thread sets itself as the owner when it grabs the GVL and unsets itself at the end.
|
75
|
+
// That means that `is_current_thread_holding_the_gvl` is always accurate.
|
76
|
+
// * In a case where we observe a different thread, then this may change by the time we do something with this value
|
77
|
+
// anyway. So unless we want to prevent the Ruby scheduler from switching threads, we need to deal with races here.
|
78
|
+
current_gvl_owner gvl_owner(void) {
|
79
|
+
const rb_thread_t *current_owner =
|
80
|
+
#ifndef NO_RB_THREAD_SCHED // Introduced in Ruby 3.2 as a replacement for struct rb_global_vm_lock_struct
|
81
|
+
GET_RACTOR()->threads.sched.running;
|
82
|
+
#elif HAVE_RUBY_RACTOR_H
|
83
|
+
GET_RACTOR()->threads.gvl.owner;
|
84
|
+
#else
|
85
|
+
GET_VM()->gvl.owner;
|
86
|
+
#endif
|
87
|
+
|
88
|
+
if (current_owner == NULL) return (current_gvl_owner) {.valid = false};
|
89
|
+
|
90
|
+
return (current_gvl_owner) {
|
91
|
+
.valid = true,
|
92
|
+
.owner =
|
93
|
+
#ifndef NO_RB_NATIVE_THREAD
|
94
|
+
current_owner->nt->thread_id
|
95
|
+
#else
|
96
|
+
current_owner->thread_id
|
97
|
+
#endif
|
98
|
+
};
|
99
|
+
}
|
100
|
+
#else
|
101
|
+
current_gvl_owner gvl_owner(void) {
|
102
|
+
rb_vm_t *vm =
|
103
|
+
#ifndef NO_GET_VM
|
104
|
+
GET_VM();
|
105
|
+
#else
|
106
|
+
thread_struct_from_object(rb_thread_current())->vm;
|
107
|
+
#endif
|
108
|
+
|
109
|
+
// BIG Issue: Ruby < 2.6 did not have the owner field. The really nice thing about the owner field is that it's
|
110
|
+
// "atomic" -- when a thread sets it, it "declares" two things in a single step
|
111
|
+
// * Declaration 1: Someone has the GVL
|
112
|
+
// * Declaration 2: That someone is the specific thread
|
113
|
+
//
|
114
|
+
// Observation 1: On older versions of Ruby, this ownership concept is actually split. Specifically, `gvl.acquired`
|
115
|
+
// is a boolean that represents declaration 1 above, and `vm->running_thread` (or `ruby_current_thread`/
|
116
|
+
// `ruby_current_execution_context_ptr`) represents declaration 2.
|
117
|
+
//
|
118
|
+
// Observation 2: In addition, when a thread releases the GVL, it only sets `gvl.acquired` back to 0 **BUT CRUCIALLY
|
119
|
+
// DOES NOT CHANGE THE OTHER global variables**.
|
120
|
+
//
|
121
|
+
// Observation 1+2 above lead to the following possible race:
|
122
|
+
// * Thread A grabs the GVL (`gvl.acquired == 1`)
|
123
|
+
// * Thread A sets `running_thread` (`gvl.acquired == 1` + `running_thread == Thread A`)
|
124
|
+
// * Thread A releases the GVL (`gvl.acquired == 0` + `running_thread == Thread A`)
|
125
|
+
// * Thread B grabs the GVL (`gvl.acquired == 1` + `running_thread == Thread A`)
|
126
|
+
// * Thread A calls gvl_owner. Due to the current state (`gvl.acquired == 1` + `running_thread == Thread A`), this
|
127
|
+
// function returns an incorrect result.
|
128
|
+
// * Thread B finally sets `running_thread` (`gvl.acquired == 1` + `running_thread == Thread B`)
|
129
|
+
//
|
130
|
+
// This is especially problematic because we use `gvl_owner` to implement `is_current_thread_holding_the_gvl` which
|
131
|
+
// is called in a signal handler to decide "is it safe for me to call `rb_postponed_job_register_one` or not".
|
132
|
+
// (See constraints in `collectors_cpu_and_wall_time_worker.c` comments for why).
|
133
|
+
//
|
134
|
+
// Thus an incorrect `is_current_thread_holding_the_gvl` result may lead to issues inside `rb_postponed_job_register_one`.
|
135
|
+
//
|
136
|
+
// For this reason we currently do not enable the new Ruby profiler on Ruby 2.5 and below by default, and we print a
|
137
|
+
// warning when customers force-enable it.
|
138
|
+
bool gvl_acquired = vm->gvl.acquired != 0;
|
139
|
+
rb_thread_t *current_owner = vm->running_thread;
|
140
|
+
|
141
|
+
if (!gvl_acquired || current_owner == NULL) return (current_gvl_owner) {.valid = false};
|
142
|
+
|
143
|
+
return (current_gvl_owner) {.valid = true, .owner = current_owner->thread_id};
|
144
|
+
}
|
145
|
+
#endif // NO_GVL_OWNER
|
146
|
+
|
147
|
+
// Taken from upstream vm_core.h at commit d9cf0388599a3234b9f3c06ddd006cd59a58ab8b (November 2022, Ruby 3.2 trunk)
|
148
|
+
// Copyright (C) 2004-2007 Koichi Sasada
|
149
|
+
// to support tid_for (see below)
|
150
|
+
// Modifications: None
|
151
|
+
#if defined(__linux__) || defined(__FreeBSD__)
|
152
|
+
# define RB_THREAD_T_HAS_NATIVE_ID
|
153
|
+
#endif
|
154
|
+
|
155
|
+
uint64_t native_thread_id_for(VALUE thread) {
|
156
|
+
// The tid is only available on Ruby >= 3.1 + Linux (and FreeBSD). It's the same as `gettid()` aka the task id as seen in /proc
|
157
|
+
#if !defined(NO_THREAD_TID) && defined(RB_THREAD_T_HAS_NATIVE_ID)
|
158
|
+
#ifndef NO_RB_NATIVE_THREAD
|
159
|
+
return thread_struct_from_object(thread)->nt->tid;
|
160
|
+
#else
|
161
|
+
return thread_struct_from_object(thread)->tid;
|
162
|
+
#endif
|
163
|
+
#else
|
164
|
+
rb_nativethread_id_t pthread_id = pthread_id_for(thread);
|
165
|
+
|
166
|
+
#ifdef __APPLE__
|
167
|
+
uint64_t result;
|
168
|
+
// On macOS, this gives us the same identifier that shows up in activity monitor
|
169
|
+
int error = pthread_threadid_np(pthread_id, &result);
|
170
|
+
if (error) rb_syserr_fail(error, "Unexpected failure in pthread_threadid_np");
|
171
|
+
return result;
|
172
|
+
#else
|
173
|
+
// Fallback, when we have nothing better (e.g. on Ruby < 3.1 on Linux)
|
174
|
+
// @ivoanjo: In the future we may want to explore some potential hacks to get the actual tid on linux
|
175
|
+
// (e.g. https://stackoverflow.com/questions/558469/how-do-i-get-a-thread-id-from-an-arbitrary-pthread-t )
|
176
|
+
return (uint64_t) pthread_id;
|
177
|
+
#endif
|
178
|
+
#endif
|
179
|
+
}
|
180
|
+
|
181
|
+
// Returns the stack depth by using the same approach as rb_profile_frames and backtrace_each: get the positions
|
182
|
+
// of the end and current frame pointers and subtracting them.
|
183
|
+
ptrdiff_t stack_depth_for(VALUE thread) {
|
184
|
+
#ifndef USE_THREAD_INSTEAD_OF_EXECUTION_CONTEXT // Modern Rubies
|
185
|
+
const rb_execution_context_t *ec = thread_struct_from_object(thread)->ec;
|
186
|
+
#else // Ruby < 2.5
|
187
|
+
const rb_thread_t *ec = thread_struct_from_object(thread);
|
188
|
+
#endif
|
189
|
+
|
190
|
+
const rb_control_frame_t *cfp = ec->cfp, *end_cfp = RUBY_VM_END_CONTROL_FRAME(ec);
|
191
|
+
|
192
|
+
if (end_cfp == NULL) return 0;
|
193
|
+
|
194
|
+
// Skip dummy frame, as seen in `backtrace_each` (`vm_backtrace.c`) and our custom rb_profile_frames
|
195
|
+
// ( https://github.com/ruby/ruby/blob/4bd38e8120f2fdfdd47a34211720e048502377f1/vm_backtrace.c#L890-L914 )
|
196
|
+
end_cfp = RUBY_VM_NEXT_CONTROL_FRAME(end_cfp);
|
197
|
+
|
198
|
+
return end_cfp <= cfp ? 0 : end_cfp - cfp - 1;
|
199
|
+
}
|
200
|
+
|
201
|
+
// This was renamed in Ruby 3.2
|
202
|
+
#if !defined(ccan_list_for_each) && defined(list_for_each)
|
203
|
+
#define ccan_list_for_each list_for_each
|
204
|
+
#endif
|
205
|
+
|
206
|
+
// Tries to match rb_thread_list() but that method isn't accessible to extensions
|
207
|
+
VALUE ddtrace_thread_list(void) {
|
208
|
+
VALUE result = rb_ary_new();
|
209
|
+
rb_thread_t *thread = NULL;
|
210
|
+
|
211
|
+
// Ruby 3 Safety: Our implementation is inspired by `rb_ractor_thread_list` BUT that method wraps the operations below
|
212
|
+
// with `RACTOR_LOCK` and `RACTOR_UNLOCK`.
|
213
|
+
//
|
214
|
+
// This initially made me believe that one MUST grab the ractor lock (which is different from the ractor-scoped Global
|
215
|
+
// VM Lock) in able to iterate the `threads.set`. This turned out not to be the case: upon further study of the VM
|
216
|
+
// codebase in 3.2-master, 3.1 and 3.0, there's quite a few places where `threads.set` is accessed without grabbing
|
217
|
+
// the ractor lock: `ractor_mark` (ractor.c), `thgroup_list` (thread.c), `rb_check_deadlock` (thread.c), etc.
|
218
|
+
//
|
219
|
+
// I suspect the design in `rb_ractor_thread_list` may be done that way to perhaps in the future expose it to be
|
220
|
+
// called from a different Ractor, but I'm not sure...
|
221
|
+
#ifdef HAVE_RUBY_RACTOR_H
|
222
|
+
rb_ractor_t *current_ractor = GET_RACTOR();
|
223
|
+
ccan_list_for_each(¤t_ractor->threads.set, thread, lt_node) {
|
224
|
+
#else
|
225
|
+
rb_vm_t *vm =
|
226
|
+
#ifndef NO_GET_VM
|
227
|
+
GET_VM();
|
228
|
+
#else
|
229
|
+
thread_struct_from_object(rb_thread_current())->vm;
|
230
|
+
#endif
|
231
|
+
list_for_each(&vm->living_threads, thread, vmlt_node) {
|
232
|
+
#endif
|
233
|
+
switch (thread->status) {
|
234
|
+
case THREAD_RUNNABLE:
|
235
|
+
case THREAD_STOPPED:
|
236
|
+
case THREAD_STOPPED_FOREVER:
|
237
|
+
rb_ary_push(result, thread->self);
|
238
|
+
default:
|
239
|
+
break;
|
240
|
+
}
|
241
|
+
}
|
242
|
+
|
243
|
+
return result;
|
244
|
+
}
|
245
|
+
|
246
|
+
bool is_thread_alive(VALUE thread) {
|
247
|
+
return thread_struct_from_object(thread)->status != THREAD_KILLED;
|
248
|
+
}
|
249
|
+
|
250
|
+
// `thread` gets used on all Rubies except 2.2
|
251
|
+
// To avoid getting false "unused argument" warnings in setups where it's not used, we need to do this weird dance
|
252
|
+
// with diagnostic stuff. See https://nelkinda.com/blog/suppress-warnings-in-gcc-and-clang/#d11e364 for details.
|
253
|
+
#pragma GCC diagnostic push
|
254
|
+
#pragma GCC diagnostic ignored "-Wunused-parameter"
|
255
|
+
VALUE thread_name_for(VALUE thread) {
|
256
|
+
#ifdef NO_THREAD_NAMES
|
257
|
+
return Qnil;
|
258
|
+
#else
|
259
|
+
return thread_struct_from_object(thread)->name;
|
260
|
+
#endif
|
261
|
+
}
|
262
|
+
#pragma GCC diagnostic pop
|
263
|
+
|
264
|
+
// -----------------------------------------------------------------------------
|
265
|
+
// The sources below are modified versions of code extracted from the Ruby project.
|
266
|
+
// Each function is annotated with its origin, why we imported it, and the changes made.
|
267
|
+
//
|
268
|
+
// The Ruby project copyright and license follow:
|
269
|
+
// -----------------------------------------------------------------------------
|
270
|
+
// Copyright (C) 1993-2013 Yukihiro Matsumoto. All rights reserved.
|
271
|
+
//
|
272
|
+
// Redistribution and use in source and binary forms, with or without
|
273
|
+
// modification, are permitted provided that the following conditions
|
274
|
+
// are met:
|
275
|
+
// 1. Redistributions of source code must retain the above copyright
|
276
|
+
// notice, this list of conditions and the following disclaimer.
|
277
|
+
// 2. Redistributions in binary form must reproduce the above copyright
|
278
|
+
// notice, this list of conditions and the following disclaimer in the
|
279
|
+
// documentation and/or other materials provided with the distribution.
|
280
|
+
//
|
281
|
+
// THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
282
|
+
// ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
283
|
+
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
284
|
+
// ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
285
|
+
// FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
286
|
+
// DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
287
|
+
// OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
288
|
+
// HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
289
|
+
// LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
290
|
+
// OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
291
|
+
// SUCH DAMAGE.
|
292
|
+
|
293
|
+
#ifndef USE_LEGACY_RB_PROFILE_FRAMES // Modern Rubies
|
294
|
+
|
295
|
+
// Taken from upstream vm_core.h at commit 5f10bd634fb6ae8f74a4ea730176233b0ca96954 (March 2022, Ruby 3.2 trunk)
|
296
|
+
// Copyright (C) 2004-2007 Koichi Sasada
|
297
|
+
// to support our custom rb_profile_frames (see below)
|
298
|
+
// Modifications: None
|
299
|
+
#define ISEQ_BODY(iseq) ((iseq)->body)
|
300
|
+
|
301
|
+
// Taken from upstream vm_backtrace.c at commit 5f10bd634fb6ae8f74a4ea730176233b0ca96954 (March 2022, Ruby 3.2 trunk)
|
302
|
+
// Copyright (C) 1993-2012 Yukihiro Matsumoto
|
303
|
+
// to support our custom rb_profile_frames (see below)
|
304
|
+
// Modifications: None
|
305
|
+
//
|
306
|
+
// `node_id` gets used depending on Ruby VM compilation settings (USE_ISEQ_NODE_ID being defined).
|
307
|
+
// To avoid getting false "unused argument" warnings in setups where it's not used, we need to do this weird dance
|
308
|
+
// with diagnostic stuff. See https://nelkinda.com/blog/suppress-warnings-in-gcc-and-clang/#d11e364 for details.
|
309
|
+
#pragma GCC diagnostic push
|
310
|
+
#pragma GCC diagnostic ignored "-Wunused-parameter"
|
311
|
+
inline static int
|
312
|
+
calc_pos(const rb_iseq_t *iseq, const VALUE *pc, int *lineno, int *node_id)
|
313
|
+
{
|
314
|
+
VM_ASSERT(iseq);
|
315
|
+
VM_ASSERT(ISEQ_BODY(iseq));
|
316
|
+
VM_ASSERT(ISEQ_BODY(iseq)->iseq_encoded);
|
317
|
+
VM_ASSERT(ISEQ_BODY(iseq)->iseq_size);
|
318
|
+
if (! pc) {
|
319
|
+
if (ISEQ_BODY(iseq)->type == ISEQ_TYPE_TOP) {
|
320
|
+
VM_ASSERT(! ISEQ_BODY(iseq)->local_table);
|
321
|
+
VM_ASSERT(! ISEQ_BODY(iseq)->local_table_size);
|
322
|
+
return 0;
|
323
|
+
}
|
324
|
+
if (lineno) *lineno = FIX2INT(ISEQ_BODY(iseq)->location.first_lineno);
|
325
|
+
#ifdef USE_ISEQ_NODE_ID
|
326
|
+
if (node_id) *node_id = -1;
|
327
|
+
#endif
|
328
|
+
return 1;
|
329
|
+
}
|
330
|
+
else {
|
331
|
+
ptrdiff_t n = pc - ISEQ_BODY(iseq)->iseq_encoded;
|
332
|
+
VM_ASSERT(n <= ISEQ_BODY(iseq)->iseq_size);
|
333
|
+
VM_ASSERT(n >= 0);
|
334
|
+
ASSUME(n >= 0);
|
335
|
+
size_t pos = n; /* no overflow */
|
336
|
+
if (LIKELY(pos)) {
|
337
|
+
/* use pos-1 because PC points next instruction at the beginning of instruction */
|
338
|
+
pos--;
|
339
|
+
}
|
340
|
+
#if VMDEBUG && defined(HAVE_BUILTIN___BUILTIN_TRAP)
|
341
|
+
else {
|
342
|
+
/* SDR() is not possible; that causes infinite loop. */
|
343
|
+
rb_print_backtrace();
|
344
|
+
__builtin_trap();
|
345
|
+
}
|
346
|
+
#endif
|
347
|
+
if (lineno) *lineno = rb_iseq_line_no(iseq, pos);
|
348
|
+
#ifdef USE_ISEQ_NODE_ID
|
349
|
+
if (node_id) *node_id = rb_iseq_node_id(iseq, pos);
|
350
|
+
#endif
|
351
|
+
return 1;
|
352
|
+
}
|
35
353
|
}
|
354
|
+
#pragma GCC diagnostic pop
|
355
|
+
|
356
|
+
// Taken from upstream vm_backtrace.c at commit 5f10bd634fb6ae8f74a4ea730176233b0ca96954 (March 2022, Ruby 3.2 trunk)
|
357
|
+
// Copyright (C) 1993-2012 Yukihiro Matsumoto
|
358
|
+
// to support our custom rb_profile_frames (see below)
|
359
|
+
// Modifications: None
|
360
|
+
inline static int
|
361
|
+
calc_lineno(const rb_iseq_t *iseq, const VALUE *pc)
|
362
|
+
{
|
363
|
+
int lineno;
|
364
|
+
if (calc_pos(iseq, pc, &lineno, NULL)) return lineno;
|
365
|
+
return 0;
|
366
|
+
}
|
367
|
+
|
368
|
+
// Taken from upstream vm_backtrace.c at commit 5f10bd634fb6ae8f74a4ea730176233b0ca96954 (March 2022, Ruby 3.2 trunk)
|
369
|
+
// Copyright (C) 1993-2012 Yukihiro Matsumoto
|
370
|
+
// Modifications:
|
371
|
+
// * Renamed rb_profile_frames => ddtrace_rb_profile_frames
|
372
|
+
// * Add thread argument
|
373
|
+
// * Add is_ruby_frame argument
|
374
|
+
// * Removed `if (lines)` tests -- require/assume that like `buff`, `lines` is always specified
|
375
|
+
// * Support Ruby < 2.5 by using rb_thread_t instead of rb_execution_context_t (which did not exist and was just
|
376
|
+
// part of rb_thread_t)
|
377
|
+
// * Support Ruby < 2.4 by using `RUBY_VM_NORMAL_ISEQ_P(cfp->iseq)` instead of `VM_FRAME_RUBYFRAME_P(cfp)`.
|
378
|
+
// Given that the Ruby 2.3 version of `rb_profile_frames` did not support native methods and thus did not need this
|
379
|
+
// check, how did I figure out what to replace it with? I did it by looking at other places in the VM code where the
|
380
|
+
// code looks exactly the same but Ruby 2.4 uses `VM_FRAME_RUBYFRAME_P` whereas Ruby 2.3 used `RUBY_VM_NORMAL_ISEQ_P`.
|
381
|
+
// Examples of these are `errinfo_place` in `eval.c`, `rb_vm_get_ruby_level_next_cfp` (among others) in `vm.c`, etc.
|
382
|
+
// * Skip dummy frame that shows up in main thread
|
383
|
+
// * Add `end_cfp == NULL` and `end_cfp <= cfp` safety checks. These are used in a bunch of places in
|
384
|
+
// `vm_backtrace.c` (`backtrace_each`, `backtrace_size`, `rb_ec_partial_backtrace_object`) but are conspicuously
|
385
|
+
// absent from `rb_profile_frames`. Oversight?
|
386
|
+
// * Skip frames where `cfp->iseq && !cfp->pc`. These seem to be internal and are skipped by `backtrace_each` in
|
387
|
+
// `vm_backtrace.c`.
|
388
|
+
// * Check thread status and do not sample if thread has been killed.
|
389
|
+
// * Match Ruby reference stack trace APIs that use the iseq instead of the callable method entry to get information
|
390
|
+
// for iseqs created from calls to `eval` and `instance_eval`. This makes it so that `rb_profile_frame_path` on
|
391
|
+
// the `VALUE` returned by rb_profile_frames returns `(eval)` instead of the path of the file where the `eval`
|
392
|
+
// was called from.
|
393
|
+
// * Imported fix from https://github.com/ruby/ruby/pull/7116 to avoid sampling threads that are still being created
|
394
|
+
//
|
395
|
+
// **IMPORTANT: WHEN CHANGING THIS FUNCTION, CONSIDER IF THE SAME CHANGE ALSO NEEDS TO BE MADE TO THE VARIANT FOR
|
396
|
+
// RUBY 2.2 AND BELOW WHICH IS ALSO PRESENT ON THIS FILE**
|
397
|
+
//
|
398
|
+
// What is rb_profile_frames?
|
399
|
+
// `rb_profile_frames` is a Ruby VM debug API added for use by profilers for sampling the stack trace of a Ruby thread.
|
400
|
+
// Its main other user is the stackprof profiler: https://github.com/tmm1/stackprof .
|
401
|
+
//
|
402
|
+
// Why do we need a custom version of rb_profile_frames?
|
403
|
+
//
|
404
|
+
// There are a few reasons:
|
405
|
+
// 1. To backport improved behavior to older Rubies. Prior to Ruby 3.0 (https://github.com/ruby/ruby/pull/3299),
|
406
|
+
// rb_profile_frames skipped CFUNC frames, aka frames that are implemented with native code, and thus the resulting
|
407
|
+
// stacks were quite incomplete as a big part of the Ruby standard library is implemented with native code.
|
408
|
+
//
|
409
|
+
// 2. To extend this function to work with any thread. The upstream rb_profile_frames function only targets the current
|
410
|
+
// thread, and to support wall-clock profiling we require sampling other threads. This is only safe because of the
|
411
|
+
// Global VM Lock. (We don't yet support sampling Ractors beyond the main one; we'll need to find a way to do it
|
412
|
+
// safely first.)
|
413
|
+
//
|
414
|
+
// 3. To get more information out of the Ruby VM. The Ruby VM has a lot more information than is exposed through
|
415
|
+
// rb_profile_frames, and by making our own copy of this function we can extract more of this information.
|
416
|
+
// See for backtracie gem (https://github.com/ivoanjo/backtracie) for an exploration of what can potentially be done.
|
417
|
+
//
|
418
|
+
// 4. Because we haven't yet submitted patches to upstream Ruby. As with any changes on the `private_vm_api_access.c`,
|
419
|
+
// our medium/long-term plan is to contribute upstream changes and make it so that we don't need any of this
|
420
|
+
// on modern Rubies.
|
421
|
+
//
|
422
|
+
// 5. To make rb_profile_frames behave more like the Ruby-level reference stack trace APIs (`Thread#backtrace_locations`
|
423
|
+
// and friends). We've found quite a few situations where the data from rb_profile_frames and the reference APIs
|
424
|
+
// disagree, and quite a few of them seem oversights/bugs (speculation from my part) rather than deliberate
|
425
|
+
// decisions.
|
426
|
+
int ddtrace_rb_profile_frames(VALUE thread, int start, int limit, VALUE *buff, int *lines, bool* is_ruby_frame)
|
427
|
+
{
|
428
|
+
int i;
|
429
|
+
// Modified from upstream: Instead of using `GET_EC` to collect info from the current thread,
|
430
|
+
// support sampling any thread (including the current) passed as an argument
|
431
|
+
rb_thread_t *th = thread_struct_from_object(thread);
|
432
|
+
#ifndef USE_THREAD_INSTEAD_OF_EXECUTION_CONTEXT // Modern Rubies
|
433
|
+
const rb_execution_context_t *ec = th->ec;
|
434
|
+
#else // Ruby < 2.5
|
435
|
+
const rb_thread_t *ec = th;
|
436
|
+
#endif
|
437
|
+
const rb_control_frame_t *cfp = ec->cfp, *end_cfp = RUBY_VM_END_CONTROL_FRAME(ec);
|
438
|
+
const rb_callable_method_entry_t *cme;
|
439
|
+
|
440
|
+
// This should not happen for ddtrace (it can only happen when a thread is still being created), but I've imported
|
441
|
+
// it from https://github.com/ruby/ruby/pull/7116 in a "just in case" kind of mindset.
|
442
|
+
if (cfp == NULL) return 0;
|
443
|
+
|
444
|
+
// Avoid sampling dead threads
|
445
|
+
if (th->status == THREAD_KILLED) return 0;
|
446
|
+
|
447
|
+
// `vm_backtrace.c` includes this check in several methods. This happens on newly-created threads, and may
|
448
|
+
// also (not entirely sure) happen on dead threads
|
449
|
+
if (end_cfp == NULL) return PLACEHOLDER_STACK_IN_NATIVE_CODE;
|
450
|
+
|
451
|
+
// Fix: Skip dummy frame that shows up in main thread.
|
452
|
+
//
|
453
|
+
// According to a comment in `backtrace_each` (`vm_backtrace.c`), there's two dummy frames that we should ignore
|
454
|
+
// at the base of every thread's stack.
|
455
|
+
// (see https://github.com/ruby/ruby/blob/4bd38e8120f2fdfdd47a34211720e048502377f1/vm_backtrace.c#L890-L914 )
|
456
|
+
//
|
457
|
+
// One is being pointed to by `RUBY_VM_END_CONTROL_FRAME(ec)`, and so we need to advance to the next one, and
|
458
|
+
// reaching it will be used as a condition to break out of the loop below.
|
459
|
+
//
|
460
|
+
// Note that in `backtrace_each` there's two calls to `RUBY_VM_NEXT_CONTROL_FRAME`, but the loop bounds there
|
461
|
+
// are computed in a different way, so the two calls really are equivalent to one here.
|
462
|
+
end_cfp = RUBY_VM_NEXT_CONTROL_FRAME(end_cfp);
|
463
|
+
|
464
|
+
// See comment on `record_placeholder_stack_in_native_code` for a full explanation of what this means (and why we don't just return 0)
|
465
|
+
if (end_cfp <= cfp) return PLACEHOLDER_STACK_IN_NATIVE_CODE;
|
466
|
+
|
467
|
+
for (i=0; i<limit && cfp != end_cfp;) {
|
468
|
+
if (cfp->iseq && !cfp->pc) {
|
469
|
+
// Fix: Do nothing -- this frame should not be used
|
470
|
+
//
|
471
|
+
// rb_profile_frames does not do this check, but `backtrace_each` (`vm_backtrace.c`) does. This frame is not
|
472
|
+
// exposed by the Ruby backtrace APIs and for now we want to match its behavior 1:1
|
473
|
+
}
|
474
|
+
#ifndef USE_ISEQ_P_INSTEAD_OF_RUBYFRAME_P // Modern Rubies
|
475
|
+
else if (VM_FRAME_RUBYFRAME_P(cfp)) {
|
476
|
+
#else // Ruby < 2.4
|
477
|
+
else if (RUBY_VM_NORMAL_ISEQ_P(cfp->iseq)) {
|
478
|
+
#endif
|
479
|
+
if (start > 0) {
|
480
|
+
start--;
|
481
|
+
continue;
|
482
|
+
}
|
483
|
+
|
484
|
+
/* record frame info */
|
485
|
+
cme = rb_vm_frame_method_entry(cfp);
|
486
|
+
|
487
|
+
if (cme && cme->def->type == VM_METHOD_TYPE_ISEQ &&
|
488
|
+
// Fix: Do not use callable method entry when iseq is for an eval.
|
489
|
+
// TL;DR: This fix is needed for us to match the Ruby reference API information in the
|
490
|
+
// "when sampling an eval/instance eval inside an object" spec.
|
491
|
+
//
|
492
|
+
// Longer note:
|
493
|
+
// When a frame is a ruby frame (VM_FRAME_RUBYFRAME_P above), we can get information about it
|
494
|
+
// by introspecting both the callable method entry, as well as the iseq directly.
|
495
|
+
// Often they match... but sometimes they provide different info (as in the "iseq for an eval" situation
|
496
|
+
// here).
|
497
|
+
// If my reading of vm_backtrace.c is correct, the actual Ruby stack trace API **never** uses the
|
498
|
+
// callable method entry for Ruby frames, but only for VM_METHOD_TYPE_CFUNC (see `backtrace_each` method
|
499
|
+
// on that file).
|
500
|
+
// So... why does `rb_profile_frames` do something different? Is it a bug? Is it because it exposes
|
501
|
+
// more information than the Ruby stack frame API?
|
502
|
+
// As a final note, the `backtracie` gem (https://github.com/ivoanjo/backtracie) can be used to introspect
|
503
|
+
// the full metadata provided by both the callable method entry as well as the iseq, and is really useful
|
504
|
+
// to debug and learn more about these differences.
|
505
|
+
cfp->iseq->body->type != ISEQ_TYPE_EVAL) {
|
506
|
+
buff[i] = (VALUE)cme;
|
507
|
+
}
|
508
|
+
else {
|
509
|
+
buff[i] = (VALUE)cfp->iseq;
|
510
|
+
}
|
511
|
+
|
512
|
+
lines[i] = calc_lineno(cfp->iseq, cfp->pc);
|
513
|
+
is_ruby_frame[i] = true;
|
514
|
+
i++;
|
515
|
+
}
|
516
|
+
else {
|
517
|
+
cme = rb_vm_frame_method_entry(cfp);
|
518
|
+
if (cme && cme->def->type == VM_METHOD_TYPE_CFUNC) {
|
519
|
+
buff[i] = (VALUE)cme;
|
520
|
+
lines[i] = 0;
|
521
|
+
is_ruby_frame[i] = false;
|
522
|
+
i++;
|
523
|
+
}
|
524
|
+
}
|
525
|
+
cfp = RUBY_VM_PREVIOUS_CONTROL_FRAME(cfp);
|
526
|
+
}
|
527
|
+
|
528
|
+
return i;
|
529
|
+
}
|
530
|
+
|
531
|
+
#ifdef USE_BACKPORTED_RB_PROFILE_FRAME_METHOD_NAME
|
532
|
+
|
533
|
+
// Taken from upstream vm_backtrace.c at commit 5f10bd634fb6ae8f74a4ea730176233b0ca96954 (March 2022, Ruby 3.2 trunk)
|
534
|
+
// Copyright (C) 1993-2012 Yukihiro Matsumoto
|
535
|
+
// to support our custom rb_profile_frame_method_name (see below)
|
536
|
+
// Modifications: None
|
537
|
+
static VALUE
|
538
|
+
id2str(ID id)
|
539
|
+
{
|
540
|
+
VALUE str = rb_id2str(id);
|
541
|
+
if (!str) return Qnil;
|
542
|
+
return str;
|
543
|
+
}
|
544
|
+
#define rb_id2str(id) id2str(id)
|
545
|
+
|
546
|
+
// Taken from upstream vm_backtrace.c at commit 5f10bd634fb6ae8f74a4ea730176233b0ca96954 (March 2022, Ruby 3.2 trunk)
|
547
|
+
// Copyright (C) 1993-2012 Yukihiro Matsumoto
|
548
|
+
// to support our custom rb_profile_frame_method_name (see below)
|
549
|
+
// Modifications: None
|
550
|
+
static const rb_iseq_t *
|
551
|
+
frame2iseq(VALUE frame)
|
552
|
+
{
|
553
|
+
if (NIL_P(frame)) return NULL;
|
554
|
+
|
555
|
+
if (RB_TYPE_P(frame, T_IMEMO)) {
|
556
|
+
switch (imemo_type(frame)) {
|
557
|
+
case imemo_iseq:
|
558
|
+
return (const rb_iseq_t *)frame;
|
559
|
+
case imemo_ment:
|
560
|
+
{
|
561
|
+
const rb_callable_method_entry_t *cme = (rb_callable_method_entry_t *)frame;
|
562
|
+
switch (cme->def->type) {
|
563
|
+
case VM_METHOD_TYPE_ISEQ:
|
564
|
+
return cme->def->body.iseq.iseqptr;
|
565
|
+
default:
|
566
|
+
return NULL;
|
567
|
+
}
|
568
|
+
}
|
569
|
+
default:
|
570
|
+
break;
|
571
|
+
}
|
572
|
+
}
|
573
|
+
rb_bug("frame2iseq: unreachable");
|
574
|
+
}
|
575
|
+
|
576
|
+
// Taken from upstream vm_backtrace.c at commit 5f10bd634fb6ae8f74a4ea730176233b0ca96954 (March 2022, Ruby 3.2 trunk)
|
577
|
+
// Copyright (C) 1993-2012 Yukihiro Matsumoto
|
578
|
+
// to support our custom rb_profile_frame_method_name (see below)
|
579
|
+
// Modifications: None
|
580
|
+
static const rb_callable_method_entry_t *
|
581
|
+
cframe(VALUE frame)
|
582
|
+
{
|
583
|
+
if (NIL_P(frame)) return NULL;
|
584
|
+
|
585
|
+
if (RB_TYPE_P(frame, T_IMEMO)) {
|
586
|
+
switch (imemo_type(frame)) {
|
587
|
+
case imemo_ment:
|
588
|
+
{
|
589
|
+
const rb_callable_method_entry_t *cme = (rb_callable_method_entry_t *)frame;
|
590
|
+
switch (cme->def->type) {
|
591
|
+
case VM_METHOD_TYPE_CFUNC:
|
592
|
+
return cme;
|
593
|
+
default:
|
594
|
+
return NULL;
|
595
|
+
}
|
596
|
+
}
|
597
|
+
default:
|
598
|
+
return NULL;
|
599
|
+
}
|
600
|
+
}
|
601
|
+
|
602
|
+
return NULL;
|
603
|
+
}
|
604
|
+
|
605
|
+
// Taken from upstream vm_backtrace.c at commit 5f10bd634fb6ae8f74a4ea730176233b0ca96954 (March 2022, Ruby 3.2 trunk)
|
606
|
+
// Copyright (C) 1993-2012 Yukihiro Matsumoto
|
607
|
+
//
|
608
|
+
// Ruby 3.0 finally added support for showing CFUNC frames (frames for methods written using native code)
|
609
|
+
// in stack traces gathered via `rb_profile_frames` (https://github.com/ruby/ruby/pull/3299).
|
610
|
+
// To access this information on older Rubies, beyond using our custom `ddtrace_rb_profile_frames` above, we also need
|
611
|
+
// to backport the Ruby 3.0+ version of `rb_profile_frame_method_name`.
|
612
|
+
//
|
613
|
+
// Modifications:
|
614
|
+
// * Renamed rb_profile_frame_method_name => ddtrace_rb_profile_frame_method_name
|
615
|
+
VALUE
|
616
|
+
ddtrace_rb_profile_frame_method_name(VALUE frame)
|
617
|
+
{
|
618
|
+
const rb_callable_method_entry_t *cme = cframe(frame);
|
619
|
+
if (cme) {
|
620
|
+
ID mid = cme->def->original_id;
|
621
|
+
return id2str(mid);
|
622
|
+
}
|
623
|
+
const rb_iseq_t *iseq = frame2iseq(frame);
|
624
|
+
return iseq ? rb_iseq_method_name(iseq) : Qnil;
|
625
|
+
}
|
626
|
+
|
627
|
+
#endif // USE_BACKPORTED_RB_PROFILE_FRAME_METHOD_NAME
|
628
|
+
|
629
|
+
// Support code for older Rubies that cannot use the MJIT header
|
630
|
+
#ifndef RUBY_MJIT_HEADER
|
631
|
+
|
632
|
+
#define MJIT_STATIC // No-op on older Rubies
|
633
|
+
|
634
|
+
// Taken from upstream include/ruby/backward/2/bool.h at commit 5f10bd634fb6ae8f74a4ea730176233b0ca96954 (March 2022, Ruby 3.2 trunk)
|
635
|
+
// Copyright (C) Ruby developers <ruby-core@ruby-lang.org>
|
636
|
+
// to support our custom rb_profile_frames (see above)
|
637
|
+
// Modifications: None
|
638
|
+
#ifndef FALSE
|
639
|
+
# define FALSE false
|
640
|
+
#elif FALSE
|
641
|
+
# error FALSE must be false
|
642
|
+
#endif
|
643
|
+
|
644
|
+
#ifndef TRUE
|
645
|
+
# define TRUE true
|
646
|
+
#elif ! TRUE
|
647
|
+
# error TRUE must be true
|
648
|
+
#endif
|
649
|
+
|
650
|
+
// Taken from upstream vm_insnhelper.c at commit 5f10bd634fb6ae8f74a4ea730176233b0ca96954 (March 2022, Ruby 3.2 trunk)
|
651
|
+
// Copyright (C) 2007 Koichi Sasada
|
652
|
+
// to support our custom rb_profile_frames (see above)
|
653
|
+
// Modifications: None
|
654
|
+
static rb_callable_method_entry_t *
|
655
|
+
check_method_entry(VALUE obj, int can_be_svar)
|
656
|
+
{
|
657
|
+
if (obj == Qfalse) return NULL;
|
658
|
+
|
659
|
+
#if VM_CHECK_MODE > 0
|
660
|
+
if (!RB_TYPE_P(obj, T_IMEMO)) rb_bug("check_method_entry: unknown type: %s", rb_obj_info(obj));
|
661
|
+
#endif
|
662
|
+
|
663
|
+
switch (imemo_type(obj)) {
|
664
|
+
case imemo_ment:
|
665
|
+
return (rb_callable_method_entry_t *)obj;
|
666
|
+
case imemo_cref:
|
667
|
+
return NULL;
|
668
|
+
case imemo_svar:
|
669
|
+
if (can_be_svar) {
|
670
|
+
return check_method_entry(((struct vm_svar *)obj)->cref_or_me, FALSE);
|
671
|
+
}
|
672
|
+
default:
|
673
|
+
#if VM_CHECK_MODE > 0
|
674
|
+
rb_bug("check_method_entry: svar should not be there:");
|
675
|
+
#endif
|
676
|
+
return NULL;
|
677
|
+
}
|
678
|
+
}
|
679
|
+
|
680
|
+
#ifndef USE_LEGACY_RB_VM_FRAME_METHOD_ENTRY
|
681
|
+
// Taken from upstream vm_insnhelper.c at commit 5f10bd634fb6ae8f74a4ea730176233b0ca96954 (March 2022, Ruby 3.2 trunk)
|
682
|
+
// Copyright (C) 2007 Koichi Sasada
|
683
|
+
// to support our custom rb_profile_frames (see above)
|
684
|
+
//
|
685
|
+
// While older Rubies may have this function, the symbol is not exported which leads to dynamic loader issues, e.g.
|
686
|
+
// `dyld: lazy symbol binding failed: Symbol not found: _rb_vm_frame_method_entry`.
|
687
|
+
//
|
688
|
+
// Modifications: None
|
689
|
+
MJIT_STATIC const rb_callable_method_entry_t *
|
690
|
+
rb_vm_frame_method_entry(const rb_control_frame_t *cfp)
|
691
|
+
{
|
692
|
+
const VALUE *ep = cfp->ep;
|
693
|
+
rb_callable_method_entry_t *me;
|
694
|
+
|
695
|
+
while (!VM_ENV_LOCAL_P(ep)) {
|
696
|
+
if ((me = check_method_entry(ep[VM_ENV_DATA_INDEX_ME_CREF], FALSE)) != NULL) return me;
|
697
|
+
ep = VM_ENV_PREV_EP(ep);
|
698
|
+
}
|
699
|
+
|
700
|
+
return check_method_entry(ep[VM_ENV_DATA_INDEX_ME_CREF], TRUE);
|
701
|
+
}
|
702
|
+
#else
|
703
|
+
// Taken from upstream vm_insnhelper.c at commit 556e9f726e2b80f6088982c6b43abfe68bfad591 (October 2018, ruby_2_3 branch)
|
704
|
+
// Copyright (C) 2007 Koichi Sasada
|
705
|
+
// to support our custom rb_profile_frames (see above)
|
706
|
+
//
|
707
|
+
// Quite a few macros in this function changed after Ruby 2.3. Rather than trying to fix the Ruby 3.2 version to work
|
708
|
+
// with 2.3 constants, I decided to import the Ruby 2.3 version.
|
709
|
+
//
|
710
|
+
// Modifications: None
|
711
|
+
const rb_callable_method_entry_t *
|
712
|
+
rb_vm_frame_method_entry(const rb_control_frame_t *cfp)
|
713
|
+
{
|
714
|
+
VALUE *ep = cfp->ep;
|
715
|
+
rb_callable_method_entry_t *me;
|
716
|
+
|
717
|
+
while (!VM_EP_LEP_P(ep)) {
|
718
|
+
if ((me = check_method_entry(ep[-1], FALSE)) != NULL) return me;
|
719
|
+
ep = VM_EP_PREV_EP(ep);
|
720
|
+
}
|
721
|
+
|
722
|
+
return check_method_entry(ep[-1], TRUE);
|
723
|
+
}
|
724
|
+
#endif // USE_LEGACY_RB_VM_FRAME_METHOD_ENTRY
|
725
|
+
|
726
|
+
#endif // RUBY_MJIT_HEADER
|
727
|
+
|
728
|
+
#else // USE_LEGACY_RB_PROFILE_FRAMES, Ruby < 2.3
|
729
|
+
|
730
|
+
// Taken from upstream vm_backtrace.c at commit bbda1a027475bf7ce5e1a9583a7b55d0be71c8fe (March 2018, ruby_2_2 branch)
|
731
|
+
// Copyright (C) 1993-2012 Yukihiro Matsumoto
|
732
|
+
// to support our custom rb_profile_frames (see below)
|
733
|
+
// Modifications: None
|
734
|
+
inline static int
|
735
|
+
calc_lineno(const rb_iseq_t *iseq, const VALUE *pc)
|
736
|
+
{
|
737
|
+
return rb_iseq_line_no(iseq, pc - iseq->iseq_encoded);
|
738
|
+
}
|
739
|
+
|
740
|
+
// Taken from upstream vm_backtrace.c at commit bbda1a027475bf7ce5e1a9583a7b55d0be71c8fe (March 2018, ruby_2_2 branch)
|
741
|
+
// Copyright (C) 1993-2012 Yukihiro Matsumoto
|
742
|
+
// Modifications:
|
743
|
+
// * Renamed rb_profile_frames => ddtrace_rb_profile_frames
|
744
|
+
// * Add thread argument
|
745
|
+
// * Add is_ruby_frame argument
|
746
|
+
// * Removed `if (lines)` tests -- require/assume that like `buff`, `lines` is always specified
|
747
|
+
// * Added support for getting the name from native methods by getting inspiration from `backtrace_each` in
|
748
|
+
// `vm_backtrace.c`. Note that unlike the `rb_profile_frames` for modern Rubies, this version actually returns the
|
749
|
+
// method name as as `VALUE` containing a Ruby string in the `buff`.
|
750
|
+
// * Skip dummy frame that shows up in main thread
|
751
|
+
// * Add `end_cfp == NULL` and `end_cfp <= cfp` safety checks. These are used in a bunch of places in
|
752
|
+
// `vm_backtrace.c` (`backtrace_each`, `backtrace_size`, `rb_ec_partial_backtrace_object`) but are conspicuously
|
753
|
+
// absent from `rb_profile_frames`. Oversight?
|
754
|
+
// * Check thread status and do not sample if thread has been killed.
|
755
|
+
// * Imported fix from https://github.com/ruby/ruby/pull/7116 to avoid sampling threads that are still being created
|
756
|
+
//
|
757
|
+
// The `rb_profile_frames` function changed quite a bit between Ruby 2.2 and 2.3. Since the change was quite complex
|
758
|
+
// I opted not to try to extend support to Ruby 2.2 using the same custom function, and instead I started
|
759
|
+
// anew from the Ruby 2.2 version of the function, applying some of the same fixes that we have for the modern version.
|
760
|
+
int ddtrace_rb_profile_frames(VALUE thread, int start, int limit, VALUE *buff, int *lines, bool* is_ruby_frame)
|
761
|
+
{
|
762
|
+
// **IMPORTANT: THIS IS A CUSTOM RB_PROFILE_FRAMES JUST FOR RUBY 2.2;
|
763
|
+
// SEE ABOVE FOR THE FUNCTION THAT GETS USED FOR MODERN RUBIES**
|
764
|
+
|
765
|
+
int i;
|
766
|
+
rb_thread_t *th = thread_struct_from_object(thread);
|
767
|
+
rb_control_frame_t *cfp = th->cfp, *end_cfp = RUBY_VM_END_CONTROL_FRAME(th);
|
768
|
+
|
769
|
+
// This should not happen for ddtrace (it can only happen when a thread is still being created), but I've imported
|
770
|
+
// it from https://github.com/ruby/ruby/pull/7116 in a "just in case" kind of mindset.
|
771
|
+
if (cfp == NULL) return 0;
|
772
|
+
|
773
|
+
// Avoid sampling dead threads
|
774
|
+
if (th->status == THREAD_KILLED) return 0;
|
775
|
+
|
776
|
+
// `vm_backtrace.c` includes this check in several methods. This happens on newly-created threads, and may
|
777
|
+
// also (not entirely sure) happen on dead threads
|
778
|
+
if (end_cfp == NULL) return PLACEHOLDER_STACK_IN_NATIVE_CODE;
|
779
|
+
|
780
|
+
// Fix: Skip dummy frame that shows up in main thread.
|
781
|
+
//
|
782
|
+
// According to a comment in `backtrace_each` (`vm_backtrace.c`), there's two dummy frames that we should ignore
|
783
|
+
// at the base of every thread's stack.
|
784
|
+
// (see https://github.com/ruby/ruby/blob/4bd38e8120f2fdfdd47a34211720e048502377f1/vm_backtrace.c#L890-L914 )
|
785
|
+
//
|
786
|
+
// One is being pointed to by `RUBY_VM_END_CONTROL_FRAME(ec)`, and so we need to advance to the next one, and
|
787
|
+
// reaching it will be used as a condition to break out of the loop below.
|
788
|
+
//
|
789
|
+
// Note that in `backtrace_each` there's two calls to `RUBY_VM_NEXT_CONTROL_FRAME`, but the loop bounds there
|
790
|
+
// are computed in a different way, so the two calls really are equivalent to one here.
|
791
|
+
end_cfp = RUBY_VM_NEXT_CONTROL_FRAME(end_cfp);
|
792
|
+
|
793
|
+
// See comment on `record_placeholder_stack_in_native_code` for a full explanation of what this means (and why we don't just return 0)
|
794
|
+
if (end_cfp <= cfp) return PLACEHOLDER_STACK_IN_NATIVE_CODE;
|
795
|
+
|
796
|
+
for (i=0; i<limit && cfp != end_cfp;) {
|
797
|
+
if (cfp->iseq && cfp->pc) { /* should be NORMAL_ISEQ */
|
798
|
+
if (start > 0) {
|
799
|
+
start--;
|
800
|
+
continue;
|
801
|
+
}
|
802
|
+
|
803
|
+
/* record frame info */
|
804
|
+
buff[i] = cfp->iseq->self;
|
805
|
+
lines[i] = calc_lineno(cfp->iseq, cfp->pc);
|
806
|
+
is_ruby_frame[i] = true;
|
807
|
+
i++;
|
808
|
+
} else if (RUBYVM_CFUNC_FRAME_P(cfp)) {
|
809
|
+
ID mid = cfp->me->def ? cfp->me->def->original_id : cfp->me->called_id;
|
810
|
+
buff[i] = rb_id2str(mid);
|
811
|
+
lines[i] = 0;
|
812
|
+
is_ruby_frame[i] = false;
|
813
|
+
i++;
|
814
|
+
}
|
815
|
+
cfp = RUBY_VM_PREVIOUS_CONTROL_FRAME(cfp);
|
816
|
+
}
|
817
|
+
|
818
|
+
return i;
|
819
|
+
}
|
820
|
+
|
821
|
+
#endif // USE_LEGACY_RB_PROFILE_FRAMES
|
822
|
+
|
823
|
+
#ifndef NO_RACTORS
|
824
|
+
// This API and definition are exported as a public symbol by the VM BUT the function header is not defined in any public header, so we
|
825
|
+
// repeat it here to be able to use in our code.
|
826
|
+
bool rb_ractor_main_p_(void);
|
827
|
+
extern struct rb_ractor_struct *ruby_single_main_ractor;
|
828
|
+
|
829
|
+
// Taken from upstream ractor_core.h at commit d9cf0388599a3234b9f3c06ddd006cd59a58ab8b (November 2022, Ruby 3.2 trunk)
|
830
|
+
// to allow us to ensure that we're always operating on the main ractor (if Ruby has ractors)
|
831
|
+
// Modifications:
|
832
|
+
// * None
|
833
|
+
bool ddtrace_rb_ractor_main_p(void)
|
834
|
+
{
|
835
|
+
if (ruby_single_main_ractor) {
|
836
|
+
return true;
|
837
|
+
}
|
838
|
+
else {
|
839
|
+
return rb_ractor_main_p_();
|
840
|
+
}
|
841
|
+
}
|
842
|
+
#else
|
843
|
+
// Simplify callers on older Rubies, instead of having them probe if the VM supports Ractors we just tell them that yes
|
844
|
+
// they're always on the main Ractor
|
845
|
+
bool ddtrace_rb_ractor_main_p(void) { return true; }
|
846
|
+
#endif // NO_RACTORS
|