Skip to content

Commit

Permalink
Stream: filters.
Browse files Browse the repository at this point in the history
  • Loading branch information
arut committed Sep 15, 2016
1 parent afa7711 commit 04b9434
Show file tree
Hide file tree
Showing 22 changed files with 738 additions and 102 deletions.
6 changes: 4 additions & 2 deletions auto/modules
Original file line number Diff line number Diff line change
Expand Up @@ -973,7 +973,8 @@ if [ $STREAM != NO ]; then
ngx_stream_core_module \
ngx_stream_log_module \
ngx_stream_proxy_module \
ngx_stream_upstream_module"
ngx_stream_upstream_module \
ngx_stream_write_filter_module"
ngx_module_incs="src/stream"
ngx_module_deps="src/stream/ngx_stream.h \
src/stream/ngx_stream_variables.h \
Expand All @@ -988,7 +989,8 @@ if [ $STREAM != NO ]; then
src/stream/ngx_stream_log_module.c \
src/stream/ngx_stream_proxy_module.c \
src/stream/ngx_stream_upstream.c \
src/stream/ngx_stream_upstream_round_robin.c"
src/stream/ngx_stream_upstream_round_robin.c \
src/stream/ngx_stream_write_filter_module.c"

. auto/module

Expand Down
1 change: 1 addition & 0 deletions auto/sources
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,7 @@ UNIX_SRCS="$CORE_SRCS $EVENT_SRCS \
src/os/unix/ngx_send.c \
src/os/unix/ngx_writev_chain.c \
src/os/unix/ngx_udp_send.c \
src/os/unix/ngx_udp_sendmsg_chain.c \
src/os/unix/ngx_channel.c \
src/os/unix/ngx_shmem.c \
src/os/unix/ngx_process.c \
Expand Down
2 changes: 2 additions & 0 deletions src/event/modules/ngx_iocp_module.c
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,8 @@ ngx_os_io_t ngx_iocp_io = {
NULL,
ngx_udp_overlapped_wsarecv,
NULL,
NULL,
NULL,
ngx_overlapped_wsasend_chain,
0
};
Expand Down
1 change: 1 addition & 0 deletions src/event/ngx_event.h
Original file line number Diff line number Diff line change
Expand Up @@ -430,6 +430,7 @@ extern ngx_os_io_t ngx_io;
#define ngx_send ngx_io.send
#define ngx_send_chain ngx_io.send_chain
#define ngx_udp_send ngx_io.udp_send
#define ngx_udp_send_chain ngx_io.udp_send_chain


#define NGX_EVENT_MODULE 0x544E5645 /* "EVNT" */
Expand Down
1 change: 1 addition & 0 deletions src/event/ngx_event_accept.c
Original file line number Diff line number Diff line change
Expand Up @@ -467,6 +467,7 @@ ngx_event_recvmsg(ngx_event_t *ev)
*log = ls->log;

c->send = ngx_udp_send;
c->send_chain = ngx_udp_send_chain;

c->log = log;
c->pool->log = log;
Expand Down
1 change: 1 addition & 0 deletions src/event/ngx_event_connect.c
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,7 @@ ngx_event_connect_peer(ngx_peer_connection_t *pc)
} else { /* type == SOCK_DGRAM */
c->recv = ngx_udp_recv;
c->send = ngx_send;
c->send_chain = ngx_udp_send_chain;
}

