d8bf8048f708464fb155b524ab8d41e1bfb9f84f
[KiwiIRC.git] / server / irc / connection.js
1 var net = require('net'),
2 tls = require('tls'),
3 util = require('util'),
4 dns = require('dns'),
5 _ = require('lodash'),
6 EventBinder = require('./eventbinder.js'),
7 IrcServer = require('./server.js'),
8 IrcCommands = require('./commands.js'),
9 IrcChannel = require('./channel.js'),
10 IrcUser = require('./user.js'),
11 EE = require('../ee.js'),
12 iconv = require('iconv-lite'),
13 Socks;
14
15
16 // Break the Node.js version down into usable parts
17 var version_values = process.version.substr(1).split('.').map(function (item) {
18 return parseInt(item, 10);
19 });
20
21 // If we have a suitable Nodejs version, bring int he socks functionality
22 if (version_values[1] >= 10) {
23 Socks = require('socksjs');
24 }
25
26 var IrcConnection = function (hostname, port, ssl, nick, user, pass, state, con_num) {
27 var that = this;
28
29 EE.call(this,{
30 wildcard: true,
31 delimiter: ' '
32 });
33 this.setMaxListeners(0);
34
35 // Set the first configured encoding as the default encoding
36 this.encoding = global.config.default_encoding;
37
38 // Socket state
39 this.connected = false;
40
41 // IRCd write buffers (flood controll)
42 this.write_buffer = [];
43
44 // In process of writing the buffer?
45 this.writing_buffer = false;
46
47 // Max number of lines to write a second
48 this.write_buffer_lines_second = 2;
49
50 // If registeration with the IRCd has completed
51 this.registered = false;
52
53 // If we are in the CAP negotiation stage
54 this.cap_negotiation = true;
55
56 // User information
57 this.nick = nick;
58 this.user = user; // Contains users real hostname and address
59 this.username = this.nick.replace(/[^0-9a-zA-Z\-_.\/]/, '');
60 this.password = pass;
61
62 // State object
63 this.state = state;
64
65 // Connection ID in the state
66 this.con_num = con_num;
67
68 // IRC protocol handling
69 this.irc_commands = new IrcCommands(this);
70
71 // IrcServer object
72 this.server = new IrcServer(this, hostname, port);
73
74 // IrcUser objects
75 this.irc_users = Object.create(null);
76
77 // TODO: use `this.nick` instead of `'*'` when using an IrcUser per nick
78 this.irc_users[this.nick] = new IrcUser(this, '*');
79
80 // IrcChannel objects
81 this.irc_channels = Object.create(null);
82
83 // IRC connection information
84 this.irc_host = {hostname: hostname, port: port};
85 this.ssl = !(!ssl);
86
87 // SOCKS proxy details
88 // TODO: Wildcard matching of hostnames and/or CIDR ranges of IP addresses
89 if ((global.config.socks_proxy && global.config.socks_proxy.enabled) && ((global.config.socks_proxy.all) || (_.contains(global.config.socks_proxy.proxy_hosts, this.irc_host.hostname)))) {
90 this.socks = {
91 host: global.config.socks_proxy.address,
92 port: global.config.socks_proxy.port,
93 user: global.config.socks_proxy.user,
94 pass: global.config.socks_proxy.pass
95 };
96 } else {
97 this.socks = false;
98 }
99
100 // Options sent by the IRCd
101 this.options = Object.create(null);
102 this.cap = {requested: [], enabled: []};
103
104 // Is SASL supported on the IRCd
105 this.sasl = false;
106
107 // Buffers for data sent from the IRCd
108 this.hold_last = false;
109 this.held_data = '';
110
111 this.applyIrcEvents();
112 };
113 util.inherits(IrcConnection, EE);
114
115 module.exports.IrcConnection = IrcConnection;
116
117
118
119 IrcConnection.prototype.applyIrcEvents = function () {
120 // Listen for events on the IRC connection
121 this.irc_events = {
122 'server * connect': onServerConnect,
123 'channel * join': onChannelJoin,
124
125 // TODO: uncomment when using an IrcUser per nick
126 //'user:*:privmsg': onUserPrivmsg,
127 'user * nick': onUserNick,
128 'channel * part': onUserParts,
129 'channel * quit': onUserParts,
130 'channel * kick': onUserKick
131 };
132
133 EventBinder.bindIrcEvents('', this.irc_events, this, this);
134 };
135
136
137 /**
138 * Start the connection to the IRCd
139 */
140 IrcConnection.prototype.connect = function () {
141 var that = this;
142
143 // The socket connect event to listener for
144 var socket_connect_event_name = 'connect';
145
146 // The destination address
147 var dest_addr = this.socks ?
148 this.socks.host :
149 this.irc_host.hostname;
150
151 // Make sure we don't already have an open connection
152 this.disposeSocket();
153
154 // Get the IP family for the dest_addr (either socks or IRCd destination)
155 getConnectionFamily(dest_addr, function getConnectionFamilyCb(err, family, host) {
156 var outgoing;
157
158 // Decide which net. interface to make the connection through
159 if (global.config.outgoing_address) {
160 if ((family === 'IPv6') && (global.config.outgoing_address.IPv6)) {
161 outgoing = global.config.outgoing_address.IPv6;
162 } else {
163 outgoing = global.config.outgoing_address.IPv4 || '0.0.0.0';
164
165 // We don't have an IPv6 interface but dest_addr may still resolve to
166 // an IPv4 address. Reset `host` and try connecting anyway, letting it
167 // fail if an IPv4 resolved address is not found
168 host = dest_addr;
169 }
170
171 } else {
172 // No config was found so use the default
173 outgoing = '0.0.0.0';
174 }
175
176 // Are we connecting through a SOCKS proxy?
177 if (this.socks) {
178 that.socket = Socks.connect({
179 host: host,
180 port: that.irc_host.port,
181 ssl: that.ssl,
182 rejectUnauthorized: global.config.reject_unauthorised_certificates
183 }, {host: that.socks.host,
184 port: that.socks.port,
185 user: that.socks.user,
186 pass: that.socks.pass,
187 localAddress: outgoing
188 });
189
190 } else {
191 // No socks connection, connect directly to the IRCd
192
193 if (that.ssl) {
194 that.socket = tls.connect({
195 host: host,
196 port: that.irc_host.port,
197 rejectUnauthorized: global.config.reject_unauthorised_certificates,
198 localAddress: outgoing
199 });
200
201 socket_connect_event_name = 'secureConnect';
202
203 } else {
204 that.socket = net.connect({
205 host: host,
206 port: that.irc_host.port,
207 localAddress: outgoing
208 });
209 }
210 }
211
212 // Apply the socket listeners
213 that.socket.on(socket_connect_event_name, function socketConnectCb() {
214
215 // SSL connections have the actual socket as a property
216 var socket = (typeof this.socket !== 'undefined') ?
217 this.socket :
218 this;
219
220 that.connected = true;
221
222 // Make note of the port numbers for any identd lookups
223 // Nodejs < 0.9.6 has no socket.localPort so check this first
224 if (socket.localPort) {
225 that.identd_port_pair = socket.localPort.toString() + '_' + socket.remotePort.toString();
226 global.clients.port_pairs[that.identd_port_pair] = that;
227 }
228
229 socketConnectHandler.call(that);
230 });
231
232 that.socket.on('error', function socketErrorCb(event) {
233 that.emit('error', event);
234 });
235
236 that.socket.on('data', function () {
237 parse.apply(that, arguments);
238 });
239
240 that.socket.on('close', function socketCloseCb(had_error) {
241 that.connected = false;
242
243 // Remove this socket form the identd lookup
244 if (that.identd_port_pair) {
245 delete global.clients.port_pairs[that.identd_port_pair];
246 }
247
248 that.emit('close');
249
250 // Close the whole socket down
251 that.disposeSocket();
252 });
253 });
254 };
255
256 /**
257 * Send an event to the client
258 */
259 IrcConnection.prototype.clientEvent = function (event_name, data, callback) {
260 data.server = this.con_num;
261 this.state.sendIrcCommand(event_name, data, callback);
262 };
263
264 /**
265 * Write a line of data to the IRCd
266 * @param data The line of data to be sent
267 * @param force Write the data now, ignoring any write queue
268 */
269 IrcConnection.prototype.write = function (data, force) {
270 //ENCODE string to encoding of the server
271 encoded_buffer = iconv.encode(data + '\r\n', this.encoding);
272
273 if (force) {
274 this.socket.write(encoded_buffer);
275 return;
276 }
277
278 this.write_buffer.push(encoded_buffer);
279
280 // Only flush if we're not writing already
281 if (!this.writing_buffer)
282 this.flushWriteBuffer();
283 };
284
285
286
287 /**
288 * Flush the write buffer to the server in a throttled fashion
289 */
290 IrcConnection.prototype.flushWriteBuffer = function () {
291
292 // In case the socket closed between writing our queue.. clean up
293 if (!this.connected) {
294 this.write_buffer = [];
295 this.writing_buffer = false;
296 return;
297 }
298
299 this.writing_buffer = true;
300
301 // Disabled write buffer? Send everything we have
302 if (!this.write_buffer_lines_second) {
303 this.write_buffer.forEach(function(buffer, idx) {
304 this.socket.write(buffer);
305 this.write_buffer = null;
306 });
307
308 this.write_buffer = [];
309 this.writing_buffer = false;
310
311 return;
312 }
313
314 // Nothing to write? Stop writing and leave
315 if (this.write_buffer.length === 0) {
316 this.writing_buffer = false;
317 return;
318 }
319
320 this.socket.write(this.write_buffer[0]);
321 this.write_buffer = this.write_buffer.slice(1);
322
323 // Call this function again at some point if we still have data to write
324 if (this.write_buffer.length > 0) {
325 setTimeout(this.flushWriteBuffer.bind(this), 1000 / this.write_buffer_lines_second);
326 } else {
327 // No more buffers to write.. so we've finished
328 this.writing_buffer = false;
329 }
330 };
331
332
333
334 /**
335 * Close the connection to the IRCd after forcing one last line
336 */
337 IrcConnection.prototype.end = function (data, callback) {
338 if (!this.socket)
339 return;
340
341 if (data)
342 this.write(data, true);
343
344 this.socket.end();
345 };
346
347
348
349 /**
350 * Clean up this IrcConnection instance and any sockets
351 */
352 IrcConnection.prototype.dispose = function () {
353 // If we're still connected, wait until the socket is closed before disposing
354 // so that all the events are still correctly triggered
355 if (this.socket && this.connected) {
356 this.end();
357 return;
358 }
359
360 if (this.socket) {
361 this.disposeSocket();
362 }
363
364 _.each(this.irc_users, function (user) {
365 user.dispose();
366 });
367 _.each(this.irc_channels, function (chan) {
368 chan.dispose();
369 });
370 this.irc_users = undefined;
371 this.irc_channels = undefined;
372
373 this.server.dispose();
374 this.server = undefined;
375
376 this.irc_commands = undefined;
377
378 EventBinder.unbindIrcEvents('', this.irc_events, this);
379
380 this.removeAllListeners();
381 };
382
383
384
385 /**
386 * Clean up any sockets for this IrcConnection
387 */
388 IrcConnection.prototype.disposeSocket = function () {
389 if (this.socket) {
390 this.socket.end();
391 this.socket.removeAllListeners();
392 this.socket = null;
393 }
394 };
395
396 /**
397 * Set a new encoding for this connection
398 * Return true in case of success
399 */
400
401 IrcConnection.prototype.setEncoding = function (encoding) {
402 var encoded_test;
403
404 try {
405 encoded_test = iconv.encode("TEST", encoding);
406 //This test is done to check if this encoding also supports
407 //the ASCII charset required by the IRC protocols
408 //(Avoid the use of base64 or incompatible encodings)
409 if (encoded_test == "TEST") {
410 this.encoding = encoding;
411 return true;
412 }
413 return false;
414 } catch (err) {
415 return false;
416 }
417 };
418
419 function getConnectionFamily(host, callback) {
420 if (net.isIP(host)) {
421 if (net.isIPv4(host)) {
422 setImmediate(callback, null, 'IPv4', host);
423 } else {
424 setImmediate(callback, null, 'IPv6', host);
425 }
426 } else {
427 dns.resolve6(host, function resolve6Cb(err, addresses) {
428 if (!err) {
429 callback(null, 'IPv6', addresses[0]);
430 } else {
431 dns.resolve4(host, function resolve4Cb(err, addresses) {
432 if (!err) {
433 callback(null, 'IPv4',addresses[0]);
434 } else {
435 callback(err);
436 }
437 });
438 }
439 });
440 }
441 }
442
443
444 function onChannelJoin(event) {
445 var chan;
446
447 // Only deal with ourselves joining a channel
448 if (event.nick !== this.nick)
449 return;
450
451 // We should only ever get a JOIN command for a channel
452 // we're not already a member of.. but check we don't
453 // have this channel in case something went wrong somewhere
454 // at an earlier point
455 if (!this.irc_channels[event.channel]) {
456 chan = new IrcChannel(this, event.channel);
457 this.irc_channels[event.channel] = chan;
458 chan.irc_events.join.call(chan, event);
459 }
460 }
461
462
463 function onServerConnect(event) {
464 this.nick = event.nick;
465 }
466
467
468 function onUserPrivmsg(event) {
469 var user;
470
471 // Only deal with messages targetted to us
472 if (event.channel !== this.nick)
473 return;
474
475 if (!this.irc_users[event.nick]) {
476 user = new IrcUser(this, event.nick);
477 this.irc_users[event.nick] = user;
478 user.irc_events.privmsg.call(user, event);
479 }
480 }
481
482
483 function onUserNick(event) {
484 var user;
485
486 // Only deal with messages targetted to us
487 if (event.nick !== this.nick)
488 return;
489
490 this.nick = event.newnick;
491 }
492
493
494 function onUserParts(event) {
495 // Only deal with ourselves leaving a channel
496 if (event.nick !== this.nick)
497 return;
498
499 if (this.irc_channels[event.channel]) {
500 this.irc_channels[event.channel].dispose();
501 delete this.irc_channels[event.channel];
502 }
503 }
504
505 function onUserKick(event){
506 // Only deal with ourselves being kicked from a channel
507 if (event.kicked !== this.nick)
508 return;
509
510 if (this.irc_channels[event.channel]) {
511 this.irc_channels[event.channel].dispose();
512 delete this.irc_channels[event.channel];
513 }
514
515 }
516
517
518
519
520 /**
521 * Handle the socket connect event, starting the IRCd registration
522 */
523 var socketConnectHandler = function () {
524 var that = this,
525 connect_data;
526
527 // Build up data to be used for webirc/etc detection
528 connect_data = {
529 connection: this,
530
531 // Array of lines to be sent to the IRCd before anything else
532 prepend_data: []
533 };
534
535 // Let the webirc/etc detection modify any required parameters
536 connect_data = findWebIrc.call(this, connect_data);
537
538 global.modules.emit('irc authorize', connect_data).done(function ircAuthorizeCb() {
539 // Send any initial data for webirc/etc
540 if (connect_data.prepend_data) {
541 _.each(connect_data.prepend_data, function(data) {
542 that.write(data);
543 });
544 }
545
546 that.write('CAP LS');
547
548 if (that.password)
549 that.write('PASS ' + that.password);
550
551 that.write('NICK ' + that.nick);
552 that.write('USER ' + that.username + ' 0 0 :' + '[www.kiwiirc.com] ' + that.nick);
553
554 that.emit('connected');
555 });
556 };
557
558
559
560 /**
561 * Load any WEBIRC or alternative settings for this connection
562 * Called in scope of the IrcConnection instance
563 */
564 function findWebIrc(connect_data) {
565 var webirc_pass = global.config.webirc_pass,
566 ip_as_username = global.config.ip_as_username,
567 tmp;
568
569
570 // Do we have a WEBIRC password for this?
571 if (webirc_pass && webirc_pass[this.irc_host.hostname]) {
572 // Build the WEBIRC line to be sent before IRC registration
573 tmp = 'WEBIRC ' + webirc_pass[this.irc_host.hostname] + ' KiwiIRC ';
574 tmp += this.user.hostname + ' ' + this.user.address;
575
576 connect_data.prepend_data = [tmp];
577 }
578
579
580 // Check if we need to pass the users IP as its username/ident
581 if (ip_as_username && ip_as_username.indexOf(this.irc_host.hostname) > -1) {
582 // Get a hex value of the clients IP
583 this.username = this.user.address.split('.').map(function ipSplitMapCb(i, idx){
584 var hex = parseInt(i, 10).toString(16);
585
586 // Pad out the hex value if it's a single char
587 if (hex.length === 1)
588 hex = '0' + hex;
589
590 return hex;
591 }).join('');
592
593 }
594
595 return connect_data;
596 }
597
598
599
600 /**
601 * The regex that parses a line of data from the IRCd
602 * Deviates from the RFC a little to support the '/' character now used in some
603 * IRCds
604 */
605 var parse_regex = /^(?:(?:(?:(@[^ ]+) )?):(?:([a-z0-9\x5B-\x60\x7B-\x7D\.\-*]+)|([a-z0-9\x5B-\x60\x7B-\x7D\.\-*]+)!([^\x00\r\n\ ]+?)@?([a-z0-9\.\-:\/_]+)?) )?(\S+)(?: (?!:)(.+?))?(?: :(.+))?$/i;
606
607 var parse = function (data) {
608 var i,
609 msg,
610 msg2,
611 trm,
612 j,
613 tags = [],
614 tag;
615
616 //DECODE server encoding
617 data = iconv.decode(data, this.encoding);
618
619 if (this.hold_last && this.held_data !== '') {
620 data = this.held_data + data;
621 this.hold_last = false;
622 this.held_data = '';
623 }
624
625 // If the last line is incomplete, hold it until we have more data
626 if (data.substr(-1) !== '\n') {
627 this.hold_last = true;
628 }
629
630 // Process our data line by line
631 data = data.split("\n");
632 for (i = 0; i < data.length; i++) {
633 if (!data[i]) break;
634
635 // If flagged to hold the last line, store it and move on
636 if (this.hold_last && (i === data.length - 1)) {
637 this.held_data = data[i];
638 break;
639 }
640
641 // Parse the complete line, removing any carriage returns
642 msg = parse_regex.exec(data[i].replace(/^\r+|\r+$/, ''));
643
644 if (msg) {
645 if (msg[1]) {
646 tags = msg[1].split(';');
647 for (j = 0; j < tags.length; j++) {
648 tag = tags[j].split('=');
649 tags[j] = {tag: tag[0], value: tag[1]};
650 }
651 }
652 msg = {
653 tags: tags,
654 prefix: msg[2],
655 nick: msg[3],
656 ident: msg[4],
657 hostname: msg[5] || '',
658 command: msg[6],
659 params: msg[7] || '',
660 trailing: (msg[8]) ? msg[8].trim() : ''
661 };
662 msg.params = msg.params.split(' ');
663 this.irc_commands.dispatch(msg.command.toUpperCase(), msg);
664 } else {
665 // The line was not parsed correctly, must be malformed
666 console.log("Malformed IRC line: " + data[i].replace(/^\r+|\r+$/, ''));
667 }
668 }
669 };