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

fix(server): fix header check for socket server #2077

Merged
merged 3 commits into from Jul 1, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
11 changes: 4 additions & 7 deletions lib/Server.js
Expand Up @@ -677,25 +677,22 @@ class Server {
const SocketServerImplementation = this.socketServerImplementation;
this.socketServer = new SocketServerImplementation(this);

this.socketServer.onConnection((connection) => {
this.socketServer.onConnection((connection, headers) => {
Copy link
Member

Choose a reason for hiding this comment

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

connection already has headers, i think we don't need extra argument

if (!connection) {
return;
}

if (
!this.checkHost(connection.headers) ||
!this.checkOrigin(connection.headers)
) {
if (headers && (!this.checkHost(headers) || !this.checkOrigin(headers))) {
Copy link
Member

Choose a reason for hiding this comment

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

This looks like it's too easy to accidentally skip the security check.

Maybe changing it to if (!headers || ...

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

@sokra Good point. I think if users do not implement onConnection correctly though, it will be hard to figure out what is wrong. Maybe before that I'll log a warning if headers are missing.

Copy link
Member

Choose a reason for hiding this comment

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

@Loonride it should be no warning, we should drop connection if headers are not present

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

@evilebottnawi If !headers is true it means that the user made a socket server implementation that did not call the onConnection(f) callback correctly, so I think that could cause confusion if there is little explanation for failed connection. Let me send a PR and I'll show you what I mean

Copy link
Member

Choose a reason for hiding this comment

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

👍

this.sockWrite([connection], 'error', 'Invalid Host/Origin header');

connection.close();
this.socketServer.close(connection);

return;
}

this.sockets.push(connection);

connection.on('close', () => {
this.socketServer.onConnectionClose(connection, () => {
const idx = this.sockets.indexOf(connection);

if (idx >= 0) {
Expand Down
10 changes: 8 additions & 2 deletions lib/servers/SockJSServer.js
Expand Up @@ -57,8 +57,14 @@ module.exports = class SockJSServer extends BaseServer {
connection.close();
}

// f should return the resulting connection
// f should return the resulting connection and, optionally, the connection headers
onConnection(f) {
this.socket.on('connection', f);
this.socket.on('connection', (connection) => {
f(connection, connection.headers);
Copy link
Member

Choose a reason for hiding this comment

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

Why not use only connection?

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

@evilebottnawi Because ws connection object does not work the same, it does not have a headers property (https://github.com/webpack/webpack-dev-server/pull/2077/files#diff-b111fb9e1bc06a00edb8d0416cabf86dR33). The goal is to not assume anything about the connection object, since it could differ between socket server types.

});
}

onConnectionClose(connection, f) {
Copy link
Member

Choose a reason for hiding this comment

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

Why we need this?

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

@evilebottnawi As I say later, I want to not assume anything about the connection object. Probably most connection objects will work like connection.on('close', f), which is the case with both sockjs and ws. But maybe some other library implements it like connection.onclose = f.

connection.on('close', f);
}
};
8 changes: 7 additions & 1 deletion lib/servers/WebsocketServer.js
Expand Up @@ -29,6 +29,12 @@ module.exports = class WebsocketServer extends BaseServer {

// f should return the resulting connection
onConnection(f) {
this.wsServer.on('connection', f);
this.wsServer.on('connection', (connection, req) => {
f(connection, req.headers);
});
}

onConnectionClose(connection, f) {
connection.on('close', f);
}
};
9 changes: 9 additions & 0 deletions test/server/__snapshots__/serverMode-option.test.js.snap
@@ -0,0 +1,9 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`serverMode option with a bad host header results in an error 1`] = `
Array [
"open",
"{\\"type\\":\\"error\\",\\"data\\":\\"Invalid Host/Origin header\\"}",
"close",
]
`;
92 changes: 89 additions & 3 deletions test/server/serverMode-option.test.js
Expand Up @@ -5,6 +5,7 @@
*/
const request = require('supertest');
const sockjs = require('sockjs');
const SockJS = require('sockjs-client/dist/sockjs');
const SockJSServer = require('../../lib/servers/SockJSServer');
const config = require('../fixtures/simple-config/webpack.config');
const testServer = require('../helpers/test-server');
Expand Down Expand Up @@ -77,6 +78,7 @@ describe('serverMode option', () => {

describe('as a class (custom "sockjs" implementation)', () => {
it('uses supplied server implementation', (done) => {
let sockPath;
server = testServer.start(
config,
{
Expand All @@ -102,7 +104,7 @@ describe('serverMode option', () => {
prefix: this.server.sockPath,
});

expect(server.options.sockPath).toEqual('/foo/test/bar/');
sockPath = server.options.sockPath;
}

send(connection, message) {
Expand All @@ -114,11 +116,20 @@ describe('serverMode option', () => {
}

onConnection(f) {
this.socket.on('connection', f);
this.socket.on('connection', (connection) => {
f(connection, connection.headers);
});
}

onConnectionClose(connection, f) {
connection.on('close', f);
}
},
},
done
() => {
expect(sockPath).toEqual('/foo/test/bar/');
done();
}
);
});
});
Expand All @@ -137,4 +148,79 @@ describe('serverMode option', () => {
}).toThrow(/serverMode must be a string/);
});
});

describe('with a bad host header', () => {
beforeAll((done) => {
server = testServer.start(
config,
{
port,
serverMode: class MySockJSServer extends BaseServer {
constructor(serv) {
super(serv);
this.socket = sockjs.createServer({
// Use provided up-to-date sockjs-client
sockjs_url: '/__webpack_dev_server__/sockjs.bundle.js',
// Limit useless logs
log: (severity, line) => {
if (severity === 'error') {
this.server.log.error(line);
} else {
this.server.log.debug(line);
}
},
});

this.socket.installHandlers(this.server.listeningApp, {
prefix: this.server.sockPath,
});
}

send(connection, message) {
connection.write(message);
}

close(connection) {
connection.close();
}

onConnection(f) {
this.socket.on('connection', (connection) => {
f(connection, {
host: null,
});
});
}

onConnectionClose(connection, f) {
connection.on('close', f);
}
},
},
done
);
});

it('results in an error', (done) => {
const data = [];
const client = new SockJS(`http://localhost:${port}/sockjs-node`);

client.onopen = () => {
data.push('open');
};

client.onmessage = (e) => {
data.push(e.data);
};

client.onclose = () => {
data.push('close');
};

setTimeout(() => {
expect(data).toMatchSnapshot();
done();
}, 5000);
});
});
});
28 changes: 27 additions & 1 deletion test/server/servers/SockJSServer.test.js
Expand Up @@ -35,10 +35,13 @@ describe('SockJSServer', () => {
it('should recieve connection, send message, and close client', (done) => {
const data = [];

socketServer.onConnection((connection) => {
let headers;
socketServer.onConnection((connection, h) => {
headers = h;
data.push('open');
socketServer.send(connection, 'hello world');
setTimeout(() => {
// the server closes the connection with the client
socketServer.close(connection);
}, 1000);
});
Expand All @@ -54,10 +57,33 @@ describe('SockJSServer', () => {
};

setTimeout(() => {
expect(headers.host).toMatchSnapshot();
expect(data).toMatchSnapshot();
done();
}, 3000);
});

it('should receive client close event', (done) => {
let receivedClientClose = false;
socketServer.onConnection((connection) => {
socketServer.onConnectionClose(connection, () => {
receivedClientClose = true;
});
});

// eslint-disable-next-line new-cap
const client = new SockJS(`http://localhost:${port}/sockjs-node`);

setTimeout(() => {
// the client closes itself, the server does not close it
client.close();
}, 1000);

setTimeout(() => {
expect(receivedClientClose).toBeTruthy();
done();
}, 3000);
});
});

afterAll((done) => {
Expand Down
28 changes: 27 additions & 1 deletion test/server/servers/WebsocketServer.test.js
Expand Up @@ -35,10 +35,13 @@ describe('WebsocketServer', () => {
it('should recieve connection, send message, and close client', (done) => {
const data = [];

socketServer.onConnection((connection) => {
let headers;
socketServer.onConnection((connection, h) => {
headers = h;
data.push('open');
socketServer.send(connection, 'hello world');
setTimeout(() => {
// the server closes the connection with the client
socketServer.close(connection);
}, 1000);
});
Expand All @@ -55,10 +58,33 @@ describe('WebsocketServer', () => {
};

setTimeout(() => {
expect(headers.host).toMatchSnapshot();
expect(data).toMatchSnapshot();
done();
}, 3000);
});

it('should receive client close event', (done) => {
let receivedClientClose = false;
socketServer.onConnection((connection) => {
socketServer.onConnectionClose(connection, () => {
receivedClientClose = true;
});
});

// eslint-disable-next-line new-cap
const client = new ws(`http://localhost:${port}/ws-server`);

setTimeout(() => {
// the client closes itself, the server does not close it
client.close();
}, 1000);

setTimeout(() => {
expect(receivedClientClose).toBeTruthy();
done();
}, 3000);
});
});

afterAll((done) => {
Expand Down
@@ -1,6 +1,8 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`SockJSServer server should recieve connection, send message, and close client 1`] = `
exports[`SockJSServer server should recieve connection, send message, and close client 1`] = `"localhost:8083"`;

exports[`SockJSServer server should recieve connection, send message, and close client 2`] = `
Array [
"open",
"hello world",
Expand Down
@@ -1,6 +1,8 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`WebsocketServer server should recieve connection, send message, and close client 1`] = `
exports[`WebsocketServer server should recieve connection, send message, and close client 1`] = `"localhost:8121"`;

exports[`WebsocketServer server should recieve connection, send message, and close client 2`] = `
Array [
"open",
"hello world",
Expand Down