aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorValentin Bartenev <vbart@nginx.com>2014-01-22 04:58:19 +0400
committerValentin Bartenev <vbart@nginx.com>2014-01-22 04:58:19 +0400
commit650984cd20fe526a6eef0c014fbd92a06aeb1f7a (patch)
tree7cdd6677905927e748f16bbc0d8daa838a33f6d7
parentd055f74178092aee511236f74192ed9ec2a7c893 (diff)
downloadnginx-650984cd20fe526a6eef0c014fbd92a06aeb1f7a.tar.gz
nginx-650984cd20fe526a6eef0c014fbd92a06aeb1f7a.zip
SPDY: proper handling of all RST_STREAM statuses.
Previously, only stream CANCEL and INTERNAL_ERROR were handled right.
-rw-r--r--src/http/ngx_http_spdy.c67
1 files changed, 28 insertions, 39 deletions
diff --git a/src/http/ngx_http_spdy.c b/src/http/ngx_http_spdy.c
index 33f92e3ef..a040a388f 100644
--- a/src/http/ngx_http_spdy.c
+++ b/src/http/ngx_http_spdy.c
@@ -1227,7 +1227,6 @@ ngx_http_spdy_state_rst_stream(ngx_http_spdy_connection_t *sc, u_char *pos,
ngx_uint_t sid, status;
ngx_event_t *ev;
ngx_connection_t *fc;
- ngx_http_request_t *r;
ngx_http_spdy_stream_t *stream;
if (end - pos < NGX_SPDY_RST_STREAM_SIZE) {
@@ -1236,7 +1235,10 @@ ngx_http_spdy_state_rst_stream(ngx_http_spdy_connection_t *sc, u_char *pos,
}
if (sc->length != NGX_SPDY_RST_STREAM_SIZE) {
- /* TODO logging */
+ ngx_log_error(NGX_LOG_INFO, sc->connection->log, 0,
+ "client sent RST_STREAM frame with incorrect length %uz",
+ sc->length);
+
return ngx_http_spdy_state_protocol_error(sc);
}
@@ -1251,55 +1253,42 @@ ngx_http_spdy_state_rst_stream(ngx_http_spdy_connection_t *sc, u_char *pos,
ngx_log_debug2(NGX_LOG_DEBUG_HTTP, sc->connection->log, 0,
"spdy RST_STREAM sid:%ui st:%ui", sid, status);
+ stream = ngx_http_spdy_get_stream_by_id(sc, sid);
+ if (stream == NULL) {
+ ngx_log_debug0(NGX_LOG_DEBUG_HTTP, sc->connection->log, 0,
+ "unknown stream, probably it has been closed already");
+ return ngx_http_spdy_state_complete(sc, pos, end);
+ }
- switch (status) {
+ stream->in_closed = 1;
+ stream->out_closed = 1;
- case NGX_SPDY_PROTOCOL_ERROR:
- /* TODO logging */
- return ngx_http_spdy_state_protocol_error(sc);
+ fc = stream->request->connection;
+ fc->error = 1;
- case NGX_SPDY_INVALID_STREAM:
- /* TODO */
- break;
+ switch (status) {
- case NGX_SPDY_REFUSED_STREAM:
- /* TODO */
+ case NGX_SPDY_CANCEL:
+ ngx_log_error(NGX_LOG_INFO, fc->log, 0,
+ "client canceled stream %ui", sid);
break;
- case NGX_SPDY_UNSUPPORTED_VERSION:
- /* TODO logging */
- return ngx_http_spdy_state_protocol_error(sc);
-
- case NGX_SPDY_CANCEL:
case NGX_SPDY_INTERNAL_ERROR:
- stream = ngx_http_spdy_get_stream_by_id(sc, sid);
- if (stream == NULL) {
- /* TODO false cancel */
- break;
- }
-
- stream->in_closed = 1;
- stream->out_closed = 1;
-
- r = stream->request;
-
- fc = r->connection;
- fc->error = 1;
-
- ev = fc->read;
- ev->handler(ev);
-
+ ngx_log_error(NGX_LOG_INFO, fc->log, 0,
+ "client terminated stream %ui because of internal error",
+ sid);
break;
- case NGX_SPDY_FLOW_CONTROL_ERROR:
- /* TODO logging */
- return ngx_http_spdy_state_protocol_error(sc);
-
default:
- /* TODO */
- return ngx_http_spdy_state_protocol_error(sc);
+ ngx_log_error(NGX_LOG_INFO, fc->log, 0,
+ "client terminated stream %ui with status %ui",
+ sid, status);
+ break;
}
+ ev = fc->read;
+ ev->handler(ev);
+
return ngx_http_spdy_state_complete(sc, pos, end);
}