aboutsummaryrefslogtreecommitdiff
path: root/src/supplemental
diff options
context:
space:
mode:
authorGarrett D'Amore <garrett@damore.org>2018-09-29 21:55:31 -0700
committerGarrett D'Amore <garrett@damore.org>2018-09-29 21:55:31 -0700
commit25490a300910e357ac864a1916a4285e239fbf30 (patch)
tree8d45f90b9cfaff3c038aeadadd219d3edf8acc54 /src/supplemental
parentc084742b80d6514b39824617a41eb16910c53cf4 (diff)
downloadnng-25490a300910e357ac864a1916a4285e239fbf30.tar.gz
nng-25490a300910e357ac864a1916a4285e239fbf30.tar.bz2
nng-25490a300910e357ac864a1916a4285e239fbf30.zip
fixes #738 http server needs a way to collect request entity data
Diffstat (limited to 'src/supplemental')
-rw-r--r--src/supplemental/http/http.h10
-rw-r--r--src/supplemental/http/http_api.h6
-rw-r--r--src/supplemental/http/http_msg.c11
-rw-r--r--src/supplemental/http/http_public.c11
-rw-r--r--src/supplemental/http/http_server.c99
5 files changed, 117 insertions, 20 deletions
diff --git a/src/supplemental/http/http.h b/src/supplemental/http/http.h
index cffd1a8b..d9edd5c8 100644
--- a/src/supplemental/http/http.h
+++ b/src/supplemental/http/http.h
@@ -350,6 +350,16 @@ NNG_DECL int nng_http_handler_set_method(nng_http_handler *, const char *);
// that case is not considered.)
NNG_DECL int nng_http_handler_set_host(nng_http_handler *, const char *);
+// nng_http_handler_collect_body is used to indicate the server should
+// check for, and process, data sent by the client, which will be attached
+// to the request. If this is false, then the handler will need to check
+// for and process any content data. By default the server will accept
+// up to 1MB. If the client attempts to send more data than requested,
+// then a 400 Bad Request will be sent back to the client. To set an
+// unlimited value, use (size_t)-1. To preclude the client from sending
+// *any* data, use 0. (The static and file handlers use 0 by default.)
+NNG_DECL int nng_http_handler_collect_body(nng_http_handler *, bool, size_t);
+
// nng_http_handler_set_tree indicates that the handler is being registered
// for a heirarchical tree, rather than just a single path, so it will be
// called for all child paths supplied. By default the handler is only
diff --git a/src/supplemental/http/http_api.h b/src/supplemental/http/http_api.h
index 71b24f54..a30399d2 100644
--- a/src/supplemental/http/http_api.h
+++ b/src/supplemental/http/http_api.h
@@ -101,6 +101,7 @@ extern int nni_http_req_copy_data(nni_http_req *, const void *, size_t);
extern int nni_http_res_copy_data(nni_http_res *, const void *, size_t);
extern int nni_http_req_set_data(nni_http_req *, const void *, size_t);
extern int nni_http_res_set_data(nni_http_res *, const void *, size_t);
+extern int nni_http_req_alloc_data(nni_http_req *, size_t);
extern int nni_http_res_alloc_data(nni_http_res *, size_t);
extern const char *nni_http_req_get_method(nni_http_req *);
extern const char *nni_http_req_get_version(nni_http_req *);
@@ -248,6 +249,11 @@ extern int nni_http_handler_init_static(
// calls this for any handlers still registered with it if it is destroyed.
extern void nni_http_handler_fini(nni_http_handler *);
+// nni_http_handler_collect_body informs the server that it should collect
+// the entitty data associated with the client request, and sets the maximum
+// size to accept.
+extern void nni_http_handler_collect_body(nni_http_handler *, bool, size_t);
+
// nni_http_handler_set_tree marks the handler as servicing the entire
// tree (e.g. a directory), rather than just a leaf node. The handler
// will probably need to inspect the URL of the request.
diff --git a/src/supplemental/http/http_msg.c b/src/supplemental/http/http_msg.c
index 6d7e9f8a..3b78a2a9 100644
--- a/src/supplemental/http/http_msg.c
+++ b/src/supplemental/http/http_msg.c
@@ -382,6 +382,17 @@ nni_http_req_copy_data(nni_http_req *req, const void *data, size_t size)
}
int
+nni_http_req_alloc_data(nni_http_req *req, size_t size)
+{
+ int rv;
+
+ if ((rv = http_entity_alloc_data(&req->data, size)) != 0) {
+ return (rv);
+ }
+ return (0);
+}
+
+int
nni_http_res_copy_data(nni_http_res *res, const void *data, size_t size)
{
int rv;
diff --git a/src/supplemental/http/http_public.c b/src/supplemental/http/http_public.c
index 389b74c8..b86521b0 100644
--- a/src/supplemental/http/http_public.c
+++ b/src/supplemental/http/http_public.c
@@ -587,6 +587,17 @@ nng_http_handler_set_method(nng_http_handler *h, const char *meth)
}
int
+nng_http_handler_collect_body(nng_http_handler *h, bool want, size_t len)
+{
+#ifdef NNG_SUPP_HTTP
+ nni_http_handler_collect_body(h, want, len);
+ return (0);
+#else
+ return (NNG_ENOTSUP);
+#endif
+}
+
+int
nng_http_handler_set_host(nng_http_handler *h, const char *host)
{
#ifdef NNG_SUPP_HTTP
diff --git a/src/supplemental/http/http_server.c b/src/supplemental/http/http_server.c
index f36c941d..1a7f2c25 100644
--- a/src/supplemental/http/http_server.c
+++ b/src/supplemental/http/http_server.c
@@ -35,25 +35,28 @@ struct nng_http_handler {
char * host;
bool tree;
int refcnt;
+ size_t maxbody;
+ bool getbody;
void * data;
nni_cb dtor;
void (*cb)(nni_aio *);
};
typedef struct http_sconn {
- nni_list_node node;
- nni_http_conn * conn;
- nni_http_server *server;
- nni_http_req * req;
- nni_http_res * res;
- bool close;
- bool closed;
- bool finished;
- nni_aio * cbaio;
- nni_aio * rxaio;
- nni_aio * txaio;
- nni_aio * txdataio;
- nni_reap_item reap;
+ nni_list_node node;
+ nni_http_conn * conn;
+ nni_http_server * server;
+ nni_http_req * req;
+ nni_http_res * res;
+ nni_http_handler *handler; // set if we deferred to read body
+ bool close;
+ bool closed;
+ bool finished;
+ nni_aio * cbaio;
+ nni_aio * rxaio;
+ nni_aio * txaio;
+ nni_aio * txdataio;
+ nni_reap_item reap;
} http_sconn;
typedef struct http_error {
@@ -101,13 +104,15 @@ nni_http_handler_init(
return (NNG_ENOMEM);
}
NNI_LIST_NODE_INIT(&h->node);
- h->cb = cb;
- h->data = NULL;
- h->dtor = NULL;
- h->host = NULL;
- h->tree = false;
- h->refcnt = 0;
- *hp = h;
+ h->cb = cb;
+ h->data = NULL;
+ h->dtor = NULL;
+ h->host = NULL;
+ h->tree = false;
+ h->refcnt = 0;
+ h->maxbody = 1024 * 1024; // By default we accept up to 1MB of body
+ h->getbody = true;
+ *hp = h;
return (0);
}
@@ -126,6 +131,13 @@ nni_http_handler_fini(nni_http_handler *h)
NNI_FREE_STRUCT(h);
}
+void
+nni_http_handler_collect_body(nni_http_handler *h, bool want, size_t maxbody)
+{
+ h->getbody = want;
+ h->maxbody = maxbody;
+}
+
int
nni_http_handler_set_data(nni_http_handler *h, void *data, nni_cb dtor)
{
@@ -292,6 +304,7 @@ http_sconn_txdatdone(void *arg)
return;
}
+ sc->handler = NULL;
nni_http_req_reset(sc->req);
nni_http_read_req(sc->conn, sc->req, sc->rxaio);
}
@@ -316,6 +329,7 @@ http_sconn_txdone(void *arg)
nni_http_res_free(sc->res);
sc->res = NULL;
}
+ sc->handler = NULL;
nni_http_req_reset(sc->req);
nni_http_read_req(sc->conn, sc->req, sc->rxaio);
}
@@ -457,12 +471,18 @@ http_sconn_rxdone(void *arg)
bool badmeth = false;
bool needhost = false;
const char * host;
+ const char * cls;
if ((rv = nni_aio_result(aio)) != 0) {
http_sconn_close(sc);
return;
}
+ if ((h = sc->handler) != NULL) {
+ nni_mtx_lock(&s->mtx);
+ goto finish;
+ }
+
// Validate the request -- it has to at least look like HTTP
// 1.x. We flatly refuse to deal with HTTP 0.9, and we can't
// cope with HTTP/2.
@@ -594,6 +614,35 @@ http_sconn_rxdone(void *arg)
return;
}
+ if ((h->getbody) &&
+ ((cls = nni_http_req_get_header(req, "Content-Length")) != NULL)) {
+ uint64_t len;
+
+ if ((nni_strtou64(cls, &len) != 0) || (len > h->maxbody)) {
+ nni_mtx_unlock(&s->mtx);
+ http_sconn_error(sc, NNG_HTTP_STATUS_BAD_REQUEST);
+ return;
+ }
+ if (len > 0) {
+ nng_iov iov;
+ if ((nni_http_req_alloc_data(req, (size_t) len)) !=
+ 0) {
+ nni_mtx_unlock(&s->mtx);
+ http_sconn_error(
+ sc, NNG_HTTP_STATUS_INTERNAL_SERVER_ERROR);
+ return;
+ }
+ nng_http_req_get_data(req, &iov.iov_buf, &iov.iov_len);
+ sc->handler = h;
+ nni_mtx_unlock(&s->mtx);
+ nni_aio_set_iov(sc->rxaio, 1, &iov);
+ nni_http_read_full(sc->conn, aio);
+ return;
+ }
+ }
+
+finish:
+ sc->handler = NULL;
nni_aio_set_input(sc->cbaio, 0, sc->req);
nni_aio_set_input(sc->cbaio, 1, h);
nni_aio_set_input(sc->cbaio, 2, sc->conn);
@@ -671,6 +720,7 @@ http_sconn_cbdone(void *arg)
} else {
// Presumably client already sent a response.
// Wait for another request.
+ sc->handler = NULL;
nni_http_req_reset(sc->req);
nni_http_read_req(sc->conn, sc->req, sc->rxaio);
}
@@ -747,6 +797,7 @@ http_server_acccb(void *arg)
sc->server = s;
nni_list_append(&s->conns, sc);
+ sc->handler = NULL;
nni_http_read_req(sc->conn, sc->req, sc->rxaio);
nni_tcp_listener_accept(s->listener, s->accaio);
nni_mtx_unlock(&s->mtx);
@@ -1345,6 +1396,9 @@ nni_http_handler_init_file_ctype(nni_http_handler **hpp, const char *uri,
return (rv);
}
+ // We don't permit a body for getting a file.
+ nni_http_handler_collect_body(h, true, 0);
+
*hpp = h;
return (0);
}
@@ -1505,6 +1559,8 @@ nni_http_handler_init_directory(
http_file_free(hf);
return (rv);
}
+ // We don't permit a body for getting a file.
+ nni_http_handler_collect_body(h, true, 0);
if (((rv = nni_http_handler_set_tree(h)) != 0) ||
((rv = nni_http_handler_set_data(h, hf, http_file_free)) != 0)) {
@@ -1596,6 +1652,9 @@ nni_http_handler_init_static(nni_http_handler **hpp, const char *uri,
return (rv);
}
+ // We don't permit a body for getting static data.
+ nni_http_handler_collect_body(h, true, 0);
+
*hpp = h;
return (0);
}