Server: Capturing DNS exceptions
[KiwiIRC.git] / server / weblistener.js
CommitLineData
a8bf3ea4
JA
1var ws = require('socket.io'),
2 events = require('events'),
3 http = require('http'),
4 https = require('https'),
5 util = require('util'),
6 fs = require('fs'),
7 dns = require('dns'),
186531ed 8 url = require('url'),
f9ff7686 9 _ = require('lodash'),
1286229a
D
10 Client = require('./client.js').Client,
11 HttpHandler = require('./httphandler.js').HttpHandler,
f2fb32b7
D
12 rehash = require('./rehash.js'),
13 range_check = require('range_check');
1286229a
D
14
15
16
17rehash.on('rehashed', function (files) {
18 Client = require('./client.js').Client;
2f1e8a71 19 HttpHandler = require('./httphandler.js').HttpHandler;
1286229a
D
20});
21
186531ed
D
22
23// Instance of HttpHandler
24var http_handler;
25
a8bf3ea4 26
8b0eb787 27var WebListener = function (web_config, transports) {
71c81a3b 28 var hs, opts, ws_opts,
a8bf3ea4
JA
29 that = this;
30
71c81a3b 31
a8bf3ea4
JA
32 events.EventEmitter.call(this);
33
8b0eb787 34 http_handler = new HttpHandler(web_config);
a8bf3ea4 35
71c81a3b
D
36 // Standard options for the socket.io connections
37 ws_opts = {
38 'log level': 0,
39 'log colors': 0
40 };
41
42
8b0eb787 43 if (web_config.ssl) {
a8bf3ea4 44 opts = {
562ecbe0
PV
45 key: fs.readFileSync(web_config.ssl_key),
46 cert: fs.readFileSync(web_config.ssl_cert)
a8bf3ea4 47 };
186531ed 48
a8bf3ea4 49 // Do we have an intermediate certificate?
480552a2
D
50 if (typeof web_config.ssl_ca !== 'undefined') {
51 // An array of them?
52 if (typeof web_config.ssl_ca.map !== 'undefined') {
53 opts.ca = web_config.ssl_ca.map(function (f) { return fs.readFileSync(f); });
186531ed 54
480552a2
D
55 } else {
56 opts.ca = fs.readFileSync(web_config.ssl_ca);
57 }
58 }
186531ed
D
59
60 hs = https.createServer(opts, handleHttpRequest);
a8bf3ea4 61
186531ed 62 // Start socket.io listening on this weblistener
71c81a3b 63 this.ws = ws.listen(hs, _.extend({ssl: true}, ws_opts));
e380bc9e
D
64 hs.listen(web_config.port, web_config.address, function () {
65 that.emit('listening');
66 });
a8bf3ea4 67 } else {
186531ed 68
a8bf3ea4 69 // Start some plain-text server up
186531ed
D
70 hs = http.createServer(handleHttpRequest);
71
72 // Start socket.io listening on this weblistener
71c81a3b 73 this.ws = ws.listen(hs, _.extend({ssl: false}, ws_opts));
e380bc9e
D
74 hs.listen(web_config.port, web_config.address, function () {
75 that.emit('listening');
76 });
a8bf3ea4 77 }
d558508c
JA
78
79 hs.on('error', function (err) {
80 that.emit('error', err);
81 })
a8bf3ea4 82
a8bf3ea4
JA
83 this.ws.enable('browser client minification');
84 this.ws.enable('browser client etag');
85 this.ws.set('transports', transports);
b737610b 86 this.ws.set('resource', (global.config.http_base_path || '') + '/transport');
a8bf3ea4 87
c6e3ed44
D
88 this.ws.of('/kiwi').authorization(authoriseConnection)
89 .on('connection', function () {
90 newConnection.apply(that, arguments);
91 }
92 );
a8bf3ea4
JA
93 this.ws.of('/kiwi').on('error', console.log);
94};
95util.inherits(WebListener, events.EventEmitter);
96
186531ed
D
97
98
99function handleHttpRequest(request, response) {
100 var uri = url.parse(request.url, true);
101
102 // If this isn't a socket.io request, pass it onto the http handler
103 if (uri.pathname.substr(0, 10) !== '/socket.io') {
104 http_handler.serve(request, response);
105 }
106}
107
a8bf3ea4 108
15fefff7
D
109/**
110 * Get the reverse DNS entry for this connection.
111 * Used later on for webirc, etc functionality
112 */
772a4bb6 113function authoriseConnection(handshakeData, callback) {
c6e3ed44
D
114 var address = handshakeData.address.address;
115
116 // If a forwarded-for header is found, switch the source address
f2fb32b7 117 if (handshakeData.headers[global.config.http_proxy_ip_header || 'x-forwarded-for']) {
c6e3ed44 118 // Check we're connecting from a whitelisted proxy
f2fb32b7 119 if (!global.config.http_proxies || !range_check.in_range(address, global.config.http_proxies)) {
c6e3ed44
D
120 console.log('Unlisted proxy:', address);
121 callback(null, false);
122 return;
123 }
124
125 // We're sent from a whitelisted proxy, replace the hosts
126 address = handshakeData.headers['x-forwarded-for'];
127 }
128
c36ed4eb
JA
129 handshakeData.real_address = address;
130
13d7faa3 131 // If enabled, don't go over the connection limit
b737610b
JA
132 if (global.config.max_client_conns && global.config.max_client_conns > 0) {
133 if (global.clients.numOnAddress(address) + 1 > global.config.max_client_conns) {
13d7faa3
D
134 return callback(null, false);
135 }
c36ed4eb 136 }
be481108
D
137
138
139 try {
140 dns.reverse(address, function (err, domains) {
141 if (err || domains.length === 0) {
142 handshakeData.revdns = address;
143 } else {
144 handshakeData.revdns = _.first(domains) || address;
145 }
146
147 // All is well, authorise the connection
148 callback(null, true);
149 });
150 } catch (err) {
151 handshakeData.revdns = address;
a8bf3ea4 152 callback(null, true);
be481108 153 }
15fefff7 154}
a8bf3ea4 155
772a4bb6 156function newConnection(websocket) {
c36ed4eb
JA
157 var client, that = this;
158 client = new Client(websocket);
57566ca2
D
159 client.on('dispose', function () {
160 that.emit('client_dispose', this);
c36ed4eb
JA
161 });
162 this.emit('connection', client);
15fefff7 163}
186531ed
D
164
165
166
167
168
562ecbe0 169module.exports = WebListener;