Skip to content

Commit c4087e3

Browse files
author
Stefan Eissing
committed
v0.9.8, latest merges from httpd/trunk
1 parent 829a5d4 commit c4087e3

12 files changed

+17051
-37
lines changed

configure.ac

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
#
1515

1616
AC_PREREQ([2.69])
17-
AC_INIT([mod_h2], [0.9.7], [[email protected]])
17+
AC_INIT([mod_h2], [0.9.8], [[email protected]])
1818

1919
LT_PREREQ([2.2.6])
2020
LT_INIT()

mod-h2.xcodeproj/project.pbxproj

+6
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,9 @@
6262
B27D32E91A9487B4003DBAF4 /* h2_mplx.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = h2_mplx.h; sourceTree = "<group>"; };
6363
B284ACC91A7B9DF900C35863 /* h2_task_input.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = h2_task_input.c; sourceTree = "<group>"; };
6464
B284ACCA1A7B9DF900C35863 /* h2_task_input.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = h2_task_input.h; sourceTree = "<group>"; };
65+
B2876C101BA707FD00762ECD /* core-h2-all-in-one-v5.patch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "core-h2-all-in-one-v5.patch"; sourceTree = "<group>"; };
66+
B2876C111BA7082400762ECD /* core-protocols-v5.patch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "core-protocols-v5.patch"; sourceTree = "<group>"; };
67+
B2876C121BA70B8000762ECD /* core-protocols-release-v5.patch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "core-protocols-release-v5.patch"; sourceTree = "<group>"; };
6568
B2A6EF171A9B598B005DFC5B /* h2_request.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = h2_request.c; sourceTree = "<group>"; };
6669
B2A6EF181A9B598B005DFC5B /* h2_request.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = h2_request.h; sourceTree = "<group>"; };
6770
B2A6EF2A1A9E3A93005DFC5B /* INSTALL */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = INSTALL; sourceTree = "<group>"; };
@@ -474,8 +477,11 @@
474477
isa = PBXGroup;
475478
children = (
476479
B249BBF61B99AA6D00434956 /* core-h2-all-in-one-v4.patch */,
480+
B2876C101BA707FD00762ECD /* core-h2-all-in-one-v5.patch */,
477481
B2E17FBE1B96EFB100F352BA /* core-protocols-release-v4.patch */,
482+
B2876C121BA70B8000762ECD /* core-protocols-release-v5.patch */,
478483
B249BBF31B9998D000434956 /* core-protocols-v4.patch */,
484+
B2876C111BA7082400762ECD /* core-protocols-v5.patch */,
479485
);
480486
path = patches;
481487
sourceTree = "<group>";

mod_h2/h2_config.c

