Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Process cancelled tasks from SerialStream.Unix read/write request queues when a timeout occurs #55188

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -415,6 +415,7 @@ internal int Read(byte[] array, int offset, int count, int timeout)
}
catch (OperationCanceledException)
{
ProcessCancelledIORequests(_readQueue);
throw new TimeoutException();
}
}
Expand Down Expand Up @@ -506,6 +507,7 @@ internal void Write(byte[] array, int offset, int count, int timeout)
}
catch (OperationCanceledException)
{
ProcessCancelledIORequests(_writeQueue);
throw new TimeoutException();
}
}
Expand All @@ -527,6 +529,8 @@ private int EndReadWrite(IAsyncResult asyncResult)
}
catch (OperationCanceledException)
{
ProcessCancelledIORequests(_readQueue);
ProcessCancelledIORequests(_writeQueue);
throw new TimeoutException();
}
}
Expand Down Expand Up @@ -807,6 +811,22 @@ private static int DoIORequest(ConcurrentQueue<SerialStreamIORequest> q, Request
return 0;
}

private static void ProcessCancelledIORequests(ConcurrentQueue<SerialStreamIORequest> q)
Copy link
Member

@krwq krwq Aug 12, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think this will be thread safe as is. Currently there is multiple threads which can enqueue and only one dequeuing. With this change you will have multiple threads potentially dequeueing. Since we do Peek & Dequeue here and IOLoop you might end up with one thread peeking and different one dequeuing. See i.e.

// assumes dequeue-ing happens on a single thread

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Instead consider calling this inside of the IOLoop in the idle state (make sure to write a comment about why we do that)

{
// assumes dequeue-ing happens on a single thread
while (q.TryPeek(out SerialStreamIORequest r))
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

consider cleaning all completed instead, similarly as done here:

if (r.IsCompleted)
{
q.TryDequeue(out _);
// take another item since we haven't processed anything
continue;
}

{
if (r.Task.IsCanceled)
{
q.TryDequeue(out _);
}
else
{
return;
}
}
}

private void IOLoop()
{
bool eofReceived = false;
Expand Down