Skip to content

Commit

Permalink
Merge pull request #322 from Microsoft/users/tihuang/more
Browse files Browse the repository at this point in the history
Linux cancellation
  • Loading branch information
TingluoHuang authored Jun 23, 2016
2 parents a067fbe + c6941a1 commit b096b43
Show file tree
Hide file tree
Showing 8 changed files with 105 additions and 43 deletions.
41 changes: 30 additions & 11 deletions src/Agent.Listener/JobDispatcher.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
using System.IO;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.VisualStudio.Services.WebApi;

namespace Microsoft.VisualStudio.Services.Agent.Listener
{
Expand Down Expand Up @@ -478,6 +479,11 @@ private async Task RenewJobRequestAsync(int poolId, long requestId, Guid lockTok
return;
}
}
else
{
Trace.Error("Catch exception during renew agent jobrequest.");
Trace.Error(ex);
}

// retry
TimeSpan remainingTime = TimeSpan.Zero;
Expand Down Expand Up @@ -514,20 +520,33 @@ private async Task RenewJobRequestAsync(int poolId, long requestId, Guid lockTok
private async Task CompleteJobRequestAsync(int poolId, JobRequestMessage message, Guid lockToken, TaskResult result)
{
var agentServer = HostContext.GetService<IAgentServer>();
try
bool retrying = false;
while (true)
{
using (var csFinishRequest = new CancellationTokenSource(ChannelTimeout))
try
{
await agentServer.FinishAgentRequestAsync(poolId, message.RequestId, lockToken, DateTime.UtcNow, result, csFinishRequest.Token);
using (var csFinishRequest = new CancellationTokenSource(ChannelTimeout))
{
await agentServer.FinishAgentRequestAsync(poolId, message.RequestId, lockToken, DateTime.UtcNow, result, csFinishRequest.Token);
}
break;
}
catch (TaskAgentJobNotFoundException)
{
Trace.Info("TaskAgentJobNotFoundException received, job is no longer valid.");
break;
}
catch (TaskAgentJobTokenExpiredException)
{
Trace.Info("TaskAgentJobTokenExpiredException received, job is no longer valid.");
break;
}
catch (VssServiceResponseException ex) when (!retrying && ex.InnerException != null && ex.InnerException is ArgumentNullException)
{
Trace.Error("Retry on ArgumentNullException due a dotnet core bug in Linux/Mac.");
Trace.Error(ex);
retrying = true;
}
}
catch (TaskAgentJobNotFoundException)
{
Trace.Info("TaskAgentJobNotFoundException received, job is no longer valid.");
}
catch (TaskAgentJobTokenExpiredException)
{
Trace.Info("TaskAgentJobTokenExpiredException received, job is no longer valid.");
}

// This should be the last thing to run so we don't notify external parties until actually finished
Expand Down
1 change: 1 addition & 0 deletions src/Agent.Listener/_project.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@
"runtimes": {
"win7-x64": { },
"ubuntu.14.04-x64": { },
"ubuntu.16.04-x64": { },
"centos.7-x64": { },
"rhel.7.2-x64": { },
"osx.10.11-x64": { }
Expand Down
1 change: 1 addition & 0 deletions src/Agent.Worker/_project.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@
"runtimes": {
"win7-x64": { },
"ubuntu.14.04-x64": { },
"ubuntu.16.04-x64": { },
"centos.7-x64": { },
"rhel.7.2-x64": { },
"osx.10.11-x64": { }
Expand Down
101 changes: 69 additions & 32 deletions src/Microsoft.VisualStudio.Services.Agent/ProcessInvoker.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@ public sealed class ProcessInvoker : AgentService, IProcessInvoker
private readonly TaskCompletionSource<bool> _processExitedCompletionSource = new TaskCompletionSource<bool>();
private readonly ConcurrentQueue<string> _errorData = new ConcurrentQueue<string>();
private readonly ConcurrentQueue<string> _outputData = new ConcurrentQueue<string>();
private readonly TimeSpan _sigintTimeout = TimeSpan.FromSeconds(10);
private readonly TimeSpan _sigtermTimeout = TimeSpan.FromSeconds(5);

public event EventHandler<ProcessDataReceivedEventArgs> OutputDataReceived;
public event EventHandler<ProcessDataReceivedEventArgs> ErrorDataReceived;
Expand Down Expand Up @@ -234,11 +236,40 @@ private void ProcessOutput()
private async Task CancelAndKillProcessTree()
{
ArgUtil.NotNull(_proc, nameof(_proc));
bool sigint_succeed = await SendSIGINT(_sigintTimeout);
if (sigint_succeed)
{
Trace.Info("Process cancelled successfully through Ctrl+C/SIGINT.");
return;
}

bool sigterm_succeed = await SendSIGTERM(_sigtermTimeout);
if (sigterm_succeed)
{
Trace.Info("Process terminate successfully through Ctrl+Break/SIGTERM.");
return;
}

Trace.Info("Kill entire process tree since both cancel and terminate signal has been ignored by the target process.");
KillProcessTree();
}

private async Task<bool> SendSIGINT(TimeSpan timeout)
{
#if OS_WINDOWS
await WindowsCancelAndKillProcessTree();
return await SendCtrlSignal(ConsoleCtrlEvent.CTRL_C, timeout);
#else
await NixCancelAndKillProcessTree();
#endif
return await SendSignal(Signals.SIGINT, timeout);
#endif
}

private async Task<bool> SendSIGTERM(TimeSpan timeout)
{
#if OS_WINDOWS
return await SendCtrlSignal(ConsoleCtrlEvent.CTRL_BREAK, timeout);
#else
return await SendSignal(Signals.SIGTERM, timeout);
#endif
}

private void ProcessExitedHandler(object sender, EventArgs e)
Expand Down Expand Up @@ -293,26 +324,6 @@ private void KillProcessTree()
}

#if OS_WINDOWS
private async Task WindowsCancelAndKillProcessTree()
{
bool ctrl_c_succeed = await SendCtrlSignal(ConsoleCtrlEvent.CTRL_C, TimeSpan.FromSeconds(10));
if (ctrl_c_succeed)
{
Trace.Info("Process cancelled successfully through Ctrl+C.");
return;
}

bool ctrl_break_succeed = await SendCtrlSignal(ConsoleCtrlEvent.CTRL_BREAK, TimeSpan.FromSeconds(5));
if (ctrl_break_succeed)
{
Trace.Info("Process terminate successfully through Ctrl+Break.");
return;
}

Trace.Info("Kill entire process tree since both cancel and terminate signal has been ignored by the target process.");
KillProcessTree();
}

private async Task<bool> SendCtrlSignal(ConsoleCtrlEvent signal, TimeSpan timeout)
{
Trace.Info($"Sending {signal} to process {_proc.Id}.");
Expand Down Expand Up @@ -545,31 +556,57 @@ public uint Size
// Delegate type to be used as the Handler Routine for SetConsoleCtrlHandler
private delegate Boolean ConsoleCtrlDelegate(ConsoleCtrlEvent CtrlType);
#else
private async Task NixCancelAndKillProcessTree()
private async Task<bool> SendSignal(Signals signal, TimeSpan timeout)
{
// TODO: replace Task.Delay(1) with Send SIGINT/SIGTERM/SIGKILL
await Task.Delay(1);
KillProcessTree();
Trace.Info($"Sending {signal} to process {_proc.Id}.");
int errorCode = kill(_proc.Id, (int)signal);
if (errorCode != 0)
{
Trace.Info($"{signal} signal doesn't fire successfully.");
Trace.Error($"Error code: {errorCode}.");
return false;
}

Trace.Info($"Successfully send {signal} to process {_proc.Id}.");
Trace.Info($"Waiting for process exit or {timeout.TotalSeconds} seconds after {signal} signal fired.");
var completedTask = await Task.WhenAny(Task.Delay(timeout), _processExitedCompletionSource.Task);
if (completedTask == _processExitedCompletionSource.Task)
{
Trace.Info("Process exit successfully.");
return true;
}
else
{
Trace.Info($"Process did not honor {signal} signal within {timeout.TotalSeconds} seconds.");
return false;
}
}

private void NixKillProcessTree()
{
try
{
// TODO: Send Ctrl+C/Break to process group.
if (!_proc.HasExited)
{
_proc.Kill();
}
}
catch (InvalidOperationException)
catch (InvalidOperationException ex)
{
// InvalidOperationException can occur if process got terminated by itself between
// HasExited and Kill() calls above.
Trace.Error("Ignore InvalidOperationException during Process.Kill().");
Trace.Error(ex);
}
}
#endif

private enum Signals : int
{
SIGINT = 2,
SIGTERM = 15
}

[DllImport("libc", SetLastError = true)]
private static extern int kill(int pid, int sig);
#endif
}

public sealed class ProcessExitCodeException : Exception
Expand Down
1 change: 1 addition & 0 deletions src/Microsoft.VisualStudio.Services.Agent/_project.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
"runtimes": {
"win7-x64": { },
"ubuntu.14.04-x64": { },
"ubuntu.16.04-x64": { },
"centos.7-x64": { },
"rhel.7.2-x64": { },
"osx.10.11-x64": { }
Expand Down
1 change: 1 addition & 0 deletions src/Test/L0/ConstantGenerationL0.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ public void BuildConstantGenerateSucceed()
{
"win7-x64",
"ubuntu.14.04-x64",
"ubuntu.16.04-x64",
"centos.7-x64",
"rhel.7.2-x64",
"osx.10.11-x64"
Expand Down
1 change: 1 addition & 0 deletions src/Test/L0/Util/ApiUtilL0.cs
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ public void VerifyUserAgentHasPlatformInfo()
{
"win7-x64",
"ubuntu.14.04-x64",
"ubuntu.16.04-x64",
"centos.7-x64",
"rhel.7.2-x64",
"osx.10.11-x64"
Expand Down
1 change: 1 addition & 0 deletions src/Test/_project.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@
"runtimes": {
"win7-x64": { },
"ubuntu.14.04-x64": { },
"ubuntu.16.04-x64": { },
"centos.7-x64": { },
"rhel.7.2-x64": { },
"osx.10.11-x64": { }
Expand Down

0 comments on commit b096b43

Please sign in to comment.