-
Notifications
You must be signed in to change notification settings - Fork 29.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
http2: fix h2-over-h2 connection proxying
PR-URL: #52368 Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: Paolo Insogna <[email protected]> Reviewed-By: Marco Ippolito <[email protected]>
- Loading branch information
1 parent
e1fa81e
commit b7ff368
Showing
4 changed files
with
67 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
'use strict'; | ||
|
||
const common = require('../common'); | ||
if (!common.hasCrypto) | ||
common.skip('missing crypto'); | ||
const assert = require('assert'); | ||
const h2 = require('http2'); | ||
|
||
const server = h2.createServer(); | ||
|
||
server.listen(0, common.mustCall(function() { | ||
const proxyClient = h2.connect(`http://localhost:${server.address().port}`); | ||
|
||
const request = proxyClient.request({ | ||
':method': 'CONNECT', | ||
':authority': 'example.com:80' | ||
}); | ||
|
||
request.on('response', common.mustCall((connectResponse) => { | ||
assert.strictEqual(connectResponse[':status'], 200); | ||
|
||
const proxiedClient = h2.connect('http://example.com', { | ||
createConnection: () => request // Tunnel via first request stream | ||
}); | ||
|
||
const proxiedRequest = proxiedClient.request(); | ||
proxiedRequest.on('response', common.mustCall((proxiedResponse) => { | ||
assert.strictEqual(proxiedResponse[':status'], 204); | ||
|
||
proxiedClient.close(); | ||
proxyClient.close(); | ||
server.close(); | ||
})); | ||
})); | ||
})); | ||
|
||
server.once('connect', common.mustCall((req, res) => { | ||
assert.strictEqual(req.headers[':method'], 'CONNECT'); | ||
res.writeHead(200); // Accept the CONNECT tunnel | ||
|
||
// Handle this stream as a new 'proxied' connection (pretend to forward | ||
// but actually just unwrap the tunnel ourselves): | ||
server.emit('connection', res.stream); | ||
})); | ||
|
||
// Handle the 'proxied' request itself: | ||
server.once('request', common.mustCall((req, res) => { | ||
res.writeHead(204); | ||
res.end(); | ||
})); |