Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 23 additions & 3 deletions lib/_http_client.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,14 +49,19 @@ const Agent = require('_http_agent');
const { Buffer } = require('buffer');
const { defaultTriggerAsyncIdScope } = require('internal/async_hooks');
const { URL, urlToOptions, searchParamsSymbol } = require('internal/url');
const { kOutHeaders, kNeedDrain } = require('internal/http');
const {
kOutHeaders,
kNeedDrain,
isValidConnectPath
} = require('internal/http');
const { connResetException, codes } = require('internal/errors');
const {
ERR_HTTP_HEADERS_SENT,
ERR_INVALID_ARG_TYPE,
ERR_INVALID_HTTP_TOKEN,
ERR_INVALID_PROTOCOL,
ERR_UNESCAPED_CHARACTERS
ERR_UNESCAPED_CHARACTERS,
ERR_INVALID_ARG_VALUE
} = codes;
const { validateInteger } = require('internal/validators');
const { getTimerDuration } = require('internal/timers');
Expand Down Expand Up @@ -197,7 +202,22 @@ function ClientRequest(input, options, cb) {
}
this.insecureHTTPParser = insecureHTTPParser;

this.path = options.path || '/';
path = options.path;
if (path) {
if (method === 'CONNECT') {
if (path.startsWith('/')) {

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

path[0] === '/' is much faster

// if path is '/'
path = path.slice(1) || '/';
if (!isValidConnectPath(path)) {
throw new ERR_INVALID_ARG_VALUE('options.path',
path,
'must be a valid host:port combo');
}
}
}
}
this.path = path || '/';

if (cb) {
this.once('response', cb);
}
Expand Down
11 changes: 10 additions & 1 deletion lib/internal/http.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ const {

const { setUnrefTimeout } = require('internal/timers');
const { PerformanceEntry, notify } = internalBinding('performance');
const { URL } = require('internal/url');

let nowCache;
let utcCache;
Expand All @@ -32,6 +33,13 @@ function resetCache() {
utcCache = undefined;
}

function isValidConnectPath(path) {
const url = new URL(`http://${path}`);
if (url.hostname && url.port && `http://${url.host}/` === url.href)
return true;
return false;
}

class HttpRequestTiming extends PerformanceEntry {
constructor(statistics) {
super();
Expand All @@ -53,5 +61,6 @@ module.exports = {
kNeedDrain: Symbol('kNeedDrain'),
nowDate,
utcDate,
emitStatistics
emitStatistics,
isValidConnectPath
};
42 changes: 42 additions & 0 deletions test/parallel/test-http-request-connect-method.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
// Flags: --expose-internals

'use strict';

const common = require('../common');
const assert = require('assert');
const http = require('http');
const { isValidConnectPath } = require('internal/http');

const server = http.createServer();

server.on('connect', common.mustCall((req, stream) => {
assert.strictEqual(req.url, 'example.com:80');
stream.end('HTTP/1.1 501 Not Implemented\r\n\r\n');
}));

server.listen(0);

server.on('listening', common.mustCall(() => {
const url = new URL(`http://localhost:${server.address().port}/example.com:80`);
let req = http.request(url, { method: 'CONNECT' }).end();
// invalid path
const invalidPathURL = new URL(`http://localhost:${server.address().port}/example.com`);
assert.throws(
() => {
req = http.request(invalidPathURL, { method: 'CONNECT' }).end();
},
{
code: 'ERR_INVALID_ARG_VALUE',
name: 'TypeError',
message: /^The argument 'options\.path' must be a valid host:port combo\. Received .+$/
}
);
req.once('connect', common.mustCall((res) => {
res.destroy();
server.close();
}));
}));

['example.com', 'example.com:8080/example'].forEach((path) => {
assert.strictEqual(isValidConnectPath(path), false);
});