+2-32
Original file line numberDiff line numberDiff line change
@@ -372,41 +372,11 @@ h2_config *h2_config_rget(request_rec *r)
372372
h2_config *h2_config_get(conn_rec *c)
373373
{
374374
h2_ctx *ctx = h2_ctx_get(c);
375+
375376
if (ctx->config) {
376377
return ctx->config;
377378
}
378-
if (!ctx->server && ctx->hostname) {
379-
/* We have a host agreed upon via TLS SNI, but no request yet.
380-
* The sni host was accepted and therefore does match a server record
381-
* (vhost) for it. But we need to know which one.
382-
* Normally, it is enough to be set on the initial request on a
383-
* connection, but we need it earlier. Simulate a request and call
384-
* the vhost matching stuff.
385-
*/
386-
apr_uri_t uri;
387-
request_rec r;
388-
memset(&uri, 0, sizeof(uri));
389-
uri.scheme = (char*)"https";
390-
uri.hostinfo = (char*)ctx->hostname;
391-
uri.hostname = (char*)ctx->hostname;
392-
uri.port_str = (char*)"";
393-
uri.port = c->local_addr->port;
394-
uri.path = (char*)"/";
395-
396-
memset(&r, 0, sizeof(r));
397-
r.uri = (char*)"/";
398-
r.connection = c;
399-
r.pool = c->pool;
400-
r.hostname = ctx->hostname;
401-
r.headers_in = apr_table_make(c->pool, 1);
402-
r.parsed_uri = uri;
403-
r.status = HTTP_OK;
404-
r.server = r.connection->base_server;
405-
ap_update_vhost_from_headers(&r);
406-
ctx->server = r.server;
407-
}
408-
409-
if (ctx->server) {
379+
else if (ctx->server) {
410380
ctx->config = h2_config_sget(ctx->server);
411381
return ctx->config;
412382
}

mod_h2/h2_ctx.c

+6
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,12 @@ h2_ctx *h2_ctx_protocol_set(h2_ctx *ctx, const char *proto)
6868
return ctx;
6969
}
7070

71+
h2_ctx *h2_ctx_server_set(h2_ctx *ctx, server_rec *s)
72+
{
73+
ctx->server = s;
74+
return ctx;
75+
}
76+
7177
int h2_ctx_is_task(h2_ctx *ctx)
7278
{
7379
return ctx && !!ctx->task_env;

mod_h2/h2_ctx.h

+4
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,10 @@ h2_ctx *h2_ctx_create_for(const conn_rec *c, struct h2_task_env *env);
4646
*/
4747
h2_ctx *h2_ctx_protocol_set(h2_ctx *ctx, const char *proto);
4848

49+
/* Set the server_rec relevant for this context.
50+
*/
51+
h2_ctx *h2_ctx_server_set(h2_ctx *ctx, server_rec *s);
52+
4953
/**
5054
* Get the h2 protocol negotiated for this connection, or NULL.
5155
*/

mod_h2/h2_switch.c

+1
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,7 @@ static int h2_protocol_switch(conn_rec *c, request_rec *r, server_rec *s,
141141
ap_log_cerror(APLOG_MARK, APLOG_TRACE1, 0, c,
142142
"switching protocol to '%s'", protocol);
143143
h2_ctx_protocol_set(ctx, protocol);
144+
h2_ctx_server_set(ctx, s);
144145

145146
if (r != NULL) {
146147
apr_status_t status;

mod_h2/h2_task.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ apr_status_t h2_task_do(h2_task *task, h2_worker *worker)
220220
task->mplx = NULL;
221221

222222
env.input_eos = task->input_eos;
223-
env.serialize_headers = !!h2_config_geti(cfg, H2_CONF_SER_HEADERS);
223+
env.serialize_headers = h2_config_geti(cfg, H2_CONF_SER_HEADERS);
224224

225225
/* Create a subpool from the worker one to be used for all things
226226
* with life-time of this task_env execution.
@@ -389,8 +389,8 @@ static request_rec *h2_task_create_request(h2_task_env *env)
389389
}
390390

391391
ap_parse_uri(r, env->path);
392-
r->protocol = (char*)"HTTP/1.1";
393-
r->proto_num = HTTP_VERSION(1, 1);
392+
r->protocol = (char*)"HTTP/2";
393+
r->proto_num = HTTP_VERSION(2, 0);
394394

395395
/* update what we think the virtual host is based on the headers we've
396396
* now read. may update status.

mod_h2/h2_task_input.c

+3
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,9 @@ h2_task_input *h2_task_input_create(h2_task_env *env, apr_pool_t *pool,
5151
input->bb = NULL;
5252

5353
if (env->serialize_headers) {
54+
ap_log_cerror(APLOG_MARK, APLOG_TRACE1, 0, &env->c,
55+
"h2_task_input(%s): serialize request %s %s",
56+
env->id, env->method, env->path);
5457
input->bb = apr_brigade_create(pool, bucket_alloc);
5558
apr_brigade_printf(input->bb, NULL, NULL, "%s %s HTTP/1.1\r\n",
5659
env->method, env->path);

sandbox/httpd/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ $(GEN)/$(HTTPD_DIR)/.httpd-configured: \
154154
$(GEN)/$(HTTPD_DIR)/.httpd-patched: \
155155
$(GEN)/$(HTTPD_DIR)/.httpd-extracted
156156
@echo applying patches...
157-
@cd gen/$(HTTPD_DIR) && patch -p0 < ../../patches/core-protocols-release-v4.patch
157+
@cd gen/$(HTTPD_DIR) && patch -p0 < ../../patches/core-protocols-release-v5.patch
158158
@echo httpd patched.
159159
@touch $(GEN)/$(HTTPD_DIR)/.httpd-patched
160160

0 commit comments

Comments
 (0)