Skip to content

Commit 64678d9

Browse files
committed
Check UDS exists when specified in agent url env var
1 parent 0d9393d commit 64678d9

File tree

8 files changed

+81
-18
lines changed

8 files changed

+81
-18
lines changed

profiler/src/ProfilerEngine/Datadog.Profiler.Native/ProfileExporter.cpp

+18-7
Original file line numberDiff line numberDiff line change
@@ -279,6 +279,17 @@ std::string ProfileExporter::BuildAgentEndpoint(IConfiguration const* configurat
279279
// handle "with agent" case
280280
auto url = configuration->GetAgentUrl(); // copy expected here
281281

282+
if (url.starts_with("unix://"sv))
283+
{
284+
auto path = fs::path(url.substr(7));
285+
std::error_code ec;
286+
if (!fs::exists(path, ec))
287+
{
288+
Log::Debug("Env var '", EnvironmentVariables::AgentUrl, "' contains a path to a non-existent UDS '", url, "'. Fallback to default (HTTP).");
289+
url = "";
290+
}
291+
}
292+
282293
if (url.empty())
283294
{
284295
// Agent mode
@@ -298,14 +309,14 @@ std::string ProfileExporter::BuildAgentEndpoint(IConfiguration const* configurat
298309
}
299310

300311
#endif
312+
}
301313

302-
if (url.empty())
303-
{
304-
// Use default HTTP endpoint
305-
std::stringstream oss;
306-
oss << "http://" << configuration->GetAgentHost() << ":" << configuration->GetAgentPort();
307-
url = oss.str();
308-
}
314+
if (url.empty())
315+
{
316+
// Use default HTTP endpoint
317+
std::stringstream oss;
318+
oss << "http://" << configuration->GetAgentHost() << ":" << configuration->GetAgentPort();
319+
url = oss.str();
309320
}
310321

311322
Log::Info("Using agent endpoint ", url);

profiler/test/Datadog.Profiler.IntegrationTests/Allocations/AllocationsProfilerTest.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,7 @@ private static int GotoEoL(string text, int pos)
353353
// no size available for .NET Framework
354354
if (sample.Value.Count > 1)
355355
{
356-
size = sample.Value[1];
356+
size = sample.Value[1];
357357
}
358358

359359
var labels = sample.Labels(profile).ToArray();
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
// <copyright file="UnixDomainSocketBug.cs" company="Datadog">
2+
// Unless explicitly stated otherwise all files in this repository are licensed under the Apache 2 License.
3+
// This product includes software developed at Datadog (https://www.datadoghq.com/). Copyright 2022 Datadog, Inc.
4+
// </copyright>
5+
6+
using System.IO;
7+
using System.Linq;
8+
using Datadog.Profiler.IntegrationTests.Helpers;
9+
using Datadog.Profiler.SmokeTests;
10+
using Xunit;
11+
using Xunit.Abstractions;
12+
13+
namespace Datadog.Profiler.IntegrationTests.Bugs
14+
{
15+
public class UnixDomainSocketBug
16+
{
17+
private readonly ITestOutputHelper _output;
18+
19+
public UnixDomainSocketBug(ITestOutputHelper output)
20+
{
21+
_output = output;
22+
}
23+
24+
[TestAppFact("Samples.Computer01")]
25+
public void MustUseHttpIfUDS_DoesNotExist(string appName, string framework, string appAssembly)
26+
{
27+
var runner = new SmokeTestRunner(appName, framework, appAssembly, commandLine: "--scenario 1", output: _output);
28+
EnvironmentHelper.DisableDefaultProfilers(runner);
29+
runner.EnvironmentHelper.SetVariable(EnvironmentVariables.WallTimeProfilerEnabled, "1");
30+
runner.EnvironmentHelper.SetVariable(EnvironmentVariables.AgentUrl, "unix:///non_existent/socket");
31+
runner.RunAndCheck();
32+
33+
var logFile = Directory.GetFiles(runner.EnvironmentHelper.LogDir)
34+
.Single(f => Path.GetFileName(f).StartsWith("DD-DotNet-Profiler-Native-"));
35+
36+
var nbSignalHandlerInstallation = File.ReadLines(logFile)
37+
.Count(l => l.Contains("Env var 'DD_TRACE_AGENT_URL' contains a path to a non-existent UDS 'unix:///non_existent/socket'. Fallback to default (HTTP)."));
38+
}
39+
}
40+
}

profiler/test/Datadog.Profiler.IntegrationTests/Exceptions/ExceptionsTest.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ public void ThrowExceptionsInParallel(string appName, string framework, string a
120120
}
121121

122122
[Trait("Category", "LinuxOnly")]
123-
[TestAppFact("Samples.ExceptionGenerator", new [] { "net462", "netcoreapp3.1", "net6.0", "net8.0", })] // FIXME: .NET 9 skipping .NET 9 for now
123+
[TestAppFact("Samples.ExceptionGenerator", new[] { "net462", "netcoreapp3.1", "net6.0", "net8.0", })] // FIXME: .NET 9 skipping .NET 9 for now
124124
public void ThrowExceptionsInParallelWithNewCpuProfiler(string appName, string framework, string appAssembly)
125125
{
126126
StackTrace expectedStack;
@@ -222,7 +222,7 @@ public void Sampling(string appName, string framework, string appAssembly)
222222
exceptionCounts.Should().ContainKey("System.InvalidOperationException").WhoseValue.Should().Be(1);
223223
}
224224

225-
[TestAppFact("Samples.ExceptionGenerator", new [] { "net462", "netcoreapp3.1", "net6.0", "net8.0", })] // FIXME: .NET 9 skipping .NET 9 for now
225+
[TestAppFact("Samples.ExceptionGenerator", new[] { "net462", "netcoreapp3.1", "net6.0", "net8.0", })] // FIXME: .NET 9 skipping .NET 9 for now
226226
public void GetExceptionSamplesWithTimestamp(string appName, string framework, string appAssembly)
227227
{
228228
var runner = new TestApplicationRunner(appName, framework, appAssembly, _output, commandLine: Scenario1);
@@ -233,7 +233,7 @@ public void GetExceptionSamplesWithTimestamp(string appName, string framework, s
233233
CheckExceptionProfiles(runner, true);
234234
}
235235

236-
[TestAppFact("Samples.ExceptionGenerator", new [] { "net462", "netcoreapp3.1", "net6.0", "net8.0", })] // FIXME: .NET 9 skipping .NET 9 for now
236+
[TestAppFact("Samples.ExceptionGenerator", new[] { "net462", "netcoreapp3.1", "net6.0", "net8.0", })] // FIXME: .NET 9 skipping .NET 9 for now
237237
public void GetExceptionSamplesWithoutTimestamp(string appName, string framework, string appAssembly)
238238
{
239239
var runner = new TestApplicationRunner(appName, framework, appAssembly, _output, commandLine: Scenario1);

profiler/test/Datadog.Profiler.IntegrationTests/Helpers/EnvironmentHelper.cs

+16-5
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
using System.Linq;
1111
using System.Runtime.InteropServices;
1212
using Datadog.Profiler.IntegrationTests.Xunit;
13+
using Datadog.Profiler.SmokeTests;
1314

1415
namespace Datadog.Profiler.IntegrationTests.Helpers
1516
{
@@ -91,11 +92,12 @@ internal static string GetConfiguration()
9192

9293
internal static void DisableDefaultProfilers(TestApplicationRunner runner)
9394
{
94-
runner.Environment.SetVariable(EnvironmentVariables.WallTimeProfilerEnabled, "0");
95-
runner.Environment.SetVariable(EnvironmentVariables.CpuProfilerEnabled, "0");
96-
runner.Environment.SetVariable(EnvironmentVariables.GarbageCollectionProfilerEnabled, "0");
97-
runner.Environment.SetVariable(EnvironmentVariables.ExceptionProfilerEnabled, "0");
98-
runner.Environment.SetVariable(EnvironmentVariables.ContentionProfilerEnabled, "0");
95+
DisableDefaultProfilers(runner.Environment);
96+
}
97+
98+
internal static void DisableDefaultProfilers(SmokeTestRunner runner)
99+
{
100+
DisableDefaultProfilers(runner.EnvironmentHelper);
99101
}
100102

101103
internal void EnableTracer()
@@ -213,6 +215,15 @@ internal string GetTestOutputPath()
213215
return _testOutputPath;
214216
}
215217

218+
private static void DisableDefaultProfilers(EnvironmentHelper env)
219+
{
220+
env.SetVariable(EnvironmentVariables.WallTimeProfilerEnabled, "0");
221+
env.SetVariable(EnvironmentVariables.CpuProfilerEnabled, "0");
222+
env.SetVariable(EnvironmentVariables.GarbageCollectionProfilerEnabled, "0");
223+
env.SetVariable(EnvironmentVariables.ExceptionProfilerEnabled, "0");
224+
env.SetVariable(EnvironmentVariables.ContentionProfilerEnabled, "0");
225+
}
226+
216227
private static string BuildTestOutputPath(string framework)
217228
{
218229
// DD_TESTING_OUPUT_DIR is set by the CI

profiler/test/Datadog.Profiler.IntegrationTests/Helpers/EnvironmentVariables.cs

+1
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,6 @@ internal class EnvironmentVariables
3434
public const string TelemetryToDiskEnabled = "DD_INTERNAL_PROFILING_TELEMETRY_TO_DISK_ENABLED";
3535
public const string EtwReplayEndpoint = "DD_INTERNAL_ETW_REPLAY_ENDPOINT";
3636
public const string SsiTelemetryEnabled = "DD_INTERNAL_PROFILING_SSI_TELEMETRY_ENABLED";
37+
public const string AgentUrl = "DD_TRACE_AGENT_URL";
3738
}
3839
}

profiler/test/Datadog.Profiler.IntegrationTests/Signature/SignatureTest.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public SignatureTest(ITestOutputHelper output)
2121
_output = output;
2222
}
2323

24-
[TestAppFact("Samples.Computer01", new [] { "net462", "netcoreapp3.1", "net6.0", "net8.0", })] // FIXME: .NET 9 skipping .NET 9 for now
24+
[TestAppFact("Samples.Computer01", new[] { "net462", "netcoreapp3.1", "net6.0", "net8.0", })] // FIXME: .NET 9 skipping .NET 9 for now
2525
public void ValidateSignatures(string appName, string framework, string appAssembly)
2626
{
2727
var runner = new TestApplicationRunner(appName, framework, appAssembly, _output, commandLine: "--scenario 20");

tracer/test/Datadog.Trace.TestHelpers/MockSpanLink.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@ public class MockSpanLink
2828
public string TraceState { get; set; }
2929

3030
[Key("attributes")]
31-
public Dictionary<string, string> Attributes { get; set; }
31+
public Dictionary<string, string> Attributes { get; set; }
3232
}
3333
}

0 commit comments

Comments
 (0)