#include "core.h" IRCServer::IRCServer(Bouncer *_bouncer) : Server(_bouncer), bouncer(_bouncer), status(this) { } IRCServer::~IRCServer() { bouncer->deregisterWindow(&status); for (auto &i : channels) { bouncer->deregisterWindow(i.second); delete i.second; } for (auto &i : queries) { bouncer->deregisterWindow(i.second); delete i.second; } } void IRCServer::attachedToCore() { bouncer->registerWindow(&status); } void IRCServer::connect() { status.pushMessage("Connecting..."); Server::connect( config.hostname.c_str(), config.port, config.useTls); } void IRCServer::resetIRCState() { strcpy(currentNick, ""); strcpy(serverPrefix, "@+"); strcpy(serverPrefixMode, "ov"); } Channel *IRCServer::findChannel(const char *name, bool createIfNeeded) { std::map::iterator check = channels.find(name); if (check == channels.end()) { if (createIfNeeded) { Channel *c = new Channel(this, name); channels[name] = c; return c; } else { return 0; } } else { return check->second; } } Query *IRCServer::findQuery(const char *name, bool createIfNeeded) { std::map::iterator check = queries.find(name); if (check == queries.end()) { if (createIfNeeded) { Query *q = new Query(this, name); queries[name] = q; return q; } else { return 0; } } else { return check->second; } } void IRCServer::deleteQuery(Query *query) { auto i = queries.find(query->partner); if (i != queries.end()) { bouncer->deregisterWindow(query); queries.erase(i); delete query; } } void IRCServer::connectedEvent() { resetIRCState(); printf("[IRCServer:%p] connectedEvent\n", this); status.pushMessage("Connected, identifying to IRC..."); char buf[2048]; if (config.password.size() > 0) { sprintf(buf, "PASS %s", config.password.c_str()); sendLine(buf); } sprintf(buf, "USER %s 0 * :%s\r\nNICK %s", config.username.c_str(), config.realname.c_str(), config.nickname.c_str()); sendLine(buf); } void IRCServer::disconnectedEvent() { printf("[IRCServer:%p] disconnectedEvent\n", this); status.pushMessage("Disconnected."); for (auto &i : channels) i.second->disconnected(); } void IRCServer::lineReceivedEvent(char *line, int size) { printf("[%d] { %s }\n", size, line); status.pushMessage(line); // Process this line...! UserRef user; // Is there a prefix? if (line[0] == ':') { char nickBuf[512], identBuf[512], hostBuf[512]; int nickPos = 0, identPos = 0, hostPos = 0; int phase = 0; ++line; // skip colon while ((*line != ' ') && (*line != 0)) { if (phase == 0) { // Nick if (*line == '!') phase = 1; else if (*line == '@') phase = 2; else { if (nickPos < 511) nickBuf[nickPos++] = *line; } } else if (phase == 1) { // Ident if (*line == '@') phase = 2; else { if (identPos < 511) identBuf[identPos++] = *line; } } else if (phase == 2) { if (hostPos < 511) hostBuf[hostPos++] = *line; } ++line; } if (*line == 0) { // Invalid line. Can't parse this. return; } ++line; // skip the space nickBuf[nickPos] = 0; identBuf[identPos] = 0; hostBuf[hostPos] = 0; user.nick = nickBuf; user.ident = identBuf; user.hostmask = hostBuf; user.isValid = true; user.isSelf = (strcmp(nickBuf, currentNick) == 0); } // Get the command char cmdBuf[512]; int cmdPos = 0; while ((*line != ' ') && (*line != 0)) { if (cmdPos < 511) cmdBuf[cmdPos++] = *line; ++line; } cmdBuf[cmdPos] = 0; if (*line == 0) { // Invalid line. return; } ++line; // skip the space // Skip the : if there is one if (*line == ':') ++line; // Get the first param, or "target" in many cases char *allParams = line; char *paramsAfterFirst = line; char targetBuf[512]; int targetPos = 0; while ((*paramsAfterFirst != ' ') && (*paramsAfterFirst != 0)) { if (targetPos < 511) targetBuf[targetPos++] = *paramsAfterFirst; ++paramsAfterFirst; } targetBuf[targetPos] = 0; // If we didn't reach the end of the line, skip the space if (*paramsAfterFirst == ' ') ++paramsAfterFirst; // And if the params begin with :, skip it if (*paramsAfterFirst == ':') ++paramsAfterFirst; // Now figure out what to do with this...! if (strcmp(cmdBuf, "PING") == 0) { char out[512]; snprintf(out, 512, "PONG :%s", allParams); sendLine(out); return; } else if (strcmp(cmdBuf, "JOIN") == 0) { Channel *c = findChannel(targetBuf, true); if (c) { c->handleJoin(user); return; } } else if (strcmp(cmdBuf, "PART") == 0) { Channel *c = findChannel(targetBuf, false); if (c) { c->handlePart(user, paramsAfterFirst); return; } } else if (strcmp(cmdBuf, "QUIT") == 0) { for (auto &i : channels) i.second->handleQuit(user, allParams); if (Query *q = findQuery(user.nick.c_str(), false)) q->handleQuit(allParams); return; } else if (strcmp(cmdBuf, "KICK") == 0) { char *space = strchr(paramsAfterFirst, ' '); const char *kickMsg = ""; if (space) { *space = 0; kickMsg = space + 1; if (*kickMsg == ':') ++kickMsg; } Channel *c = findChannel(targetBuf, false); if (c) { c->handleKick(user, paramsAfterFirst, kickMsg); return; } } else if (strcmp(cmdBuf, "NICK") == 0) { if (user.isSelf) { strncpy(currentNick, allParams, sizeof(currentNick)); currentNick[sizeof(currentNick) - 1] = 0; char buf[1024]; snprintf(buf, 1024, "You are now known as %s", currentNick); status.pushMessage(buf); for (auto &it : queries) it.second->showNickChange(user, allParams); } if (Query *q = findQuery(user.nick.c_str(), false)) { if (!user.isSelf) q->showNickChange(user, allParams); // Should we *rename* the query window, or not? Query *check = findQuery(allParams, false); if (check) { // If we already have one with the destination // nick, we shouldn't replace it.. // ...but we should still show a notification there. if (!user.isSelf) check->showNickChange(user, allParams); } else { // We didn't have one, so it's safe to move! auto iter = queries.find(user.nick); queries.erase(iter); queries[allParams] = q; q->renamePartner(allParams); } } for (auto &i : channels) i.second->handleNick(user, allParams); return; } else if (strcmp(cmdBuf, "MODE") == 0) { Channel *c = findChannel(targetBuf, false); if (c) { c->handleMode(user, paramsAfterFirst); return; } } else if (strcmp(cmdBuf, "TOPIC") == 0) { Channel *c = findChannel(targetBuf, false); if (c) { c->handleTopic(user, paramsAfterFirst); return; } } else if (strcmp(cmdBuf, "PRIVMSG") == 0) { int endPos = strlen(paramsAfterFirst) - 1; bool requireQueryWindow = true; const char *ctcpType = NULL, *ctcpParams = NULL; if ((endPos > 0) && (paramsAfterFirst[0] == 1) && (paramsAfterFirst[endPos] == 1)) { // Try to parse a CTCP // Cut off the 01 char at the end paramsAfterFirst[endPos] = 0; // Split the string into type + params char *space = strchr(paramsAfterFirst, ' '); ctcpType = ¶msAfterFirst[1]; if (space) { *space = 0; ctcpParams = space + 1; } else { ctcpParams = ""; } if (strcmp(ctcpType, "ACTION") != 0) requireQueryWindow = false; // This needs to be extracted into a separate // method at some point if (strcmp(ctcpType, "VERSION") == 0) { char reply[1000]; snprintf(reply, sizeof(reply), "NOTICE %s :\x01VERSION boop:boop:boop\x01", user.nick.c_str()); sendLine(reply); } else if (strcmp(ctcpType, "PING") == 0) { char reply[1000]; snprintf(reply, sizeof(reply), "NOTICE %s :\x01PING %s\x01", user.nick.c_str(), ctcpParams); sendLine(reply); } else if (strcmp(ctcpType, "TIME") == 0) { char reply[1000], formatTime[200]; time_t now = time(NULL); tm *nowtm = localtime(&now); strftime(formatTime, sizeof(formatTime), "%c", nowtm); snprintf(reply, sizeof(reply), "NOTICE %s :\x01TIME :%s\x01", user.nick.c_str(), formatTime); sendLine(reply); } } if (strcmp(targetBuf, currentNick) == 0) { Query *q = findQuery(user.nick.c_str(), requireQueryWindow); if (q) { if (ctcpType) q->handleCtcp(ctcpType, ctcpParams); else q->handlePrivmsg(paramsAfterFirst); return; } else if (ctcpType) { // This CTCP didn't require a query window to be // open, and we don't already have one, so // dump a notification into the status window. char buf[1000]; snprintf(buf, sizeof(buf), "CTCP from %s : %s %s", user.nick.c_str(), ctcpType, ctcpParams); status.pushMessage(buf); return; } } else { Channel *c = findChannel(targetBuf, true); if (c) { if (ctcpType) c->handleCtcp(user, ctcpType, ctcpParams); else c->handlePrivmsg(user, paramsAfterFirst); return; } } } else if (strcmp(cmdBuf, "001") == 0) { status.pushMessage("[debug: currentNick change detected]"); strncpy(currentNick, targetBuf, sizeof(currentNick)); currentNick[sizeof(currentNick) - 1] = 0; return; } else if (strcmp(cmdBuf, "005") == 0) { processISupport(paramsAfterFirst); return; } else if (strcmp(cmdBuf, "331") == 0) { // RPL_NOTOPIC: // Params: Channel name, *maybe* text we can ignore char *space = strchr(paramsAfterFirst, ' '); if (space) *space = 0; Channel *c = findChannel(paramsAfterFirst, false); if (c) { c->handleTopic(UserRef(), ""); return; } } else if (strcmp(cmdBuf, "332") == 0) { // RPL_TOPIC: // Params: Channel name, text char *space = strchr(paramsAfterFirst, ' '); if (space) { *space = 0; char *topic = space + 1; if (*topic == ':') ++topic; Channel *c = findChannel(paramsAfterFirst, false); if (c) { c->handleTopic(UserRef(), topic); return; } } } else if (strcmp(cmdBuf, "333") == 0) { // Topic set char *strtok_var; char *chanName = strtok_r(paramsAfterFirst, " ", &strtok_var); char *setBy = strtok_r(NULL, " ", &strtok_var); char *when = strtok_r(NULL, " ", &strtok_var); if (chanName && setBy && when) { Channel *c = findChannel(chanName, false); if (c) { c->handleTopicInfo(setBy, atoi(when)); return; } } } else if (strcmp(cmdBuf, "353") == 0) { // RPL_NAMEREPLY: // Target is always us // Params: Channel privacy flag, channel, user list char *space1 = strchr(paramsAfterFirst, ' '); if (space1) { char *space2 = strchr(space1 + 1, ' '); if (space2) { char *chanName = space1 + 1; *space2 = 0; char *userNames = space2 + 1; if (*userNames == ':') ++userNames; Channel *c = findChannel(chanName, false); if (c) { c->handleNameReply(userNames); return; } } } } status.pushMessage("!! Unhandled !!"); } void IRCServer::processISupport(const char *line) { while (*line != 0) { char keyBuf[512], valueBuf[512]; int keyPos = 0, valuePos = 0; int phase = 0; // This means we've reached the end if (*line == ':') return; while ((*line != 0) && (*line != ' ')) { if (phase == 0) { if (*line == '=') phase = 1; else if (keyPos < 511) keyBuf[keyPos++] = *line; } else { if (valuePos < 511) valueBuf[valuePos++] = *line; } ++line; } if (*line == ' ') ++line; keyBuf[keyPos] = 0; valueBuf[valuePos] = 0; // Now process the thing if (strcmp(keyBuf, "PREFIX") == 0) { int prefixCount = (valuePos - 2) / 2; if (valueBuf[0] == '(' && valueBuf[1+prefixCount] == ')') { if (prefixCount < 32) { strncpy(serverPrefixMode, &valueBuf[1], prefixCount); strncpy(serverPrefix, &valueBuf[2+prefixCount], prefixCount); serverPrefixMode[prefixCount] = 0; serverPrefix[prefixCount] = 0; } } } else if (strcmp(keyBuf, "CHANMODES") == 0) { char *proc = &valueBuf[0]; for (int index = 0; index < 4; index++) { if (*proc == 0) break; char *start = proc; char *end = proc; while ((*end != ',') && (*end != 0)) ++end; // If this is a zero, we can't read any more bool endsHere = (*end == 0); *end = 0; serverChannelModes[index] = start; char moof[1000]; sprintf(moof, "set chanmodes %d to [%s]", index, serverChannelModes[index].c_str()); status.pushMessage(moof); if (endsHere) break; else proc = end + 1; } } } } uint32_t IRCServer::getUserFlag(char search, const char *array) const { uint32_t flag = 0x80000000; // Is this character a valid prefix? while (*array != 0) { if (*array == search) return flag; flag >>= 1; ++array; } } uint32_t IRCServer::getUserFlagByPrefix(char prefix) const { return getUserFlag(prefix, serverPrefix); } uint32_t IRCServer::getUserFlagByMode(char mode) const { return getUserFlag(mode, serverPrefixMode); } int IRCServer::getChannelModeType(char mode) const { for (int i = 0; i < 4; i++) { const char *modes = serverChannelModes[i].c_str(); while (*modes != 0) { if (*modes == mode) return i + 1; ++modes; } } return 0; } char IRCServer::getEffectivePrefixChar(uint32_t modes) const { uint32_t flag = 0x80000000; const char *prefixes = serverPrefix; while (*prefixes != 0) { if (modes & flag) return *prefixes; ++prefixes; flag >>= 1; } return 0; } void IRCServer::loadFromConfig(std::map &data) { config.hostname = data["hostname"]; config.username = data["username"]; config.realname = data["realname"]; config.nickname = data["nickname"]; config.altNick = data["altnick"]; config.password = data["password"]; config.useTls = (data["tls"] == "y"); config.port = atoi(data["port"].c_str()); } void IRCServer::saveToConfig(std::map &data) { data["type"] = "IRCServer"; data["hostname"] = config.hostname; data["username"] = config.username; data["realname"] = config.realname; data["nickname"] = config.nickname; data["altnick"] = config.altNick; data["password"] = config.password; data["tls"] = config.useTls ? "y" : "n"; char portstr[50]; snprintf(portstr, sizeof(portstr), "%d", config.port); data["port"] = portstr; }