[CRIU] [PATCH 1/2] libsoccr: ignore data in a sent queue, if a connect is closed
Andrei Vagin
avagin at openvz.org
Sat Oct 7 00:31:54 MSK 2017
From: Andrei Vagin <avagin at virtuozzo.com>
If a connection was reseted, it can have some data in a sent queue,
a use can't read this data, so we can ignore them too.
https://jira.sw.ru/browse/PSBM-67026
Signed-off-by: Andrei Vagin <avagin at virtuozzo.com>
---
soccr/soccr.c | 12 ++++++++++++
1 file changed, 12 insertions(+)
diff --git a/soccr/soccr.c b/soccr/soccr.c
index 1a1aaa35d..394095f00 100644
--- a/soccr/soccr.c
+++ b/soccr/soccr.c
@@ -209,6 +209,18 @@ static int refresh_sk(struct libsoccr_sk *sk,
data->unsq_len = size;
+ if (data->state == TCP_CLOSE) {
+ /* A connection could be reseted. In thise case a sent queue
+ * may contain some data. A user can't read this data, so let's
+ * ignore them. Otherwise we will need to add a logic whether
+ * the send queue contains a fin packet or not and decide whether
+ * a fin or reset packet has to be sent to restore a state
+ */
+
+ data->unsq_len = 0;
+ data->outq_len = 0;
+ }
+
/* Don't account the fin packet. It doesn't countain real data. */
if ((1 << data->state) & (SNDQ_FIRST_FIN | SNDQ_SECOND_FIN)) {
if (data->outq_len)
--
2.13.3
More information about the CRIU
mailing list