Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

new internal isURL check can result in http.request() option fields being ignored #46981

Closed
trentm opened this issue Mar 6, 2023 · 3 comments · Fixed by #46989
Closed

new internal isURL check can result in http.request() option fields being ignored #46981

trentm opened this issue Mar 6, 2023 · 3 comments · Fixed by #46989

Comments

@trentm
Copy link
Contributor

trentm commented Mar 6, 2023

Version

v20.0.0-nightly2023030448f99e5f6a

Platform

macOS, but will happen on any platform.

Subsystem

http, url

What steps will reproduce the bug?

// nodev20-http-break.example.js
const http = require('http')

const server = http.createServer((req, res) => {
  console.log('SERVER: on request: %s %s %s', req.method, req.url, req.headers)
  req.resume()
  req.on('end', () => {
    res.writeHead(200)
    res.end('pong')
  })
})

server.listen(0, '127.0.0.1', () => {
  console.log('SERVER: listening on port', server.address().port)

  const url = new URL(`http://127.0.0.1:${server.address().port}/ping?q=term`)
  const reqOpts = {
    method: 'GET',
    protocol: url.protocol,
    hostname: url.hostname[0] === '[' ? url.hostname.slice(1, -1) : url.hostname,
    path: url.pathname + url.search,
    port: Number(url.port),
    href: url.href,     // <--- oops
    origin: url.origin, // <--- oops
    headers: {          // <--- this gets ignored
      Foo: 'Bar'
    },
  }
  console.log('CLIENT: make request with options:', reqOpts)
  const clientReq = http.request(reqOpts)
  clientReq.on('response', (clientRes) => {
    console.log('CLIENT: on response: %s %s', clientRes.statusCode, clientRes.headers)
    clientRes.resume()
  })
  clientReq.on('close', () => {
    console.log('CLIENT: on close: close the server')
    server.close()
  })
  clientReq.end()
})

How often does it reproduce? Is there a required condition?

Everytime a non-URL object is passed as first argument to http.request() with the href and origin fields (accidentally), and with other non-URL-y valid input arguments.

What is the expected behavior?

That the "Foo" header is sent to the server.

What do you see instead?

When we run that, notice that the Foo header is not received by the HTTP server:

% node --version
v20.0.0-nightly2023030448f99e5f6a

% node nodev20-http-break.example.js
SERVER: listening on port 64924
CLIENT: make request with options: {
  method: 'GET',
  protocol: 'http:',
  hostname: '127.0.0.1',
  path: '/ping?q=term',
  port: 64924,
  href: 'http://127.0.0.1:64924/ping?q=term',
  origin: 'http://127.0.0.1:64924',
  headers: { Foo: 'Bar' }
}
SERVER: on request: GET / { host: '127.0.0.1:64924', connection: 'keep-alive' }
CLIENT: on response: 200 {
  date: 'Mon, 06 Mar 2023 21:11:32 GMT',
  connection: 'keep-alive',
  'keep-alive': 'timeout=5',
  'transfer-encoding': 'chunked'
}
CLIENT: on close: close the server

With the preceding nightly node v20 build, the Foo header is received:

% node --version
v20.0.0-nightly20230303a37b72da87

% node nodev20-http-break.example.js
SERVER: listening on port 64933
CLIENT: make request with options: {
  method: 'GET',
  protocol: 'http:',
  hostname: '127.0.0.1',
  path: '/ping?q=term',
  port: 64933,
  href: 'http://127.0.0.1:64933/ping?q=term',
  origin: 'http://127.0.0.1:64933',
  headers: { Foo: 'Bar' }
}
SERVER: on request: GET /ping?q=term { foo: 'Bar', host: '127.0.0.1:64933', connection: 'keep-alive' }
CLIENT: on response: 200 {
  date: 'Mon, 06 Mar 2023 21:12:49 GMT',
  connection: 'keep-alive',
  'keep-alive': 'timeout=5',
  'transfer-encoding': 'chunked'
}
CLIENT: on close: close the server

Additional information

#46904 introduced a change to the internal isURL check that is used in http.request() to determine if the first argument is a URL instance:

} else if (isURL(input)) {

It now considers the first argument to be a URL if it has the href and origin fields.
This resulted in a surprise for me.

Basically, the @elastic/elasticsearch module is building an options object for http.request(options, ...) that includes the href and origin fields. (There isn't a good reason for it to include those fields other than -- I'm guessing -- the original change just having used all the fields on a WHATWG URL object, rather than reading the input arguments specified in the node docs).

The result is that other non-URL-y fields in the options object are ignored, like agent and headers (and perhaps method).

I don't know if this would be considered a bug, but I'm opening it for discussion here. There isn't a good reason for the code above to be passing the href and origin fields to the http.request(...) options. However, perhaps using just those two fields as the isURL check for http.request is too quick of a decision. Would it be too complex/slow to see if the given input to ClientRequest includes any of the other legitimate options? I don't object to closing this issue if it is expected that accidentally passing in an input object with href and origin will be rare.

@anonrig
Copy link
Member

anonrig commented Mar 7, 2023

There is no right or wrong in this detection. Unfortunately, we need to check for the structure of the URL because we can't check using instanceof due to electron's use case. I don't think there is a good way of checking this.

cc @aduh95 @nodejs/url

@aduh95
Copy link
Contributor

aduh95 commented Mar 7, 2023

I've opened #46989 to address this, let me know if that would work for you.

@trentm
Copy link
Contributor Author

trentm commented Mar 9, 2023

let me know if that would work for you.

@aduh95 Thanks! This looks good to me. It resolves the issue for me. I'll add a review on your PR, though I'm not a node core reviewer, so it's of limited value.

nodejs-github-bot pushed a commit that referenced this issue Mar 19, 2023
PR-URL: #46989
Fixes: #46981
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
RafaelGSS pushed a commit that referenced this issue Apr 5, 2023
PR-URL: #46989
Fixes: #46981
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
RafaelGSS pushed a commit that referenced this issue Apr 7, 2023
PR-URL: #46989
Fixes: #46981
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
anonrig pushed a commit to anonrig/node that referenced this issue Jun 24, 2023
PR-URL: nodejs#46989
Fixes: nodejs#46981
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
anonrig pushed a commit to anonrig/node that referenced this issue Jun 24, 2023
PR-URL: nodejs#46989
Fixes: nodejs#46981
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
anonrig pushed a commit to anonrig/node that referenced this issue Jun 26, 2023
PR-URL: nodejs#46989
Fixes: nodejs#46981
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
danielleadams pushed a commit that referenced this issue Jul 6, 2023
PR-URL: #46989
Fixes: #46981
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
anonrig pushed a commit to anonrig/node that referenced this issue Jul 6, 2023
PR-URL: nodejs#46989
Fixes: nodejs#46981
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
anonrig pushed a commit to anonrig/node that referenced this issue Jul 9, 2023
PR-URL: nodejs#46989
Fixes: nodejs#46981
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
anonrig pushed a commit to anonrig/node that referenced this issue Jul 9, 2023
PR-URL: nodejs#46989
Fixes: nodejs#46981
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
danielleadams pushed a commit that referenced this issue Jul 12, 2023
PR-URL: #46989
Backport-PR-URL: #48345
Fixes: #46981
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants