nghttpx: Replace RingBuf with sequential Buffer
It turns out that we don't need circular buffer functionality. We replaced RingBuf with simple sequential Buffer.
This commit is contained in:
parent
147bc45658
commit
6b1ef95d3f
|
@ -119,7 +119,7 @@ NGHTTPX_SRCS = \
|
||||||
shrpx_connect_blocker.cc shrpx_connect_blocker.h \
|
shrpx_connect_blocker.cc shrpx_connect_blocker.h \
|
||||||
shrpx_downstream_connection_pool.cc shrpx_downstream_connection_pool.h \
|
shrpx_downstream_connection_pool.cc shrpx_downstream_connection_pool.h \
|
||||||
shrpx_rate_limit.cc shrpx_rate_limit.h \
|
shrpx_rate_limit.cc shrpx_rate_limit.h \
|
||||||
ringbuf.h memchunk.h
|
buffer.h memchunk.h
|
||||||
|
|
||||||
if HAVE_SPDYLAY
|
if HAVE_SPDYLAY
|
||||||
NGHTTPX_SRCS += shrpx_spdy_upstream.cc shrpx_spdy_upstream.h
|
NGHTTPX_SRCS += shrpx_spdy_upstream.cc shrpx_spdy_upstream.h
|
||||||
|
@ -142,6 +142,7 @@ nghttpx_unittest_SOURCES = shrpx-unittest.cc \
|
||||||
nghttp2_gzip_test.c nghttp2_gzip_test.h \
|
nghttp2_gzip_test.c nghttp2_gzip_test.h \
|
||||||
nghttp2_gzip.c nghttp2_gzip.h \
|
nghttp2_gzip.c nghttp2_gzip.h \
|
||||||
ringbuf_test.cc ringbuf_test.h \
|
ringbuf_test.cc ringbuf_test.h \
|
||||||
|
buffer_test.cc buffer_test.h \
|
||||||
memchunk_test.cc memchunk_test.h
|
memchunk_test.cc memchunk_test.h
|
||||||
nghttpx_unittest_CPPFLAGS = ${AM_CPPFLAGS}\
|
nghttpx_unittest_CPPFLAGS = ${AM_CPPFLAGS}\
|
||||||
-DNGHTTP2_TESTS_DIR=\"$(top_srcdir)/tests\"
|
-DNGHTTP2_TESTS_DIR=\"$(top_srcdir)/tests\"
|
||||||
|
|
|
@ -0,0 +1,67 @@
|
||||||
|
/*
|
||||||
|
* nghttp2 - HTTP/2 C Library
|
||||||
|
*
|
||||||
|
* Copyright (c) 2014 Tatsuhiro Tsujikawa
|
||||||
|
*
|
||||||
|
* Permission is hereby granted, free of charge, to any person obtaining
|
||||||
|
* a copy of this software and associated documentation files (the
|
||||||
|
* "Software"), to deal in the Software without restriction, including
|
||||||
|
* without limitation the rights to use, copy, modify, merge, publish,
|
||||||
|
* distribute, sublicense, and/or sell copies of the Software, and to
|
||||||
|
* permit persons to whom the Software is furnished to do so, subject to
|
||||||
|
* the following conditions:
|
||||||
|
*
|
||||||
|
* The above copyright notice and this permission notice shall be
|
||||||
|
* included in all copies or substantial portions of the Software.
|
||||||
|
*
|
||||||
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||||
|
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||||
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||||
|
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
||||||
|
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
||||||
|
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
||||||
|
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||||
|
*/
|
||||||
|
#ifndef BUFFER_H
|
||||||
|
#define BUFFER_H
|
||||||
|
|
||||||
|
#include "nghttp2_config.h"
|
||||||
|
|
||||||
|
#include <cstring>
|
||||||
|
#include <algorithm>
|
||||||
|
|
||||||
|
namespace nghttp2 {
|
||||||
|
|
||||||
|
template <size_t N> struct Buffer {
|
||||||
|
Buffer() : pos(begin), last(begin) {}
|
||||||
|
// Returns the number of bytes to read.
|
||||||
|
size_t rleft() const { return last - pos; }
|
||||||
|
// Returns the number of bytes this buffer can store.
|
||||||
|
size_t wleft() const { return begin + N - last; }
|
||||||
|
// Writes up to min(wleft(), |count|) bytes from buffer pointed by
|
||||||
|
// |buf|. Returns number of bytes written.
|
||||||
|
size_t write(const void *buf, size_t count) {
|
||||||
|
count = std::min(count, wleft());
|
||||||
|
memcpy(last, buf, count);
|
||||||
|
last += count;
|
||||||
|
return count;
|
||||||
|
}
|
||||||
|
size_t write(size_t count) {
|
||||||
|
count = std::min(count, wleft());
|
||||||
|
last += count;
|
||||||
|
return count;
|
||||||
|
}
|
||||||
|
// Drains min(rleft(), |count|) bytes from start of the buffer.
|
||||||
|
size_t drain(size_t count) {
|
||||||
|
count = std::min(count, rleft());
|
||||||
|
pos += count;
|
||||||
|
return count;
|
||||||
|
}
|
||||||
|
void reset() { pos = last = begin; }
|
||||||
|
uint8_t begin[N];
|
||||||
|
uint8_t *pos, *last;
|
||||||
|
};
|
||||||
|
|
||||||
|
} // namespace nghttp2
|
||||||
|
|
||||||
|
#endif // RINGBUF_H
|
|
@ -0,0 +1,78 @@
|
||||||
|
/*
|
||||||
|
* nghttp2 - HTTP/2 C Library
|
||||||
|
*
|
||||||
|
* Copyright (c) 2015 Tatsuhiro Tsujikawa
|
||||||
|
*
|
||||||
|
* Permission is hereby granted, free of charge, to any person obtaining
|
||||||
|
* a copy of this software and associated documentation files (the
|
||||||
|
* "Software"), to deal in the Software without restriction, including
|
||||||
|
* without limitation the rights to use, copy, modify, merge, publish,
|
||||||
|
* distribute, sublicense, and/or sell copies of the Software, and to
|
||||||
|
* permit persons to whom the Software is furnished to do so, subject to
|
||||||
|
* the following conditions:
|
||||||
|
*
|
||||||
|
* The above copyright notice and this permission notice shall be
|
||||||
|
* included in all copies or substantial portions of the Software.
|
||||||
|
*
|
||||||
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||||
|
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||||
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||||
|
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
||||||
|
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
||||||
|
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
||||||
|
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||||
|
*/
|
||||||
|
#include "buffer_test.h"
|
||||||
|
|
||||||
|
#include <cstring>
|
||||||
|
#include <iostream>
|
||||||
|
#include <tuple>
|
||||||
|
|
||||||
|
#include <CUnit/CUnit.h>
|
||||||
|
|
||||||
|
#include <nghttp2/nghttp2.h>
|
||||||
|
|
||||||
|
#include "buffer.h"
|
||||||
|
|
||||||
|
namespace nghttp2 {
|
||||||
|
|
||||||
|
void test_buffer_write(void) {
|
||||||
|
Buffer<16> b;
|
||||||
|
CU_ASSERT(0 == b.rleft());
|
||||||
|
CU_ASSERT(16 == b.wleft());
|
||||||
|
|
||||||
|
b.write("012", 3);
|
||||||
|
|
||||||
|
CU_ASSERT(3 == b.rleft());
|
||||||
|
CU_ASSERT(13 == b.wleft());
|
||||||
|
CU_ASSERT(0 == b.pos - b.begin);
|
||||||
|
|
||||||
|
b.drain(3);
|
||||||
|
|
||||||
|
CU_ASSERT(0 == b.rleft());
|
||||||
|
CU_ASSERT(13 == b.wleft());
|
||||||
|
CU_ASSERT(3 == b.pos - b.begin);
|
||||||
|
|
||||||
|
auto n = b.write("0123456789ABCDEF", 16);
|
||||||
|
|
||||||
|
CU_ASSERT(n == 13);
|
||||||
|
|
||||||
|
CU_ASSERT(13 == b.rleft());
|
||||||
|
CU_ASSERT(0 == b.wleft());
|
||||||
|
CU_ASSERT(3 == b.pos - b.begin);
|
||||||
|
CU_ASSERT(0 == memcmp(b.pos, "0123456789ABC", 13));
|
||||||
|
|
||||||
|
b.reset();
|
||||||
|
|
||||||
|
CU_ASSERT(0 == b.rleft());
|
||||||
|
CU_ASSERT(0 == b.wleft());
|
||||||
|
CU_ASSERT(0 == b.pos - b.begin);
|
||||||
|
|
||||||
|
b.write(5);
|
||||||
|
|
||||||
|
CU_ASSERT(5 == b.rleft());
|
||||||
|
CU_ASSERT(11 == b.wleft());
|
||||||
|
CU_ASSERT(0 == b.pos - b.begin);
|
||||||
|
}
|
||||||
|
|
||||||
|
} // namespace nghttp2
|
|
@ -0,0 +1,34 @@
|
||||||
|
/*
|
||||||
|
* nghttp2 - HTTP/2 C Library
|
||||||
|
*
|
||||||
|
* Copyright (c) 2015 Tatsuhiro Tsujikawa
|
||||||
|
*
|
||||||
|
* Permission is hereby granted, free of charge, to any person obtaining
|
||||||
|
* a copy of this software and associated documentation files (the
|
||||||
|
* "Software"), to deal in the Software without restriction, including
|
||||||
|
* without limitation the rights to use, copy, modify, merge, publish,
|
||||||
|
* distribute, sublicense, and/or sell copies of the Software, and to
|
||||||
|
* permit persons to whom the Software is furnished to do so, subject to
|
||||||
|
* the following conditions:
|
||||||
|
*
|
||||||
|
* The above copyright notice and this permission notice shall be
|
||||||
|
* included in all copies or substantial portions of the Software.
|
||||||
|
*
|
||||||
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||||
|
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||||
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||||
|
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
||||||
|
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
||||||
|
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
||||||
|
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||||
|
*/
|
||||||
|
#ifndef BUFFER_TEST_H
|
||||||
|
#define BUFFER_TEST_H
|
||||||
|
|
||||||
|
namespace nghttp2 {
|
||||||
|
|
||||||
|
void test_buffer_write(void);
|
||||||
|
|
||||||
|
} // namespace nghttp2
|
||||||
|
|
||||||
|
#endif // BUFFER_TEST_H
|
|
@ -39,6 +39,7 @@
|
||||||
#include "util_test.h"
|
#include "util_test.h"
|
||||||
#include "nghttp2_gzip_test.h"
|
#include "nghttp2_gzip_test.h"
|
||||||
#include "ringbuf_test.h"
|
#include "ringbuf_test.h"
|
||||||
|
#include "buffer_test.h"
|
||||||
#include "memchunk_test.h"
|
#include "memchunk_test.h"
|
||||||
#include "shrpx_config.h"
|
#include "shrpx_config.h"
|
||||||
|
|
||||||
|
@ -139,6 +140,7 @@ int main(int argc, char *argv[]) {
|
||||||
!CU_add_test(pSuite, "gzip_inflate", test_nghttp2_gzip_inflate) ||
|
!CU_add_test(pSuite, "gzip_inflate", test_nghttp2_gzip_inflate) ||
|
||||||
!CU_add_test(pSuite, "ringbuf_write", nghttp2::test_ringbuf_write) ||
|
!CU_add_test(pSuite, "ringbuf_write", nghttp2::test_ringbuf_write) ||
|
||||||
!CU_add_test(pSuite, "ringbuf_iovec", nghttp2::test_ringbuf_iovec) ||
|
!CU_add_test(pSuite, "ringbuf_iovec", nghttp2::test_ringbuf_iovec) ||
|
||||||
|
!CU_add_test(pSuite, "buffer_write", nghttp2::test_ringbuf_write) ||
|
||||||
!CU_add_test(pSuite, "pool_recycle", nghttp2::test_pool_recycle) ||
|
!CU_add_test(pSuite, "pool_recycle", nghttp2::test_pool_recycle) ||
|
||||||
!CU_add_test(pSuite, "memchunk_append", nghttp2::test_memchunks_append) ||
|
!CU_add_test(pSuite, "memchunk_append", nghttp2::test_memchunks_append) ||
|
||||||
!CU_add_test(pSuite, "memchunk_drain", nghttp2::test_memchunks_drain) ||
|
!CU_add_test(pSuite, "memchunk_drain", nghttp2::test_memchunks_drain) ||
|
||||||
|
|
|
@ -105,15 +105,13 @@ int ClientHandler::read_clear() {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
rb_.reset();
|
rb_.reset();
|
||||||
struct iovec iov[2];
|
|
||||||
auto iovcnt = rb_.wiovec(iov);
|
ssize_t nread = std::min(rb_.wleft(), rlimit_.avail());
|
||||||
iovcnt = limit_iovec(iov, iovcnt, rlimit_.avail());
|
if (nread == 0) {
|
||||||
if (iovcnt == 0) {
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
ssize_t nread;
|
while ((nread = read(fd_, rb_.last, nread)) == -1 && errno == EINTR)
|
||||||
while ((nread = readv(fd_, iov, iovcnt)) == -1 && errno == EINTR)
|
|
||||||
;
|
;
|
||||||
if (nread == -1) {
|
if (nread == -1) {
|
||||||
if (errno == EAGAIN || errno == EWOULDBLOCK) {
|
if (errno == EAGAIN || errno == EWOULDBLOCK) {
|
||||||
|
@ -138,15 +136,12 @@ int ClientHandler::write_clear() {
|
||||||
|
|
||||||
for (;;) {
|
for (;;) {
|
||||||
if (wb_.rleft() > 0) {
|
if (wb_.rleft() > 0) {
|
||||||
struct iovec iov[2];
|
ssize_t nwrite = std::min(wb_.rleft(), wlimit_.avail());
|
||||||
auto iovcnt = wb_.riovec(iov);
|
if (nwrite == 0) {
|
||||||
iovcnt = limit_iovec(iov, iovcnt, wlimit_.avail());
|
|
||||||
if (iovcnt == 0) {
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
ssize_t nwrite;
|
while ((nwrite = write(fd_, wb_.pos, nwrite)) == -1 && errno == EINTR)
|
||||||
while ((nwrite = writev(fd_, iov, iovcnt)) == -1 && errno == EINTR)
|
|
||||||
;
|
;
|
||||||
if (nwrite == -1) {
|
if (nwrite == -1) {
|
||||||
if (errno == EAGAIN || errno == EWOULDBLOCK) {
|
if (errno == EAGAIN || errno == EWOULDBLOCK) {
|
||||||
|
@ -238,8 +233,8 @@ int ClientHandler::read_tls() {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
rb_.reset();
|
rb_.reset();
|
||||||
struct iovec iov[2];
|
|
||||||
auto iovcnt = rb_.wiovec(iov);
|
ssize_t nread;
|
||||||
// SSL_read requires the same arguments (buf pointer and its
|
// SSL_read requires the same arguments (buf pointer and its
|
||||||
// length) on SSL_ERROR_WANT_READ or SSL_ERROR_WANT_WRITE.
|
// length) on SSL_ERROR_WANT_READ or SSL_ERROR_WANT_WRITE.
|
||||||
// rlimit_.avail() or rlimit_.avail() may return different length
|
// rlimit_.avail() or rlimit_.avail() may return different length
|
||||||
|
@ -248,16 +243,16 @@ int ClientHandler::read_tls() {
|
||||||
// to SSL_read to tls_last_readlen_ if SSL_read indicated I/O
|
// to SSL_read to tls_last_readlen_ if SSL_read indicated I/O
|
||||||
// blocking.
|
// blocking.
|
||||||
if (tls_last_readlen_ == 0) {
|
if (tls_last_readlen_ == 0) {
|
||||||
iovcnt = limit_iovec(iov, iovcnt, rlimit_.avail());
|
nread = std::min(rb_.wleft(), rlimit_.avail());
|
||||||
if (iovcnt == 0) {
|
if (nread == 0) {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
assert(iov[0].iov_len == tls_last_readlen_);
|
nread = tls_last_readlen_;
|
||||||
tls_last_readlen_ = 0;
|
tls_last_readlen_ = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
auto rv = SSL_read(ssl_, iov[0].iov_base, iov[0].iov_len);
|
auto rv = SSL_read(ssl_, rb_.last, nread);
|
||||||
|
|
||||||
if (rv == 0) {
|
if (rv == 0) {
|
||||||
return -1;
|
return -1;
|
||||||
|
@ -267,7 +262,7 @@ int ClientHandler::read_tls() {
|
||||||
auto err = SSL_get_error(ssl_, rv);
|
auto err = SSL_get_error(ssl_, rv);
|
||||||
switch (err) {
|
switch (err) {
|
||||||
case SSL_ERROR_WANT_READ:
|
case SSL_ERROR_WANT_READ:
|
||||||
tls_last_readlen_ = iov[0].iov_len;
|
tls_last_readlen_ = nread;
|
||||||
return 0;
|
return 0;
|
||||||
case SSL_ERROR_WANT_WRITE:
|
case SSL_ERROR_WANT_WRITE:
|
||||||
if (LOG_ENABLED(INFO)) {
|
if (LOG_ENABLED(INFO)) {
|
||||||
|
@ -294,10 +289,7 @@ int ClientHandler::write_tls() {
|
||||||
|
|
||||||
for (;;) {
|
for (;;) {
|
||||||
if (wb_.rleft() > 0) {
|
if (wb_.rleft() > 0) {
|
||||||
const void *p;
|
ssize_t nwrite;
|
||||||
size_t len;
|
|
||||||
std::tie(p, len) = wb_.get();
|
|
||||||
|
|
||||||
// SSL_write requires the same arguments (buf pointer and its
|
// SSL_write requires the same arguments (buf pointer and its
|
||||||
// length) on SSL_ERROR_WANT_READ or SSL_ERROR_WANT_WRITE.
|
// length) on SSL_ERROR_WANT_READ or SSL_ERROR_WANT_WRITE.
|
||||||
// get_write_limit() may return smaller length than previously
|
// get_write_limit() may return smaller length than previously
|
||||||
|
@ -305,23 +297,21 @@ int ClientHandler::write_tls() {
|
||||||
// avoid this, we keep last legnth passed to SSL_write to
|
// avoid this, we keep last legnth passed to SSL_write to
|
||||||
// tls_last_writelen_ if SSL_write indicated I/O blocking.
|
// tls_last_writelen_ if SSL_write indicated I/O blocking.
|
||||||
if (tls_last_writelen_ == 0) {
|
if (tls_last_writelen_ == 0) {
|
||||||
len = std::min(len, wlimit_.avail());
|
nwrite = std::min(wb_.rleft(), wlimit_.avail());
|
||||||
if (len == 0) {
|
if (nwrite == 0) {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
auto limit = get_write_limit();
|
auto limit = get_write_limit();
|
||||||
if (limit != -1) {
|
if (limit != -1) {
|
||||||
len = std::min(len, static_cast<size_t>(limit));
|
nwrite = std::min(nwrite, limit);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
assert(len >= tls_last_writelen_);
|
nwrite = tls_last_writelen_;
|
||||||
|
|
||||||
len = tls_last_writelen_;
|
|
||||||
tls_last_writelen_ = 0;
|
tls_last_writelen_ = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
auto rv = SSL_write(ssl_, p, len);
|
auto rv = SSL_write(ssl_, wb_.pos, nwrite);
|
||||||
|
|
||||||
if (rv == 0) {
|
if (rv == 0) {
|
||||||
return -1;
|
return -1;
|
||||||
|
@ -338,7 +328,7 @@ int ClientHandler::write_tls() {
|
||||||
}
|
}
|
||||||
return -1;
|
return -1;
|
||||||
case SSL_ERROR_WANT_WRITE:
|
case SSL_ERROR_WANT_WRITE:
|
||||||
tls_last_writelen_ = len;
|
tls_last_writelen_ = nwrite;
|
||||||
wlimit_.startw();
|
wlimit_.startw();
|
||||||
ev_timer_again(loop_, &wt_);
|
ev_timer_again(loop_, &wt_);
|
||||||
return 0;
|
return 0;
|
||||||
|
@ -396,14 +386,10 @@ int ClientHandler::upstream_write() {
|
||||||
}
|
}
|
||||||
|
|
||||||
int ClientHandler::upstream_http2_connhd_read() {
|
int ClientHandler::upstream_http2_connhd_read() {
|
||||||
struct iovec iov[2];
|
auto nread = std::min(left_connhd_len_, rb_.rleft());
|
||||||
auto iovcnt = rb_.riovec(iov);
|
|
||||||
for (int i = 0; i < iovcnt; ++i) {
|
|
||||||
auto nread =
|
|
||||||
std::min(left_connhd_len_, static_cast<size_t>(iov[i].iov_len));
|
|
||||||
if (memcmp(NGHTTP2_CLIENT_CONNECTION_PREFACE +
|
if (memcmp(NGHTTP2_CLIENT_CONNECTION_PREFACE +
|
||||||
NGHTTP2_CLIENT_CONNECTION_PREFACE_LEN - left_connhd_len_,
|
NGHTTP2_CLIENT_CONNECTION_PREFACE_LEN - left_connhd_len_,
|
||||||
iov[i].iov_base, nread) != 0) {
|
rb_.pos, nread) != 0) {
|
||||||
// There is no downgrade path here. Just drop the connection.
|
// There is no downgrade path here. Just drop the connection.
|
||||||
if (LOG_ENABLED(INFO)) {
|
if (LOG_ENABLED(INFO)) {
|
||||||
CLOG(INFO, this) << "invalid client connection header";
|
CLOG(INFO, this) << "invalid client connection header";
|
||||||
|
@ -424,20 +410,15 @@ int ClientHandler::upstream_http2_connhd_read() {
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
int ClientHandler::upstream_http1_connhd_read() {
|
int ClientHandler::upstream_http1_connhd_read() {
|
||||||
struct iovec iov[2];
|
auto nread = std::min(left_connhd_len_, rb_.rleft());
|
||||||
auto iovcnt = rb_.riovec(iov);
|
|
||||||
for (int i = 0; i < iovcnt; ++i) {
|
|
||||||
auto nread =
|
|
||||||
std::min(left_connhd_len_, static_cast<size_t>(iov[i].iov_len));
|
|
||||||
if (memcmp(NGHTTP2_CLIENT_CONNECTION_PREFACE +
|
if (memcmp(NGHTTP2_CLIENT_CONNECTION_PREFACE +
|
||||||
NGHTTP2_CLIENT_CONNECTION_PREFACE_LEN - left_connhd_len_,
|
NGHTTP2_CLIENT_CONNECTION_PREFACE_LEN - left_connhd_len_,
|
||||||
iov[i].iov_base, nread) != 0) {
|
rb_.pos, nread) != 0) {
|
||||||
if (LOG_ENABLED(INFO)) {
|
if (LOG_ENABLED(INFO)) {
|
||||||
CLOG(INFO, this) << "This is HTTP/1.1 connection, "
|
CLOG(INFO, this) << "This is HTTP/1.1 connection, "
|
||||||
<< "but may be upgraded to HTTP/2 later.";
|
<< "but may be upgraded to HTTP/2 later.";
|
||||||
|
@ -475,7 +456,6 @@ int ClientHandler::upstream_http1_connhd_read() {
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
|
@ -34,7 +34,7 @@
|
||||||
#include <openssl/ssl.h>
|
#include <openssl/ssl.h>
|
||||||
|
|
||||||
#include "shrpx_rate_limit.h"
|
#include "shrpx_rate_limit.h"
|
||||||
#include "ringbuf.h"
|
#include "buffer.h"
|
||||||
|
|
||||||
using namespace nghttp2;
|
using namespace nghttp2;
|
||||||
|
|
||||||
|
@ -135,8 +135,8 @@ public:
|
||||||
int64_t body_bytes_sent);
|
int64_t body_bytes_sent);
|
||||||
WorkerStat *get_worker_stat() const;
|
WorkerStat *get_worker_stat() const;
|
||||||
|
|
||||||
using WriteBuf = RingBuf<65536>;
|
using WriteBuf = Buffer<65536>;
|
||||||
using ReadBuf = RingBuf<8192>;
|
using ReadBuf = Buffer<8192>;
|
||||||
|
|
||||||
WriteBuf *get_wb();
|
WriteBuf *get_wb();
|
||||||
ReadBuf *get_rb();
|
ReadBuf *get_rb();
|
||||||
|
|
|
@ -777,23 +777,18 @@ int Http2Upstream::on_read() {
|
||||||
ssize_t rv = 0;
|
ssize_t rv = 0;
|
||||||
auto rb = handler_->get_rb();
|
auto rb = handler_->get_rb();
|
||||||
|
|
||||||
for (;;) {
|
if (rb->rleft()) {
|
||||||
const void *data;
|
rv = nghttp2_session_mem_recv(session_, rb->pos, rb->rleft());
|
||||||
size_t nread;
|
|
||||||
std::tie(data, nread) = rb->get();
|
|
||||||
if (nread == 0) {
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
rv = nghttp2_session_mem_recv(
|
|
||||||
session_, reinterpret_cast<const uint8_t *>(data), nread);
|
|
||||||
if (rv < 0) {
|
if (rv < 0) {
|
||||||
ULOG(ERROR, this) << "nghttp2_session_recv() returned error: "
|
ULOG(ERROR, this) << "nghttp2_session_recv() returned error: "
|
||||||
<< nghttp2_strerror(rv);
|
<< nghttp2_strerror(rv);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
rb->drain(nread);
|
// nghttp2_session_mem_recv should consume all input bytes on
|
||||||
|
// success.
|
||||||
|
assert(static_cast<size_t>(rv) == rb->rleft());
|
||||||
|
rb->reset();
|
||||||
}
|
}
|
||||||
|
|
||||||
auto wb = handler_->get_wb();
|
auto wb = handler_->get_wb();
|
||||||
|
|
|
@ -248,26 +248,22 @@ http_parser_settings htp_hooks = {
|
||||||
int HttpsUpstream::on_read() {
|
int HttpsUpstream::on_read() {
|
||||||
auto rb = handler_->get_rb();
|
auto rb = handler_->get_rb();
|
||||||
auto downstream = get_downstream();
|
auto downstream = get_downstream();
|
||||||
const void *data;
|
|
||||||
size_t datalen;
|
if (rb->rleft() == 0) {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
// downstream can be nullptr here, because it is initialized in the
|
// downstream can be nullptr here, because it is initialized in the
|
||||||
// callback chain called by http_parser_execute()
|
// callback chain called by http_parser_execute()
|
||||||
if (downstream && downstream->get_upgraded()) {
|
if (downstream && downstream->get_upgraded()) {
|
||||||
for (;;) {
|
|
||||||
std::tie(data, datalen) = rb->get();
|
|
||||||
if (datalen == 0) {
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
auto rv = downstream->push_upload_data_chunk(
|
auto rv = downstream->push_upload_data_chunk(rb->pos, rb->rleft());
|
||||||
reinterpret_cast<const uint8_t *>(data), datalen);
|
|
||||||
|
|
||||||
if (rv != 0) {
|
if (rv != 0) {
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
rb->drain(datalen);
|
rb->reset();
|
||||||
|
|
||||||
if (downstream->request_buf_full()) {
|
if (downstream->request_buf_full()) {
|
||||||
if (LOG_ENABLED(INFO)) {
|
if (LOG_ENABLED(INFO)) {
|
||||||
|
@ -277,17 +273,12 @@ int HttpsUpstream::on_read() {
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
for (;;) {
|
|
||||||
std::tie(data, datalen) = rb->get();
|
|
||||||
if (datalen == 0) {
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
auto nread = http_parser_execute(
|
auto nread = http_parser_execute(
|
||||||
&htp_, &htp_hooks, reinterpret_cast<const char *>(data), datalen);
|
&htp_, &htp_hooks, reinterpret_cast<const char *>(rb->pos), rb->rleft());
|
||||||
|
|
||||||
rb->drain(nread);
|
rb->drain(nread);
|
||||||
|
|
||||||
|
@ -376,7 +367,8 @@ int HttpsUpstream::on_read() {
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
int HttpsUpstream::on_write() {
|
int HttpsUpstream::on_write() {
|
||||||
|
@ -384,24 +376,29 @@ int HttpsUpstream::on_write() {
|
||||||
if (!downstream) {
|
if (!downstream) {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
auto dconn = downstream->get_downstream_connection();
|
|
||||||
auto wb = handler_->get_wb();
|
auto wb = handler_->get_wb();
|
||||||
if (wb->rleft() == 0 && dconn &&
|
if (wb->wleft() == 0) {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
auto dconn = downstream->get_downstream_connection();
|
||||||
|
auto output = downstream->get_response_buf();
|
||||||
|
|
||||||
|
if (output->rleft() == 0 && dconn &&
|
||||||
downstream->get_response_state() != Downstream::MSG_COMPLETE) {
|
downstream->get_response_state() != Downstream::MSG_COMPLETE) {
|
||||||
|
if (downstream->resume_read(SHRPX_NO_BUFFER,
|
||||||
|
downstream->get_response_datalen()) != 0) {
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
if (downstream_read(dconn) != 0) {
|
if (downstream_read(dconn) != 0) {
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
struct iovec iov[2];
|
|
||||||
auto iovcnt = wb->wiovec(iov);
|
auto n = output->remove(wb->last, wb->wleft());
|
||||||
if (iovcnt == 0) {
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
auto output = downstream->get_response_buf();
|
|
||||||
for (int i = 0; i < iovcnt; ++i) {
|
|
||||||
auto n = output->remove(iov[i].iov_base, iov[i].iov_len);
|
|
||||||
wb->write(n);
|
wb->write(n);
|
||||||
}
|
|
||||||
if (wb->rleft() > 0) {
|
if (wb->rleft() > 0) {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
|
@ -69,17 +69,14 @@ ssize_t recv_callback(spdylay_session *session, uint8_t *buf, size_t len,
|
||||||
auto upstream = static_cast<SpdyUpstream *>(user_data);
|
auto upstream = static_cast<SpdyUpstream *>(user_data);
|
||||||
auto handler = upstream->get_client_handler();
|
auto handler = upstream->get_client_handler();
|
||||||
auto rb = handler->get_rb();
|
auto rb = handler->get_rb();
|
||||||
const void *data;
|
|
||||||
size_t nread;
|
|
||||||
|
|
||||||
std::tie(data, nread) = rb->get();
|
if (rb->rleft() == 0) {
|
||||||
if (nread == 0) {
|
|
||||||
return SPDYLAY_ERR_WOULDBLOCK;
|
return SPDYLAY_ERR_WOULDBLOCK;
|
||||||
}
|
}
|
||||||
|
|
||||||
nread = std::min(nread, len);
|
auto nread = std::min(rb->rleft(), len);
|
||||||
|
|
||||||
memcpy(buf, data, nread);
|
memcpy(buf, rb->pos, nread);
|
||||||
rb->drain(nread);
|
rb->drain(nread);
|
||||||
|
|
||||||
return nread;
|
return nread;
|
||||||
|
|
Loading…
Reference in New Issue