irc.cpp 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600
  1. #include "irc.h"
  2. #include <boost/algorithm/string.hpp>
  3. #include <iostream>
  4. void string_toupper(std::string &str) {
  5. std::transform(str.begin(), str.end(), str.begin(), ::toupper);
  6. }
  7. /**
  8. * @brief remove channel modes (op,voice,hop,...)
  9. *
  10. * @param nick
  11. */
  12. void remove_channel_modes(std::string &nick) {
  13. // ~&@%+
  14. std::string remove("~&@%+");
  15. std::string::size_type pos;
  16. do {
  17. pos = remove.find(nick[0]);
  18. if (pos != std::string::npos)
  19. nick.erase(0, 1);
  20. } while (pos != std::string::npos);
  21. }
  22. /**
  23. * @brief split on spaces, with limit
  24. *
  25. * max is the maximum number of splits we will do.
  26. * default -1 is split all.
  27. *
  28. * "this is a test", 3 => [this][is][a test]
  29. *
  30. * @param text
  31. * @param max
  32. * @return std::vector<std::string>
  33. */
  34. std::vector<std::string> split_limit(std::string &text, int max) {
  35. std::vector<std::string> ret;
  36. int t = 0;
  37. boost::split(ret, text, [&t, max](char c) {
  38. if (c == ' ') {
  39. ++t;
  40. return ((max == -1) or (t < max));
  41. };
  42. return false;
  43. });
  44. return ret;
  45. }
  46. /**
  47. * @brief irc split
  48. *
  49. * If it doesn't start with a ':', split into two parts.
  50. * Otherwise 4 parts
  51. * [from] [command] [to] [message]
  52. *
  53. * @param text
  54. * @return std::vector<std::string>
  55. */
  56. std::vector<std::string> irc_split(std::string &text) {
  57. size_t msgpos = text.find(" :");
  58. std::string message;
  59. if (msgpos != std::string::npos) {
  60. message = text.substr(msgpos + 2);
  61. text.erase(msgpos);
  62. }
  63. std::vector<std::string> results;
  64. /*
  65. if (text[0] != ':')
  66. results = split_limit(text, 2);
  67. results = split_limit(text, 4);
  68. */
  69. results = split_limit(text, -1);
  70. if (!message.empty())
  71. results.push_back(message);
  72. return results;
  73. }
  74. /**
  75. * @brief parse_nick
  76. *
  77. * Parse out the nick from nick!username@host
  78. *
  79. * @param name
  80. * @return std::string
  81. */
  82. std::string parse_nick(std::string &name) {
  83. std::string to = name;
  84. if (to[0] == ':')
  85. to.erase(0, 1);
  86. size_t pos = to.find('!');
  87. if (pos != std::string::npos) {
  88. to.erase(pos);
  89. }
  90. return to;
  91. }
  92. // namespace io = boost::asio;
  93. // namespace ip = io::ip;
  94. // using tcp = boost::asio::ip; // ip::tcp;
  95. using error_code = boost::system::error_code;
  96. using namespace std::placeholders;
  97. // #define DEBUG_OUTPUT
  98. typedef std::function<void(std::string &)> receiveFunction;
  99. ircClient::ircClient(boost::asio::io_context &io_context)
  100. : resolver{io_context}, ssl_context{boost::asio::ssl::context::tls},
  101. socket{io_context, ssl_context}, context{io_context} {
  102. registered = false;
  103. nick_retry = 1;
  104. shutdown = false;
  105. logging = false;
  106. channels_updated = false;
  107. }
  108. std::ofstream &ircClient::log(void) {
  109. std::time_t t = std::time(nullptr);
  110. std::tm tm = *std::localtime(&t);
  111. debug_file << std::put_time(&tm, "%c ");
  112. return debug_file;
  113. }
  114. void ircClient::begin(void) {
  115. original_nick = nick;
  116. resolver.async_resolve(hostname, port,
  117. std::bind(&ircClient::on_resolve, this, _1, _2));
  118. if (!debug_output.empty()) {
  119. debug_file.open(debug_output.c_str(),
  120. std::ofstream::out | std::ofstream::app);
  121. logging = true;
  122. }
  123. }
  124. void ircClient::write(std::string output) {
  125. if (logging) {
  126. log() << "<< " << output << std::endl;
  127. }
  128. error_code error;
  129. socket.write_some(boost::asio::buffer(output + "\r\n"), error);
  130. if (error) {
  131. if (logging) {
  132. log() << "Write: " << error.message() << std::endl;
  133. }
  134. }
  135. }
  136. /**
  137. * @brief thread safe messages.push_back
  138. *
  139. * @param msg
  140. */
  141. void ircClient::message_append(message_stamp &msg) {
  142. lock.lock();
  143. messages.push_back(msg);
  144. channels_updated = true;
  145. lock.unlock();
  146. }
  147. /**
  148. * @brief thread safe message_stamp pop
  149. *
  150. * @return boost::optional<message_stamp>
  151. */
  152. boost::optional<message_stamp> ircClient::message_pop(void) {
  153. lock.lock();
  154. message_stamp msg;
  155. if (messages.empty()) {
  156. channels_updated = false;
  157. lock.unlock();
  158. return boost::optional<message_stamp>{};
  159. }
  160. msg = messages.front();
  161. messages.erase(messages.begin());
  162. lock.unlock();
  163. return msg;
  164. }
  165. void ircClient::on_resolve(
  166. error_code error, boost::asio::ip::tcp::resolver::results_type results) {
  167. if (logging) {
  168. log() << "Resolve: " << error.message() << std::endl;
  169. }
  170. if (error) {
  171. std::string output = "Unable to resolve (DNS Issue?): " + error.message();
  172. errors.push_back(output);
  173. message(output);
  174. socket.async_shutdown(std::bind(&ircClient::on_shutdown, this, _1));
  175. }
  176. boost::asio::async_connect(socket.next_layer(), results,
  177. std::bind(&ircClient::on_connect, this, _1, _2));
  178. }
  179. void ircClient::on_connect(error_code error,
  180. boost::asio::ip::tcp::endpoint const &endpoint) {
  181. if (logging) {
  182. log() << "Connect: " << error.message() << ", endpoint: " << endpoint
  183. << std::endl;
  184. }
  185. if (error) {
  186. std::string output = "Unable to connect: " + error.message();
  187. message(output);
  188. errors.push_back(output);
  189. socket.async_shutdown(std::bind(&ircClient::on_shutdown, this, _1));
  190. }
  191. socket.async_handshake(boost::asio::ssl::stream_base::client,
  192. std::bind(&ircClient::on_handshake, this, _1));
  193. }
  194. void ircClient::on_handshake(error_code error) {
  195. if (logging) {
  196. log() << "Handshake: " << error.message() << std::endl;
  197. }
  198. if (error) {
  199. std::string output = "Handshake Failure: " + error.message();
  200. message(output);
  201. errors.push_back(output);
  202. socket.async_shutdown(std::bind(&ircClient::on_shutdown, this, _1));
  203. }
  204. std::string request = registration();
  205. boost::asio::async_write(socket, boost::asio::buffer(request),
  206. std::bind(&ircClient::on_write, this, _1, _2));
  207. // socket.async_shutdown(std::bind(&ircClient::on_shutdown, this, _1));
  208. }
  209. void ircClient::on_write(error_code error, std::size_t bytes_transferred) {
  210. if ((error) and (logging)) {
  211. log() << "Write: " << error.message() << std::endl;
  212. }
  213. // << ", bytes transferred: " << bytes_transferred << "\n";
  214. boost::asio::async_read_until(
  215. socket, response, '\n', std::bind(&ircClient::read_until, this, _1, _2));
  216. }
  217. void ircClient::on_shutdown(error_code error) {
  218. if (logging) {
  219. log() << "SHUTDOWN: " << error.message() << std::endl;
  220. }
  221. shutdown = true;
  222. context.stop();
  223. }
  224. void ircClient::read_until(error_code error, std::size_t bytes) {
  225. // std::cout << "Read: " << bytes << ", " << error << "\n";
  226. // auto data = response.data();
  227. if (bytes == 0) {
  228. if (logging) {
  229. log() << "Read 0 bytes, shutdown..." << std::endl;
  230. }
  231. socket.async_shutdown(std::bind(&ircClient::on_shutdown, this, _1));
  232. return;
  233. };
  234. // Only try to get the data -- if we're read some bytes.
  235. auto data = response.data();
  236. response.consume(bytes);
  237. std::string text{(const char *)data.data(), bytes};
  238. while ((text[text.size() - 1] == '\r') or (text[text.size() - 1] == '\n'))
  239. text.erase(text.size() - 1);
  240. receive(text);
  241. // repeat until closed
  242. boost::asio::async_read_until(
  243. socket, response, '\n', std::bind(&ircClient::read_until, this, _1, _2));
  244. }
  245. /**
  246. * @brief Append a system message to the messages.
  247. *
  248. * @param msg
  249. */
  250. void ircClient::message(std::string msg) {
  251. message_stamp ms;
  252. ms.buffer.push_back(msg);
  253. message_append(ms);
  254. }
  255. void ircClient::receive(std::string &text) {
  256. message_stamp ms;
  257. ms.buffer = irc_split(text);
  258. std::vector<std::string> &parts = ms.buffer;
  259. if (logging) {
  260. // this also shows our parser working
  261. std::ofstream &l = log();
  262. l << ">> ";
  263. for (auto &s : parts) {
  264. l << "[" << s << "] ";
  265. }
  266. l << std::endl;
  267. }
  268. // INTERNAL IRC PARSING/TRACKING
  269. if (parts.size() == 2) {
  270. // hide PING / PONG messages
  271. if (parts[0] == "PING") {
  272. std::string output = "PONG " + parts[1];
  273. write(output);
  274. return;
  275. }
  276. }
  277. if (parts.size() >= 3) {
  278. std::string source = parse_nick(parts[0]);
  279. std::string &cmd = parts[1];
  280. std::string &msg_to = parts[2];
  281. std::string msg;
  282. if (parts.size() >= 4) {
  283. msg = parts[parts.size() - 1];
  284. }
  285. if (logging) {
  286. // this also shows our parser working
  287. std::ofstream &l = log();
  288. l << "IRC: [SRC:" << source << "] [CMD:" << cmd << "] [TO:" << msg_to
  289. << "] [MSG:" << msg << "]" << std::endl;
  290. }
  291. if (cmd == "JOIN") {
  292. channels_lock.lock();
  293. if (nick == source) {
  294. // yes, we are joining
  295. std::string output = "You have joined " + msg_to;
  296. message(output);
  297. talkto(msg_to);
  298. // insert empty set here.
  299. std::set<std::string> empty;
  300. channels[msg_to] = empty;
  301. } else {
  302. // Someone else is joining
  303. std::string output = source + " has joined " += msg_to;
  304. message(output);
  305. channels[msg_to].insert(source);
  306. if ((int)source.size() > max_nick_length)
  307. max_nick_length = (int)source.size();
  308. }
  309. channels_lock.unlock();
  310. }
  311. if (cmd == "PART") {
  312. channels_lock.lock();
  313. if (nick == source) {
  314. std::string output = "You left " + msg_to;
  315. auto ch = channels.find(msg_to);
  316. if (ch != channels.end())
  317. channels.erase(ch);
  318. if (!channels.empty()) {
  319. talkto(channels.begin()->first);
  320. // output += " [talkto = " + talkto() + "]";
  321. } else {
  322. talkto("");
  323. }
  324. // message(output);
  325. } else {
  326. std::string output = source + " has left " + msg_to;
  327. if (!msg.empty()) {
  328. output += " " + msg;
  329. }
  330. message(output);
  331. channels[msg_to].erase(source);
  332. }
  333. find_max_nick_length();
  334. channels_lock.unlock();
  335. }
  336. if (cmd == "KICK") {
  337. std::string output =
  338. source + " has kicked " + parts[3] + " from " + msg_to;
  339. channels_lock.lock();
  340. if (parts[3] == nick) {
  341. channels.erase(msg_to);
  342. if (!channels.empty()) {
  343. talkto(channels.begin()->first);
  344. output += " [talkto = " + talkto() + "]";
  345. } else {
  346. talkto("");
  347. }
  348. } else {
  349. channels[msg_to].erase(parts[3]);
  350. }
  351. find_max_nick_length();
  352. channels_lock.unlock();
  353. message(output);
  354. }
  355. if (cmd == "QUIT") {
  356. std::string output = "* " + source + " has quit ";
  357. message(output);
  358. channels_lock.lock();
  359. if (source == nick) {
  360. // We've quit?
  361. channels.erase(channels.begin(), channels.end());
  362. } else {
  363. for (auto &c : channels) {
  364. c.second.erase(source);
  365. // would it be possible that channel is empty now?
  366. // no, because we're still in it.
  367. }
  368. find_max_nick_length();
  369. }
  370. channels_lock.unlock();
  371. }
  372. if (cmd == "353") {
  373. // NAMES list for channel
  374. std::vector<std::string> names_list = split_limit(msg);
  375. std::string channel = parts[4];
  376. channels_lock.lock();
  377. if (channels.find(channel) == channels.end()) {
  378. // does not exist
  379. channels.insert({channel, std::set<std::string>{}});
  380. }
  381. for (auto name : names_list) {
  382. remove_channel_modes(name);
  383. channels[channel].insert(name);
  384. }
  385. find_max_nick_length();
  386. channels_lock.unlock();
  387. }
  388. if (cmd == "NICK") {
  389. // msg_to.erase(0, 1);
  390. channels_lock.lock();
  391. for (auto &ch : channels) {
  392. if (ch.second.erase(source) == 1) {
  393. ch.second.insert(msg_to);
  394. }
  395. }
  396. // Is this us? If so, change our nick.
  397. if (source == nick)
  398. nick = msg_to;
  399. find_max_nick_length();
  400. channels_lock.unlock();
  401. }
  402. if (cmd == "PRIVMSG") {
  403. // Possibly a CTCP request. Let's see
  404. std::string message = msg;
  405. if ((message[0] == '\x01') and (message[message.size() - 1] == '\x01')) {
  406. // CTCP MESSAGE FOUND strip \x01's
  407. message.erase(0, 1);
  408. message.erase(message.size() - 1);
  409. std::vector<std::string> ctcp_cmd = split_limit(message, 2);
  410. if (ctcp_cmd[0] != "ACTION") {
  411. std::string msg =
  412. "Received CTCP " + ctcp_cmd[0] + " from " + parse_nick(source);
  413. this->message(msg);
  414. if (logging) {
  415. log() << "CTCP : [" << message << "] from " + parse_nick(source)
  416. << std::endl;
  417. }
  418. }
  419. if (message == "VERSION") {
  420. std::string reply_to = parse_nick(source);
  421. boost::format fmt =
  422. boost::format("NOTICE %1% :\x01VERSION Bugz IRC thing V0.1\x01") %
  423. reply_to;
  424. std::string response = fmt.str();
  425. write(response);
  426. return;
  427. }
  428. if (message.substr(0, 5) == "PING ") {
  429. message.erase(0, 5);
  430. boost::format fmt = boost::format("NOTICE %1% :\x01PING %2%\x01") %
  431. parse_nick(source) % message;
  432. std::string response = fmt.str();
  433. write(response);
  434. return;
  435. }
  436. if (message == "TIME") {
  437. auto now = std::chrono::system_clock::now();
  438. auto in_time_t = std::chrono::system_clock::to_time_t(now);
  439. std::string datetime = boost::lexical_cast<std::string>(
  440. std::put_time(std::localtime(&in_time_t), "%c"));
  441. boost::format fmt = boost::format("NOTICE %1% :\x01TIME %2%\x01") %
  442. parse_nick(source) % datetime;
  443. std::string response = fmt.str();
  444. write(response);
  445. return;
  446. }
  447. if (message.substr(0, 7) == "ACTION ") {
  448. message.erase(0, 7);
  449. parts[1] = "ACTION"; // change PRIVMSG to ACTION
  450. parts[3] = message;
  451. } else {
  452. // What should I do with unknown CTCP commands?
  453. // Unknown CTCP command. Eat it.
  454. return;
  455. }
  456. }
  457. }
  458. }
  459. // CTCP handler
  460. // NOTE: When sent to a channel, the response is sent to the sender.
  461. if (!registered) {
  462. // We're not registered yet
  463. if (parts[1] == "433") {
  464. // nick collision! Nick already in use
  465. if (nick == original_nick) {
  466. // try something basic
  467. nick += "_";
  468. std::string output = "NICK " + nick;
  469. write(output);
  470. return;
  471. } else {
  472. // Ok, go advanced
  473. nick = original_nick + "_" + std::to_string(nick_retry);
  474. ++nick_retry;
  475. std::string output = "NICK " + nick;
  476. write(output);
  477. return;
  478. }
  479. }
  480. if ((parts[1] == "376") or (parts[1] == "422")) {
  481. // END MOTD, or MOTD MISSING
  482. find_max_nick_length(); // start with ourself.
  483. registered = true;
  484. if (!autojoin.empty()) {
  485. std::string msg = "JOIN " + autojoin;
  486. write(msg);
  487. }
  488. }
  489. }
  490. if (parts[0] == "ERROR") {
  491. // we're outta here. :O
  492. // std::cout << "BANG!" << std::endl;
  493. }
  494. message_append(ms);
  495. // :FROM command TO :rest and ':' is optional
  496. // std::cout << text << "\n";
  497. }
  498. /**
  499. * @brief find max nick length
  500. *
  501. * This is for formatting the messages.
  502. * We run through the channels checking all the users,
  503. * and also checking our own nick.
  504. *
  505. * This updates \ref max_nick_length
  506. */
  507. void ircClient::find_max_nick_length(void) {
  508. int max = 0;
  509. for (auto const &ch : channels) {
  510. for (auto const &nick : ch.second) {
  511. if ((int)nick.size() > max)
  512. max = (int)nick.size();
  513. }
  514. }
  515. // check our nick against this too.
  516. if ((int)nick.size() > max)
  517. max = (int)nick.size();
  518. max_nick_length = max;
  519. }
  520. std::string ircClient::registration(void) {
  521. std::string text;
  522. text = "NICK " + nick + "\r\n" + "USER " + username + " 0 * :" + realname +
  523. "\r\n";
  524. return text;
  525. }