mirror of
https://github.com/unrealircd/unrealircd.git
synced 2026-07-07 22:03:13 +02:00
ab5e766d9c
This was done using Coccinelle, the semantic patch was: @@ expression src, dst, len; @@ - strncpyzt(src, dst, len); + strlcpy(src, dst, len);
469 lines
11 KiB
C
469 lines
11 KiB
C
/*
|
|
* IRC - Internet Relay Chat, src/modules/m_protoctl.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 <time.h>
|
|
#include <sys/stat.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#ifdef _WIN32
|
|
#include <io.h>
|
|
#endif
|
|
#include <fcntl.h>
|
|
#include "h.h"
|
|
#ifdef STRIPBADWORDS
|
|
#include "badwords.h"
|
|
#endif
|
|
#include "version.h"
|
|
|
|
DLLFUNC int m_protoctl(aClient *cptr, aClient *sptr, int parc, char *parv[]);
|
|
|
|
extern MODVAR char serveropts[];
|
|
|
|
#define MSG_PROTOCTL "PROTOCTL"
|
|
#define TOK_PROTOCTL "_"
|
|
|
|
ModuleHeader MOD_HEADER(m_protoctl)
|
|
= {
|
|
"m_protoctl",
|
|
"$Id$",
|
|
"command /protoctl",
|
|
"3.2-b8-1",
|
|
NULL
|
|
};
|
|
|
|
DLLFUNC int MOD_INIT(m_protoctl)(ModuleInfo *modinfo)
|
|
{
|
|
add_CommandX(MSG_PROTOCTL, TOK_PROTOCTL, m_protoctl, MAXPARA, M_UNREGISTERED|M_SERVER|M_USER);
|
|
MARK_AS_OFFICIAL_MODULE(modinfo);
|
|
return MOD_SUCCESS;
|
|
}
|
|
|
|
DLLFUNC int MOD_LOAD(m_protoctl)(int module_load)
|
|
{
|
|
return MOD_SUCCESS;
|
|
}
|
|
|
|
DLLFUNC int MOD_UNLOAD(m_protoctl)(int module_unload)
|
|
{
|
|
if (del_Command(MSG_PROTOCTL, TOK_PROTOCTL, m_protoctl) < 0)
|
|
{
|
|
sendto_realops("Failed to delete commands when unloading %s",
|
|
MOD_HEADER(m_protoctl).name);
|
|
}
|
|
return MOD_SUCCESS;
|
|
}
|
|
|
|
/*
|
|
* m_protoctl
|
|
* parv[0] = Sender prefix
|
|
* parv[1+] = Options
|
|
*/
|
|
CMD_FUNC(m_protoctl)
|
|
{
|
|
int i;
|
|
#ifndef PROTOCTL_MADNESS
|
|
int remove = 0;
|
|
#endif
|
|
int first_protoctl = (GotProtoctl(sptr)) ? 0 : 1; /**< First PROTOCTL we receive? Special ;) */
|
|
char proto[128], *s;
|
|
/* static char *dummyblank = ""; Yes, it is kind of ugly */
|
|
|
|
if (!MyConnect(sptr))
|
|
return 0; /* Remote PROTOCTL's are not supported at this time */
|
|
|
|
#ifdef PROTOCTL_MADNESS
|
|
if (GotProtoctl(sptr))
|
|
{
|
|
/*
|
|
* But we already GOT a protoctl msg!
|
|
*/
|
|
if (!IsServer(sptr))
|
|
sendto_one(cptr,
|
|
"ERROR :Already got a PROTOCTL from you.");
|
|
return 0;
|
|
}
|
|
#endif
|
|
cptr->flags |= FLAGS_PROTOCTL;
|
|
/* parv[parc - 1] */
|
|
for (i = 1; i < parc; i++)
|
|
{
|
|
strlcpy(proto, parv[i], sizeof proto);
|
|
s = proto;
|
|
#ifndef PROTOCTL_MADNESS
|
|
if (*s == '-')
|
|
{
|
|
s++;
|
|
remove = 1;
|
|
}
|
|
else
|
|
remove = 0;
|
|
#endif
|
|
/* equal = (char *)index(proto, '=');
|
|
if (equal == NULL)
|
|
options = dummyblank;
|
|
else
|
|
{
|
|
options = &equal[1];
|
|
equal[0] = '\0';
|
|
}
|
|
*/
|
|
if (!strcmp(s, "NAMESX"))
|
|
{
|
|
Debug((DEBUG_ERROR, "Chose protocol %s for link %s", proto, cptr->name));
|
|
SetNAMESX(cptr);
|
|
}
|
|
if (!strcmp(s, "UHNAMES") && UHNAMES_ENABLED)
|
|
{
|
|
Debug((DEBUG_ERROR, "Chose protocol %s for link %s", proto, cptr->name));
|
|
SetUHNAMES(cptr);
|
|
}
|
|
else if (strcmp(s, "NOQUIT") == 0)
|
|
{
|
|
#ifndef PROTOCTL_MADNESS
|
|
if (remove)
|
|
{
|
|
ClearNoQuit(cptr);
|
|
continue;
|
|
}
|
|
#endif
|
|
Debug((DEBUG_ERROR, "Chose protocol %s for link %s",
|
|
proto, cptr->name));
|
|
SetNoQuit(cptr);
|
|
|
|
}
|
|
else if (strcmp(s, "TOKEN") == 0)
|
|
{
|
|
#ifndef PROTOCTL_MADNESS
|
|
if (remove)
|
|
{
|
|
ClearToken(cptr);
|
|
continue;
|
|
}
|
|
#endif
|
|
Debug((DEBUG_ERROR, "Chose protocol %s for link %s",
|
|
proto, cptr->name));
|
|
SetToken(cptr);
|
|
}
|
|
else if (strcmp(s, "HCN") == 0)
|
|
{
|
|
#ifndef PROTOCTL_MADNESS
|
|
if (remove)
|
|
{
|
|
ClearHybNotice(cptr);
|
|
continue;
|
|
}
|
|
#endif
|
|
Debug((DEBUG_ERROR, "Chose protocol %s for link %s",
|
|
proto, cptr->name));
|
|
SetHybNotice(cptr);
|
|
}
|
|
else if (strcmp(s, "SJOIN") == 0)
|
|
{
|
|
#ifndef PROTOCTL_MADNESS
|
|
if (remove)
|
|
{
|
|
ClearSJOIN(cptr);
|
|
continue;
|
|
}
|
|
#endif
|
|
Debug((DEBUG_ERROR, "Chose protocol %s for link %s",
|
|
proto, cptr->name));
|
|
SetSJOIN(cptr);
|
|
}
|
|
else if (strcmp(s, "SJOIN2") == 0)
|
|
{
|
|
#ifndef PROTOCTL_MADNESS
|
|
if (remove)
|
|
{
|
|
ClearSJOIN2(cptr);
|
|
continue;
|
|
}
|
|
#endif
|
|
Debug((DEBUG_ERROR, "Chose protocol %s for link %s",
|
|
proto, cptr->name));
|
|
SetSJOIN2(cptr);
|
|
}
|
|
else if (strcmp(s, "NICKv2") == 0)
|
|
{
|
|
#ifndef PROTOCTL_MADNESS
|
|
if (remove)
|
|
{
|
|
ClearNICKv2(cptr);
|
|
continue;
|
|
}
|
|
#endif
|
|
Debug((DEBUG_ERROR, "Chose protocol %s for link %s",
|
|
proto, cptr->name));
|
|
SetNICKv2(cptr);
|
|
}
|
|
else if (strcmp(s, "UMODE2") == 0)
|
|
{
|
|
#ifndef PROTOCTL_MADNESS
|
|
if (remove)
|
|
{
|
|
ClearUMODE2(cptr);
|
|
continue;
|
|
}
|
|
#endif
|
|
Debug((DEBUG_ERROR,
|
|
"Chose protocol %s for link %s",
|
|
proto, cptr->name));
|
|
SetUMODE2(cptr);
|
|
}
|
|
else if (strcmp(s, "NS") == 0)
|
|
{
|
|
#ifdef PROTOCTL_MADNESS
|
|
if (remove)
|
|
{
|
|
ClearNS(cptr);
|
|
continue;
|
|
}
|
|
#endif
|
|
Debug((DEBUG_ERROR,
|
|
"Chose protocol %s for link %s",
|
|
proto, cptr->name));
|
|
SetNS(cptr);
|
|
}
|
|
else if (strcmp(s, "VL") == 0)
|
|
{
|
|
#ifndef PROTOCTL_MADNESS
|
|
if (remove)
|
|
{
|
|
ClearVL(cptr);
|
|
continue;
|
|
}
|
|
#endif
|
|
Debug((DEBUG_ERROR,
|
|
"Chose protocol %s for link %s",
|
|
proto, cptr->name));
|
|
SetVL(cptr);
|
|
}
|
|
else if (strcmp(s, "VHP") == 0)
|
|
{
|
|
#ifndef PROTOCTL_MADNESS
|
|
if (remove)
|
|
{
|
|
ClearVHP(cptr);
|
|
continue;
|
|
}
|
|
#endif
|
|
Debug((DEBUG_ERROR,
|
|
"Chose protocol %s for link %s",
|
|
proto, cptr->name));
|
|
SetVHP(cptr);
|
|
}
|
|
else if (strcmp(s, "CLK") == 0)
|
|
{
|
|
Debug((DEBUG_ERROR,
|
|
"Chose protocol %s for link %s",
|
|
proto, cptr->name));
|
|
SetCLK(cptr);
|
|
}
|
|
else if (strcmp(s, "SJ3") == 0)
|
|
{
|
|
#ifndef PROTOCTL_MADNESS
|
|
if (remove)
|
|
{
|
|
ClearSJ3(cptr);
|
|
continue;
|
|
}
|
|
#endif
|
|
Debug((DEBUG_ERROR,
|
|
"Chose protocol %s for link %s",
|
|
proto, cptr->name));
|
|
SetSJ3(cptr);
|
|
}
|
|
else if (strcmp(s, "SJB64") == 0)
|
|
{
|
|
#ifndef PROTOCTL_MADNESS
|
|
if (remove)
|
|
{
|
|
cptr->proto &= ~PROTO_SJB64;
|
|
continue;
|
|
}
|
|
#endif
|
|
Debug((DEBUG_ERROR,
|
|
"Chose protocol %s for link %s",
|
|
proto, cptr->name));
|
|
cptr->proto |= PROTO_SJB64;
|
|
}
|
|
else if (strcmp(s, "ZIP") == 0)
|
|
{
|
|
if (remove)
|
|
{
|
|
cptr->proto &= ~PROTO_ZIP;
|
|
continue;
|
|
}
|
|
Debug((DEBUG_ERROR,
|
|
"Chose protocol %s for link %s",
|
|
proto, cptr->name));
|
|
cptr->proto |= PROTO_ZIP;
|
|
}
|
|
else if (strcmp(s, "TKLEXT") == 0)
|
|
{
|
|
Debug((DEBUG_ERROR, "Chose protocol %s for link %s", proto, cptr->name));
|
|
SetTKLEXT(cptr);
|
|
}
|
|
else if (strcmp(s, "NICKIP") == 0)
|
|
{
|
|
Debug((DEBUG_ERROR, "Chose protocol %s for link %s", proto, cptr->name));
|
|
cptr->proto |= PROTO_NICKIP;
|
|
}
|
|
else if (strncmp(s, "NICKCHARS=", 10) == 0)
|
|
{
|
|
if (!IsServer(cptr) && !IsEAuth(cptr) && !IsHandshake(cptr))
|
|
continue;
|
|
/* Ok, server is either authenticated, or is an outgoing connect...
|
|
* We now compare the character sets to see if we should warn opers about any mismatch...
|
|
*/
|
|
if (strcmp(s+10, langsinuse))
|
|
{
|
|
sendto_realops("\002WARNING!!!!\002 Link %s does not have the same set::allowed-nickchars settings (or is "
|
|
"a different UnrealIRCd version), this MAY cause display issues. Our charset: '%s', theirs: '%s'",
|
|
get_client_name(cptr, FALSE), langsinuse, s+10);
|
|
/* return exit_client(cptr, cptr, &me, "Nick charset mismatch"); */
|
|
}
|
|
}
|
|
else if ((strncmp(s, "EAUTH=", 6) == 0) && NEW_LINKING_PROTOCOL)
|
|
{
|
|
/* Early authorization: EAUTH=servername[,options] */
|
|
int ret;
|
|
char *servername = s+6, *p;
|
|
ConfigItem_link *aconf = NULL;
|
|
|
|
if (strlen(servername) > HOSTLEN)
|
|
servername[HOSTLEN] = '\0';
|
|
|
|
for (p = servername; *p; p ++)
|
|
{
|
|
if (*p == ',')
|
|
{
|
|
/* Upwards compatible, if we ever add any options through EAUTH=blah,options */
|
|
*p = '\0';
|
|
break;
|
|
}
|
|
if (*p <= ' ' || *p > '~')
|
|
break;
|
|
}
|
|
|
|
if (*p || !index(servername, '.'))
|
|
{
|
|
sendto_one(sptr, "ERROR :Bogus server name in EAUTH (%s)", servername);
|
|
sendto_snomask
|
|
(SNO_JUNK,
|
|
"WARNING: Bogus server name (%s) from %s in EAUTH (maybe just a fishy client)",
|
|
servername, get_client_name(cptr, TRUE));
|
|
|
|
return exit_client(cptr, sptr, &me, "Bogus server name");
|
|
}
|
|
|
|
ret = verify_link(cptr, sptr, s+6, &aconf);
|
|
if (ret < 0)
|
|
return ret; /* FLUSH_BUFFER */
|
|
|
|
SetEAuth(cptr);
|
|
if (!IsHandshake(cptr) && aconf && !BadPtr(aconf->connpwd)) /* Send PASS early... */
|
|
sendto_one(sptr, "PASS :%s", aconf->connpwd);
|
|
}
|
|
else if ((strncmp(s, "SERVERS=", 8) == 0) && NEW_LINKING_PROTOCOL)
|
|
{
|
|
aClient *acptr, *srv;
|
|
int numeric;
|
|
|
|
if (!IsEAuth(cptr))
|
|
continue;
|
|
|
|
/* Other side lets us know which servers are behind it.
|
|
* SERVERS=<numeric-of-server-1>[,<numeric-of-server-2[,..etc..]]
|
|
* Eg: SERVER=1,2,3,4,5
|
|
*/
|
|
|
|
add_pending_net(sptr, s+8);
|
|
|
|
acptr = find_non_pending_net_duplicates(sptr);
|
|
if (acptr)
|
|
{
|
|
sendto_one(sptr, "ERROR :Server with numeric %d (%s) already exists",
|
|
acptr->serv->numeric, acptr->name);
|
|
sendto_realops("Link %s cancelled, server with numeric %d (%s) already exists",
|
|
get_client_name(acptr, TRUE), acptr->serv->numeric, acptr->name);
|
|
return exit_client(sptr, sptr, sptr, "Server Exists (or identical numeric)");
|
|
}
|
|
|
|
acptr = find_pending_net_duplicates(sptr, &srv, &numeric);
|
|
if (acptr)
|
|
{
|
|
sendto_one(sptr, "ERROR :Server with numeric %d is being introduced by another server as well. "
|
|
"Just wait a moment for it to synchronize...", numeric);
|
|
sendto_realops("Link %s cancelled, server would introduce server with numeric %d, which "
|
|
"server %s is also about to introduce. Just wait a moment for it to synchronize...",
|
|
get_client_name(acptr, TRUE), numeric, get_client_name(srv, TRUE));
|
|
return exit_client(sptr, sptr, sptr, "Server Exists (just wait a moment)");
|
|
}
|
|
|
|
/* Send our PROTOCTL SERVERS= back if this was NOT a response */
|
|
if (s[8] != '*')
|
|
send_protoctl_servers(sptr, 1);
|
|
}
|
|
else if ((strcmp(s, "MLOCK")) == 0)
|
|
{
|
|
#ifdef PROTOCTL_MADNESS
|
|
if (remove)
|
|
{
|
|
cptr->proto &= ~PROTO_MLOCK;
|
|
continue;
|
|
}
|
|
#endif
|
|
Debug((DEBUG_ERROR, "Chose protocol %s for link %s", proto, cptr->name));
|
|
cptr->proto |= PROTO_MLOCK;
|
|
}
|
|
/*
|
|
* Add other protocol extensions here, with proto
|
|
* containing the base option, and options containing
|
|
* what it equals, if anything.
|
|
*
|
|
* DO NOT error or warn on unknown proto; we just don't
|
|
* support it.
|
|
*/
|
|
}
|
|
|
|
if (first_protoctl && IsHandshake(cptr) && sptr->serv && !IsServerSent(sptr)) /* first & outgoing connection to server */
|
|
{
|
|
/* SERVER message moved from completed_connection() to here due to EAUTH/SERVERS PROTOCTL stuff,
|
|
* which needed to be delayed until after both sides have received SERVERS=xx (..or not.. in case
|
|
* of older servers).
|
|
* Actually, this is often not reached, as the PANGPANG stuff in numeric.c is reached first.
|
|
*/
|
|
send_server_message(cptr);
|
|
}
|
|
|
|
return 0;
|
|
}
|