/* * IRC - Internet Relay Chat, src/modules/m_pass.c * (C) 2004 The UnrealIRCd Team * * See file AUTHORS in IRC package for additional names of * the programmers. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 1, or (at your option) * any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include "config.h" #include "struct.h" #include "common.h" #include "sys.h" #include "numeric.h" #include "msg.h" #include "proto.h" #include "channel.h" #include #include #include #include #include #ifdef _WIN32 #include #else #include #endif #include "inet.h" #include #include "h.h" #ifdef _WIN32 #include "version.h" #endif CMD_FUNC(m_pass); extern MODVAR char zlinebuf[BUFSIZE]; #define MSG_PASS "PASS" ModuleHeader MOD_HEADER(m_pass) = { "m_pass", "4.0", "command /pass", "3.2-b8-1", NULL }; /* Forward declarations */ DLLFUNC int _check_banned(aClient *cptr); MOD_TEST(m_pass) { MARK_AS_OFFICIAL_MODULE(modinfo); EfunctionAdd(modinfo->handle, EFUNC_CHECK_BANNED, _check_banned); return MOD_SUCCESS; } MOD_INIT(m_pass) { CommandAdd(modinfo->handle, MSG_PASS, m_pass, 1, M_UNREGISTERED|M_USER|M_SERVER); MARK_AS_OFFICIAL_MODULE(modinfo); return MOD_SUCCESS; } MOD_LOAD(m_pass) { return MOD_SUCCESS; } MOD_UNLOAD(m_pass) { return MOD_SUCCESS; } /** Handles zlines/gzlines/throttling/unknown connections */ DLLFUNC int _check_banned(aClient *cptr) { int i, j; aTKline *tk; aClient *acptr, *acptr2; ConfigItem_ban *bconf; j = 1; if ((bconf = Find_ban(cptr, NULL, CONF_BAN_IP))) { ircsnprintf(zlinebuf, BUFSIZE, "You are not welcome on this server: %s. Email %s for more information.", bconf->reason ? bconf->reason : "no reason", KLINE_ADDRESS); return exit_client(cptr, cptr, &me, zlinebuf); } else if (find_tkline_match_zap_ex(cptr, &tk) != -1) { ircsnprintf(zlinebuf, BUFSIZE, "Z:Lined (%s)", tk->reason); return exit_client(cptr, cptr, &me, zlinebuf); } else { int val; if (!(val = throttle_can_connect(cptr))) { ircsnprintf(zlinebuf, BUFSIZE, "Throttled: Reconnecting too fast - Email %s for more information.", KLINE_ADDRESS); return exit_client(cptr, cptr, &me, zlinebuf); } else if (val == 1) add_throttling_bucket(cptr); } return 0; } /*************************************************************************** * m_pass() - Added Sat, 4 March 1989 ***************************************************************************/ /* ** m_pass ** parv[1] = password */ CMD_FUNC(m_pass) { char *password = parc > 1 ? parv[1] : NULL; int PassLen = 0; if (BadPtr(password)) { sendto_one(cptr, err_str(ERR_NEEDMOREPARAMS), me.name, sptr->name, "PASS"); return 0; } if (!MyConnect(sptr) || (!IsUnknown(cptr) && !IsHandshake(cptr))) { sendto_one(cptr, err_str(ERR_ALREADYREGISTRED), me.name, sptr->name); return 0; } PassLen = strlen(password); if (cptr->local->passwd) MyFree(cptr->local->passwd); if (PassLen > (PASSWDLEN)) PassLen = PASSWDLEN; cptr->local->passwd = MyMalloc(PassLen + 1); strlcpy(cptr->local->passwd, password, PassLen + 1); /* note: the original non-truncated password is supplied as 2nd parameter. */ RunHookReturnInt2(HOOKTYPE_LOCAL_PASS, sptr, password, !=0); return 0; }