Lines Matching refs:tracing
1 # Security model for system-wide tracing on Android/Linux
3 The tracing service has two endpoints (in Chromium: Mojo services, on
13 exploit the tracing service. We do so at the
14 [core/tracing_service_impl.cc](/src/tracing/core/tracing_service_impl.cc) so
20 - The tracing service has to validate all inputs.
21 - In the worst case a bug in the tracing service allowing remote code execution,
22 the tracing service should have no meaningful capabilities to exploit.
23 - The tracing service, by design, has a limited syscall surface to simplify
41 Memory is shared only point-to-point between each producer and the tracing
48 The tracing service guarantees that the `TracePacket` fields written by the
51 See [PacketStreamValidator](/src/tracing/core/packet_stream_validator.cc) and
52 [its unit test](/src/tracing/core/packet_stream_validator_unittest.cc) for more