Browse Source

http: improves expect header handling

Now returns a 417 error status or allows for an event listener on
the `checkExpectation` event. Before we were ignoring requests that
had misspelled `100-continue` values for expect headers.

This is a quick port of the work done here:
https://github.com/nodejs/node-v0.x-archive/pull/7132 by alFReD-NSH
with surrounding discussion here:
https://github.com/nodejs/node-v0.x-archive/issues/4651

Also updates all the instances of the deprecated
EventEmitter.listenerCount to the current self.listenerCount. Most
of these were in the new code ported over but there was another
legacy instance.

Refs: #2403
PR-URL: https://github.com/nodejs/node/pull/4501
Reviewed-By: James M Snell <jasnell@gmail.com>
process-exit-stdio-flushing
Daniel Sellers 9 years ago
committed by James M Snell
parent
commit
d755432fa9
  1. 11
      doc/api/http.markdown
  2. 26
      lib/_http_server.js
  3. 55
      test/parallel/test-http-expect-handling.js

11
doc/api/http.markdown

@ -192,6 +192,17 @@ The request implements the [Writable Stream][] interface. This is an
Emitted when the request has been aborted by the client. This event is only Emitted when the request has been aborted by the client. This event is only
emitted on the first call to `abort()`. emitted on the first call to `abort()`.
### Event: 'checkExpectation'
`function (request, response) { }`
Emitted each time a request with an http Expect header is received, where the
value is not 100-continue. If this event isn't listened for, the server will
automatically respond with a 417 Expectation Failed as appropriate.
Note that when this event is emitted and handled, the `request` event will
not be emitted.
### Event: 'connect' ### Event: 'connect'
`function (response, socket, head) { }` `function (response, socket, head) { }`

26
lib/_http_server.js

@ -2,7 +2,6 @@
const util = require('util'); const util = require('util');
const net = require('net'); const net = require('net');
const EventEmitter = require('events');
const HTTPParser = process.binding('http_parser').HTTPParser; const HTTPParser = process.binding('http_parser').HTTPParser;
const assert = require('assert').ok; const assert = require('assert').ok;
const common = require('_http_common'); const common = require('_http_common');
@ -392,7 +391,7 @@ function connectionListener(socket) {
parser = null; parser = null;
var eventName = req.method === 'CONNECT' ? 'connect' : 'upgrade'; var eventName = req.method === 'CONNECT' ? 'connect' : 'upgrade';
if (EventEmitter.listenerCount(self, eventName) > 0) { if (self.listenerCount(eventName) > 0) {
debug('SERVER have listener for %s', eventName); debug('SERVER have listener for %s', eventName);
var bodyHead = d.slice(bytesParsed, d.length); var bodyHead = d.slice(bytesParsed, d.length);
@ -517,14 +516,23 @@ function connectionListener(socket) {
} }
if (req.headers.expect !== undefined && if (req.headers.expect !== undefined &&
(req.httpVersionMajor == 1 && req.httpVersionMinor == 1) && (req.httpVersionMajor == 1 && req.httpVersionMinor == 1)) {
continueExpression.test(req.headers['expect'])) { if (continueExpression.test(req.headers.expect)) {
res._expect_continue = true; res._expect_continue = true;
if (EventEmitter.listenerCount(self, 'checkContinue') > 0) {
self.emit('checkContinue', req, res); if (self.listenerCount('checkContinue') > 0) {
self.emit('checkContinue', req, res);
} else {
res.writeContinue();
self.emit('request', req, res);
}
} else { } else {
res.writeContinue(); if (self.listenerCount('checkExpectation') > 0) {
self.emit('request', req, res); self.emit('checkExpectation', req, res);
} else {
res.writeHead(417);
res.end();
}
} }
} else { } else {
self.emit('request', req, res); self.emit('request', req, res);

55
test/parallel/test-http-expect-handling.js

@ -0,0 +1,55 @@
// Spec documentation http://httpwg.github.io/specs/rfc7231.html#header.expect
'use strict';
const common = require('../common');
const assert = require('assert');
const http = require('http');
const tests = [417, 417];
let testsComplete = 0;
let testIdx = 0;
const s = http.createServer(function(req, res) {
throw new Error('this should never be executed');
});
s.listen(common.PORT, nextTest);
function nextTest() {
const options = {
port: common.PORT,
headers: { 'Expect': 'meoww' }
};
if (testIdx === tests.length) {
return s.close();
}
const test = tests[testIdx];
if (testIdx > 0) {
s.on('checkExpectation', common.mustCall((req, res) => {
res.statusCode = 417;
res.end();
}));
}
http.get(options, function(response) {
console.log('client: expected status: ' + test);
console.log('client: statusCode: ' + response.statusCode);
assert.equal(response.statusCode, test);
assert.equal(response.statusMessage, 'Expectation Failed');
response.on('end', function() {
testsComplete++;
testIdx++;
nextTest();
});
response.resume();
});
}
process.on('exit', function() {
assert.equal(2, testsComplete);
});
Loading…
Cancel
Save