c->log_error = pc->log_error;
Expand Down
1 change: 1 addition & 0 deletions src/os/unix/ngx_darwin_init.c
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ static ngx_os_io_t ngx_darwin_io = {
ngx_udp_unix_recv,
ngx_unix_send,
ngx_udp_unix_send,
ngx_udp_unix_sendmsg_chain,
#if (NGX_HAVE_SENDFILE)
ngx_darwin_sendfile_chain,
NGX_IO_SENDFILE
Expand Down
1 change: 1 addition & 0 deletions src/os/unix/ngx_freebsd_init.c
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ static ngx_os_io_t ngx_freebsd_io = {
ngx_udp_unix_recv,
ngx_unix_send,
ngx_udp_unix_send,
ngx_udp_unix_sendmsg_chain,
#if (NGX_HAVE_SENDFILE)
ngx_freebsd_sendfile_chain,
NGX_IO_SENDFILE
Expand Down
1 change: 1 addition & 0 deletions src/os/unix/ngx_linux_init.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ static ngx_os_io_t ngx_linux_io = {
ngx_udp_unix_recv,
ngx_unix_send,
ngx_udp_unix_send,
ngx_udp_unix_sendmsg_chain,
#if (NGX_HAVE_SENDFILE)
ngx_linux_sendfile_chain,
NGX_IO_SENDFILE
Expand Down
3 changes: 3 additions & 0 deletions src/os/unix/ngx_os.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ typedef struct {
ngx_recv_pt udp_recv;
ngx_send_pt send;
ngx_send_pt udp_send;
ngx_send_chain_pt udp_send_chain;
ngx_send_chain_pt send_chain;
ngx_uint_t flags;
} ngx_os_io_t;
Expand All @@ -49,6 +50,8 @@ ssize_t ngx_unix_send(ngx_connection_t *c, u_char *buf, size_t size);
ngx_chain_t *ngx_writev_chain(ngx_connection_t *c, ngx_chain_t *in,
off_t limit);
ssize_t ngx_udp_unix_send(ngx_connection_t *c, u_char *buf, size_t size);
ngx_chain_t *ngx_udp_unix_sendmsg_chain(ngx_connection_t *c, ngx_chain_t *in,
off_t limit);


#if (IOV_MAX > 64)
Expand Down
1 change: 1 addition & 0 deletions src/os/unix/ngx_posix_init.c
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ ngx_os_io_t ngx_os_io = {
ngx_udp_unix_recv,
ngx_unix_send,
ngx_udp_unix_send,
ngx_udp_unix_sendmsg_chain,
ngx_writev_chain,
0
};
Expand Down
1 change: 1 addition & 0 deletions src/os/unix/ngx_solaris_init.c
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ static ngx_os_io_t ngx_solaris_io = {
ngx_udp_unix_recv,
ngx_unix_send,
ngx_udp_unix_send,
ngx_udp_unix_sendmsg_chain,
#if (NGX_HAVE_SENDFILE)
ngx_solaris_sendfilev_chain,
NGX_IO_SENDFILE
Expand Down
245 changes: 245 additions & 0 deletions src/os/unix/ngx_udp_sendmsg_chain.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,245 @@

/*
* Copyright (C) Igor Sysoev
* Copyright (C) Nginx, Inc.
*/


#include <ngx_config.h>
#include <ngx_core.h>
#include <ngx_event.h>


static ngx_chain_t *ngx_udp_output_chain_to_iovec(ngx_iovec_t *vec,
ngx_chain_t *in, ngx_log_t *log);
static ssize_t ngx_sendmsg(ngx_connection_t *c, ngx_iovec_t *vec);


ngx_chain_t *
ngx_udp_unix_sendmsg_chain(ngx_connection_t *c, ngx_chain_t *in, off_t limit)
{
ssize_t n;
off_t send;
ngx_chain_t *cl;
ngx_event_t *wev;
ngx_iovec_t vec;
struct iovec iovs[NGX_IOVS_PREALLOCATE];

wev = c->write;

if (!wev->ready) {
return in;
}

#if (NGX_HAVE_KQUEUE)

if ((ngx_event_flags & NGX_USE_KQUEUE_EVENT) && wev->pending_eof) {
(void) ngx_connection_error(c, wev->kq_errno,
"kevent() reported about an closed connection");
wev->error = 1;
return NGX_CHAIN_ERROR;
}

#endif

/* the maximum limit size is the maximum size_t value - the page size */

if (limit == 0 || limit > (off_t) (NGX_MAX_SIZE_T_VALUE - ngx_pagesize)) {
limit = NGX_MAX_SIZE_T_VALUE - ngx_pagesize;
}

send = 0;

vec.iovs = iovs;
vec.nalloc = NGX_IOVS_PREALLOCATE;

for ( ;; ) {

/* create the iovec and coalesce the neighbouring bufs */

cl = ngx_udp_output_chain_to_iovec(&vec, in, c->log);

if (cl == NGX_CHAIN_ERROR) {
return NGX_CHAIN_ERROR;
}

if (cl && cl->buf->in_file) {
ngx_log_error(NGX_LOG_ALERT, c->log, 0,
"file buf in sendmsg "
"t:%d r:%d f:%d %p %p-%p %p %O-%O",
cl->buf->temporary,
cl->buf->recycled,
cl->buf->in_file,
cl->buf->start,
cl->buf->pos,
cl->buf->last,
cl->buf->file,
cl->buf->file_pos,
cl->buf->file_last);

ngx_debug_point();

return NGX_CHAIN_ERROR;
}

if (cl == in) {
return in;
}

send += vec.size;

n = ngx_sendmsg(c, &vec);

if (n == NGX_ERROR) {
return NGX_CHAIN_ERROR;
}

if (n == NGX_AGAIN) {
wev->ready = 0;
return in;
}

c->sent += n;

in = ngx_chain_update_sent(in, n);

if (send >= limit || in == NULL) {
return in;
}
}
}


static ngx_chain_t *
ngx_udp_output_chain_to_iovec(ngx_iovec_t *vec, ngx_chain_t *in, ngx_log_t *log)
{
size_t total, size;
u_char *prev;
ngx_uint_t n, flush;
ngx_chain_t *cl;
struct iovec *iov;

cl = in;
iov = NULL;
prev = NULL;
total = 0;
n = 0;
flush = 0;

for ( /* void */ ; in && !flush; in = in->next) {

if (in->buf->flush || in->buf->last_buf) {
flush = 1;
}

if (ngx_buf_special(in->buf)) {
continue;
}

if (in->buf->in_file) {
break;
}

if (!ngx_buf_in_memory(in->buf)) {
ngx_log_error(NGX_LOG_ALERT, log, 0,
"bad buf in output chain "
"t:%d r:%d f:%d %p %p-%p %p %O-%O",
in->buf->temporary,
in->buf->recycled,
in->buf->in_file,
in->buf->start,
in->buf->pos,
in->buf->last,
in->buf->file,
in->buf->file_pos,
in->buf->file_last);

ngx_debug_point();

return NGX_CHAIN_ERROR;
}

size = in->buf->last - in->buf->pos;

if (prev == in->buf->pos) {
iov->iov_len += size;

} else {
if (n == vec->nalloc) {
ngx_log_error(NGX_LOG_ALERT, log, 0,
"too many parts in a datagram");
return NGX_CHAIN_ERROR;
}

iov = &vec->iovs[n++];

iov->iov_base = (void *) in->buf->pos;
iov->iov_len = size;
}

prev = in->buf->pos + size;
total += size;
}

if (!flush) {
#if (NGX_SUPPRESS_WARN)
vec->size = 0;
vec->count = 0;
#endif
return cl;
}

vec->count = n;
vec->size = total;

return in;
}


static ssize_t
ngx_sendmsg(ngx_connection_t *c, ngx_iovec_t *vec)
{
ssize_t n;
ngx_err_t err;
struct msghdr msg;

ngx_memzero(&msg, sizeof(struct msghdr));

if (c->socklen) {
msg.msg_name = c->sockaddr;
msg.msg_namelen = c->socklen;
}

msg.msg_iov = vec->iovs;
msg.msg_iovlen = vec->count;

eintr:

n = sendmsg(c->fd, &msg, 0);

ngx_log_debug2(NGX_LOG_DEBUG_EVENT, c->log, 0,
"sendmsg: %z of %uz", n, vec->size);

if (n == -1) {
err = ngx_errno;

switch (err) {
case NGX_EAGAIN:
ngx_log_debug0(NGX_LOG_DEBUG_EVENT, c->log, err,
"sendmsg() not ready");
return NGX_AGAIN;

case NGX_EINTR:
ngx_log_debug0(NGX_LOG_DEBUG_EVENT, c->log, err,
"sendmsg() was interrupted");
goto eintr;

default:
c->write->error = 1;
ngx_connection_error(c, err, "sendmsg() failed");
return NGX_ERROR;
}
}

return n;
}
2 changes: 2 additions & 0 deletions src/os/win32/ngx_os.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ typedef struct {
ngx_recv_chain_pt recv_chain;
ngx_recv_pt udp_recv;
ngx_send_pt send;
ngx_send_pt udp_send;
ngx_send_chain_pt udp_send_chain;
ngx_send_chain_pt send_chain;
ngx_uint_t flags;
} ngx_os_io_t;
Expand Down
2 changes: 2 additions & 0 deletions src/os/win32/ngx_win32_init.c
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ ngx_os_io_t ngx_os_io = {
ngx_wsarecv_chain,
ngx_udp_wsarecv,
ngx_wsasend,
NULL,
NULL,
ngx_wsasend_chain,
0
};
Expand Down
3 changes: 3 additions & 0 deletions src/stream/ngx_stream.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ static ngx_int_t ngx_stream_cmp_conf_addrs(const void *one, const void *two);
ngx_uint_t ngx_stream_max_module;


ngx_stream_filter_pt ngx_stream_top_filter;


static ngx_command_t ngx_stream_commands[] = {

{ ngx_string("stream"),
Expand Down
Loading

0 comments on commit 04b9434

Please sign in to comment.