2002-03-03 18:15:11 +01:00
|
|
|
/*
|
|
|
|
* ngIRCd -- The Next Generation IRC Daemon
|
2014-03-17 02:13:15 +01:00
|
|
|
* Copyright (c)2001-2014 Alexander Barton (alex@barton.de) and Contributors.
|
2002-03-03 18:15:11 +01:00
|
|
|
*
|
2002-12-12 13:24:18 +01:00
|
|
|
* 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 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
* Please read the file COPYING, README and AUTHORS for more information.
|
2002-03-03 18:15:11 +01:00
|
|
|
*/
|
|
|
|
|
2002-03-12 15:37:51 +01:00
|
|
|
#include "portab.h"
|
2002-03-03 18:15:11 +01:00
|
|
|
|
2010-12-27 17:14:14 +01:00
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* IRC commands for server links
|
|
|
|
*/
|
|
|
|
|
2002-03-03 18:15:11 +01:00
|
|
|
#include <assert.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2004-01-17 04:17:49 +01:00
|
|
|
#include <strings.h>
|
2002-03-03 18:15:11 +01:00
|
|
|
|
2008-08-14 23:23:04 +02:00
|
|
|
#include "conn-func.h"
|
2002-12-30 17:07:50 +01:00
|
|
|
#include "conn-zip.h"
|
2002-12-30 01:01:42 +01:00
|
|
|
#include "conf.h"
|
2002-05-27 15:09:26 +02:00
|
|
|
#include "channel.h"
|
2002-03-03 18:15:11 +01:00
|
|
|
#include "log.h"
|
|
|
|
#include "messages.h"
|
2002-05-27 15:09:26 +02:00
|
|
|
#include "parse.h"
|
2007-11-21 13:16:33 +01:00
|
|
|
#include "numeric.h"
|
2002-09-02 21:03:09 +02:00
|
|
|
#include "ngircd.h"
|
2007-11-21 13:16:33 +01:00
|
|
|
#include "irc-info.h"
|
2013-08-03 00:00:47 +02:00
|
|
|
#include "irc-write.h"
|
2009-05-19 22:41:45 +02:00
|
|
|
#include "op.h"
|
2002-03-03 18:15:11 +01:00
|
|
|
|
2014-03-17 18:02:57 +01:00
|
|
|
#include "irc-server.h"
|
|
|
|
|
2006-10-01 21:05:00 +02:00
|
|
|
/**
|
2013-08-03 00:00:47 +02:00
|
|
|
* Handler for the IRC "SERVER" command.
|
|
|
|
*
|
|
|
|
* @param Client The client from which this command has been received.
|
|
|
|
* @param Req Request structure with prefix and all parameters.
|
|
|
|
* @return CONNECTED or DISCONNECTED.
|
2006-10-01 21:05:00 +02:00
|
|
|
*/
|
2005-03-19 19:43:48 +01:00
|
|
|
GLOBAL bool
|
2002-05-27 15:09:26 +02:00
|
|
|
IRC_SERVER( CLIENT *Client, REQUEST *Req )
|
2002-03-03 18:15:11 +01:00
|
|
|
{
|
2013-10-17 23:10:53 +02:00
|
|
|
char str[100];
|
2007-11-21 13:16:33 +01:00
|
|
|
CLIENT *from, *c;
|
|
|
|
int i;
|
2012-09-11 12:48:51 +02:00
|
|
|
|
2002-03-03 18:15:11 +01:00
|
|
|
assert( Client != NULL );
|
|
|
|
assert( Req != NULL );
|
|
|
|
|
2006-10-01 21:05:00 +02:00
|
|
|
/* Return an error if this is not a local client */
|
|
|
|
if (Client_Conn(Client) <= NONE)
|
2013-08-06 23:37:21 +02:00
|
|
|
return IRC_WriteErrClient(Client, ERR_UNKNOWNCOMMAND_MSG,
|
2006-10-01 21:05:00 +02:00
|
|
|
Client_ID(Client), Req->command);
|
2002-03-03 18:15:11 +01:00
|
|
|
|
2008-08-14 23:23:04 +02:00
|
|
|
if (Client_Type(Client) == CLIENT_GOTPASS ||
|
|
|
|
Client_Type(Client) == CLIENT_GOTPASS_2813) {
|
2006-10-01 21:05:00 +02:00
|
|
|
/* We got a PASS command from the peer, and now a SERVER
|
|
|
|
* command: the peer tries to register itself as a server. */
|
2006-12-02 15:10:48 +01:00
|
|
|
LogDebug("Connection %d: got SERVER command (new server link) ...",
|
|
|
|
Client_Conn(Client));
|
2002-03-03 18:15:11 +01:00
|
|
|
|
2013-11-06 19:28:09 +01:00
|
|
|
if (Req->argc != 2 && Req->argc != 3)
|
2013-08-06 23:37:21 +02:00
|
|
|
return IRC_WriteErrClient(Client, ERR_NEEDMOREPARAMS_MSG,
|
2012-10-28 18:52:37 +01:00
|
|
|
Client_ID(Client),
|
|
|
|
Req->command);
|
|
|
|
|
|
|
|
/* Get configuration index of new remote server ... */
|
|
|
|
for (i = 0; i < MAX_SERVERS; i++)
|
|
|
|
if (strcasecmp(Req->argv[0], Conf_Server[i].name) == 0)
|
|
|
|
break;
|
|
|
|
|
2013-08-04 13:33:10 +02:00
|
|
|
/* Make sure the remote server is configured here */
|
2012-10-28 18:52:37 +01:00
|
|
|
if (i >= MAX_SERVERS) {
|
|
|
|
Log(LOG_ERR,
|
|
|
|
"Connection %d: Server \"%s\" not configured here!",
|
|
|
|
Client_Conn(Client), Req->argv[0]);
|
|
|
|
Conn_Close(Client_Conn(Client), NULL,
|
|
|
|
"Server not configured here", true);
|
2002-03-03 18:15:11 +01:00
|
|
|
return DISCONNECTED;
|
|
|
|
}
|
2012-10-28 18:52:37 +01:00
|
|
|
|
|
|
|
/* Check server password */
|
|
|
|
if (strcmp(Conn_Password(Client_Conn(Client)),
|
|
|
|
Conf_Server[i].pwd_in) != 0) {
|
|
|
|
Log(LOG_ERR,
|
|
|
|
"Connection %d: Got bad password from server \"%s\"!",
|
|
|
|
Client_Conn(Client), Req->argv[0]);
|
|
|
|
Conn_Close(Client_Conn(Client), NULL,
|
|
|
|
"Bad password", true);
|
2002-03-03 18:15:11 +01:00
|
|
|
return DISCONNECTED;
|
|
|
|
}
|
2012-09-11 12:48:51 +02:00
|
|
|
|
2009-04-21 08:40:10 +02:00
|
|
|
/* Is there a registered server with this ID? */
|
2012-10-28 18:52:37 +01:00
|
|
|
if (!Client_CheckID(Client, Req->argv[0]))
|
|
|
|
return DISCONNECTED;
|
2002-03-03 18:15:11 +01:00
|
|
|
|
2012-10-28 19:48:24 +01:00
|
|
|
/* Mark this connection as belonging to an configured server */
|
|
|
|
if (!Conf_SetServer(i, Client_Conn(Client)))
|
|
|
|
return DISCONNECTED;
|
|
|
|
|
2002-03-03 18:15:11 +01:00
|
|
|
Client_SetID( Client, Req->argv[0] );
|
|
|
|
Client_SetHops( Client, 1 );
|
|
|
|
Client_SetInfo( Client, Req->argv[Req->argc - 1] );
|
2002-11-27 00:07:24 +01:00
|
|
|
|
2009-04-21 08:40:10 +02:00
|
|
|
/* Is this server registering on our side, or are we connecting to
|
|
|
|
* a remote server? */
|
2009-09-11 00:41:12 +02:00
|
|
|
if (Client_Token(Client) != TOKEN_OUTBOUND) {
|
2009-04-21 08:40:10 +02:00
|
|
|
/* Incoming connection, send user/pass */
|
2009-09-11 00:41:12 +02:00
|
|
|
if (!IRC_WriteStrClient(Client, "PASS %s %s",
|
|
|
|
Conf_Server[i].pwd_out,
|
|
|
|
NGIRCd_ProtoID)
|
|
|
|
|| !IRC_WriteStrClient(Client, "SERVER %s 1 :%s",
|
|
|
|
Conf_ServerName,
|
|
|
|
Conf_ServerInfo)) {
|
2012-10-28 18:52:37 +01:00
|
|
|
Conn_Close(Client_Conn(Client),
|
|
|
|
"Unexpected server behavior!",
|
2009-09-11 00:41:12 +02:00
|
|
|
NULL, false);
|
|
|
|
return DISCONNECTED;
|
2002-03-03 18:15:11 +01:00
|
|
|
}
|
2009-09-11 00:41:12 +02:00
|
|
|
Client_SetIntroducer(Client, Client);
|
|
|
|
Client_SetToken(Client, 1);
|
|
|
|
} else {
|
|
|
|
/* outgoing connect, we already sent a SERVER and PASS
|
|
|
|
* command to the peer */
|
|
|
|
Client_SetToken(Client, atoi(Req->argv[1]));
|
2002-04-08 03:20:14 +02:00
|
|
|
}
|
2002-03-03 18:15:11 +01:00
|
|
|
|
2008-08-14 23:23:04 +02:00
|
|
|
/* Check protocol level */
|
|
|
|
if (Client_Type(Client) == CLIENT_GOTPASS) {
|
|
|
|
/* We got a "simple" PASS command, so the peer is
|
|
|
|
* using the protocol as defined in RFC 1459. */
|
2012-10-29 11:44:45 +01:00
|
|
|
if (! (Conn_Options(Client_Conn(Client)) & CONN_RFC1459))
|
2008-08-14 23:23:04 +02:00
|
|
|
Log(LOG_INFO,
|
|
|
|
"Switching connection %d (\"%s\") to RFC 1459 compatibility mode.",
|
2012-10-28 18:52:37 +01:00
|
|
|
Client_Conn(Client), Client_ID(Client));
|
|
|
|
Conn_SetOption(Client_Conn(Client), CONN_RFC1459);
|
2008-08-14 23:23:04 +02:00
|
|
|
}
|
|
|
|
|
2007-11-21 13:16:33 +01:00
|
|
|
Client_SetType(Client, CLIENT_UNKNOWNSERVER);
|
2002-11-27 00:07:24 +01:00
|
|
|
|
2003-12-26 16:55:07 +01:00
|
|
|
#ifdef ZLIB
|
2013-08-04 04:20:13 +02:00
|
|
|
if (Client_HasFlag(Client, 'Z')
|
2012-10-28 18:52:37 +01:00
|
|
|
&& !Zip_InitConn(Client_Conn(Client))) {
|
|
|
|
Conn_Close(Client_Conn(Client),
|
2013-08-04 04:15:27 +02:00
|
|
|
"Can't initialize compression (zlib)!",
|
2012-10-28 18:52:37 +01:00
|
|
|
NULL, false );
|
2009-04-21 08:40:10 +02:00
|
|
|
return DISCONNECTED;
|
2002-11-27 00:07:24 +01:00
|
|
|
}
|
|
|
|
#endif
|
2002-03-03 18:15:11 +01:00
|
|
|
|
2002-09-07 19:57:31 +02:00
|
|
|
#ifdef IRCPLUS
|
2013-08-04 04:20:13 +02:00
|
|
|
if (Client_HasFlag(Client, 'H')) {
|
2007-11-21 13:16:33 +01:00
|
|
|
LogDebug("Peer supports IRC+ extended server handshake ...");
|
|
|
|
if (!IRC_Send_ISUPPORT(Client))
|
|
|
|
return DISCONNECTED;
|
|
|
|
return IRC_WriteStrClient(Client, RPL_ENDOFMOTD_MSG,
|
|
|
|
Client_ID(Client));
|
|
|
|
} else {
|
2002-09-07 19:57:31 +02:00
|
|
|
#endif
|
2007-11-21 13:16:33 +01:00
|
|
|
if (Conf_MaxNickLength != CLIENT_NICK_LEN_DEFAULT)
|
|
|
|
Log(LOG_CRIT,
|
|
|
|
"Attention: this server uses a non-standard nick length, but the peer doesn't support the IRC+ extended server handshake!");
|
2004-04-25 17:43:18 +02:00
|
|
|
#ifdef IRCPLUS
|
2006-04-30 23:31:43 +02:00
|
|
|
}
|
2004-04-25 17:43:18 +02:00
|
|
|
#endif
|
|
|
|
|
2007-11-21 13:16:33 +01:00
|
|
|
return IRC_Num_ENDOFMOTD(Client, Req);
|
2002-03-03 18:15:11 +01:00
|
|
|
}
|
|
|
|
else if( Client_Type( Client ) == CLIENT_SERVER )
|
|
|
|
{
|
2009-04-21 08:40:10 +02:00
|
|
|
/* New server is being introduced to the network */
|
2002-03-03 18:15:11 +01:00
|
|
|
|
2013-11-06 19:28:09 +01:00
|
|
|
if (Req->argc != 4)
|
2013-08-06 23:37:21 +02:00
|
|
|
return IRC_WriteErrClient(Client, ERR_NEEDMOREPARAMS_MSG,
|
|
|
|
Client_ID(Client), Req->command);
|
2002-03-03 18:15:11 +01:00
|
|
|
|
2009-04-21 08:40:10 +02:00
|
|
|
/* check for existing server with same ID */
|
2013-08-07 00:13:08 +02:00
|
|
|
if (!Client_CheckID(Client, Req->argv[0]))
|
|
|
|
return DISCONNECTED;
|
2002-03-03 18:15:11 +01:00
|
|
|
|
2002-03-25 18:08:54 +01:00
|
|
|
from = Client_Search( Req->prefix );
|
2013-08-07 00:13:08 +02:00
|
|
|
if (! from) {
|
2009-04-21 08:40:10 +02:00
|
|
|
/* Uh, Server, that introduced the new server is unknown?! */
|
2013-08-07 00:13:08 +02:00
|
|
|
Log(LOG_ALERT,
|
|
|
|
"Unknown ID in prefix of SERVER: \"%s\"! (on connection %d)",
|
|
|
|
Req->prefix, Client_Conn(Client));
|
|
|
|
Conn_Close(Client_Conn(Client), NULL,
|
|
|
|
"Unknown ID in prefix of SERVER", true);
|
2002-03-03 18:15:11 +01:00
|
|
|
return DISCONNECTED;
|
|
|
|
}
|
|
|
|
|
2013-08-07 00:13:08 +02:00
|
|
|
c = Client_NewRemoteServer(Client, Req->argv[0], from,
|
|
|
|
atoi(Req->argv[1]), atoi(Req->argv[2]),
|
|
|
|
Req->argv[3], true);
|
2009-04-21 08:40:10 +02:00
|
|
|
if (!c) {
|
2013-08-07 00:13:08 +02:00
|
|
|
Log(LOG_ALERT,
|
|
|
|
"Can't create client structure for server! (on connection %d)",
|
|
|
|
Client_Conn(Client));
|
|
|
|
Conn_Close(Client_Conn(Client), NULL,
|
|
|
|
"Can't allocate client structure for remote server",
|
|
|
|
true);
|
2002-03-03 18:15:11 +01:00
|
|
|
return DISCONNECTED;
|
|
|
|
}
|
|
|
|
|
2013-08-07 00:13:08 +02:00
|
|
|
if (Client_Hops(c) > 1 && Req->prefix[0])
|
|
|
|
snprintf(str, sizeof(str), "connected to %s, ",
|
|
|
|
Client_ID(from));
|
|
|
|
else
|
|
|
|
strcpy(str, "");
|
|
|
|
Log(LOG_NOTICE|LOG_snotice,
|
|
|
|
"Server \"%s\" registered (via %s, %s%d hop%s).",
|
|
|
|
Client_ID(c), Client_ID(Client), str, Client_Hops(c),
|
|
|
|
Client_Hops(c) > 1 ? "s": "" );
|
2002-03-03 18:15:11 +01:00
|
|
|
|
2009-04-21 08:40:10 +02:00
|
|
|
/* notify other servers */
|
2013-08-07 00:13:08 +02:00
|
|
|
IRC_WriteStrServersPrefix(Client, from, "SERVER %s %d %d :%s",
|
|
|
|
Client_ID(c), Client_Hops(c) + 1,
|
|
|
|
Client_MyToken(c), Client_Info(c));
|
2002-03-03 18:15:11 +01:00
|
|
|
|
|
|
|
return CONNECTED;
|
2013-11-06 19:28:09 +01:00
|
|
|
} else
|
2013-08-06 23:37:21 +02:00
|
|
|
return IRC_WriteErrClient(Client, ERR_NEEDMOREPARAMS_MSG,
|
2007-11-21 13:16:33 +01:00
|
|
|
Client_ID(Client), Req->command);
|
2002-03-03 18:15:11 +01:00
|
|
|
} /* IRC_SERVER */
|
|
|
|
|
2013-08-03 00:00:47 +02:00
|
|
|
/*
|
|
|
|
* Handler for the IRC "NJOIN" command.
|
|
|
|
*
|
|
|
|
* @param Client The client from which this command has been received.
|
|
|
|
* @param Req Request structure with prefix and all parameters.
|
|
|
|
* @return CONNECTED or DISCONNECTED.
|
|
|
|
*/
|
2005-03-19 19:43:48 +01:00
|
|
|
GLOBAL bool
|
2002-05-27 15:09:26 +02:00
|
|
|
IRC_NJOIN( CLIENT *Client, REQUEST *Req )
|
2002-03-03 18:15:11 +01:00
|
|
|
{
|
2005-03-19 19:43:48 +01:00
|
|
|
char nick_in[COMMAND_LEN], nick_out[COMMAND_LEN], *channame, *ptr, modes[8];
|
2012-08-04 14:19:58 +02:00
|
|
|
bool is_owner, is_chanadmin, is_op, is_halfop, is_voiced;
|
2002-03-03 18:15:11 +01:00
|
|
|
CHANNEL *chan;
|
|
|
|
CLIENT *c;
|
2012-09-11 12:48:51 +02:00
|
|
|
|
2002-03-03 18:15:11 +01:00
|
|
|
assert( Client != NULL );
|
|
|
|
assert( Req != NULL );
|
|
|
|
|
2003-04-21 01:09:26 +02:00
|
|
|
strlcpy( nick_in, Req->argv[1], sizeof( nick_in ));
|
|
|
|
strcpy( nick_out, "" );
|
2002-07-25 14:33:19 +02:00
|
|
|
|
2002-03-03 18:15:11 +01:00
|
|
|
channame = Req->argv[0];
|
2003-04-21 01:09:26 +02:00
|
|
|
ptr = strtok( nick_in, "," );
|
2002-03-03 18:15:11 +01:00
|
|
|
while( ptr )
|
|
|
|
{
|
2012-09-26 23:51:05 +02:00
|
|
|
is_owner = is_chanadmin = is_op = is_halfop = is_voiced = false;
|
2012-09-11 12:48:51 +02:00
|
|
|
|
2009-04-21 08:40:10 +02:00
|
|
|
/* cut off prefixes */
|
2012-08-04 14:19:58 +02:00
|
|
|
while(( *ptr == '~') || ( *ptr == '&' ) || ( *ptr == '@' ) ||
|
|
|
|
( *ptr == '%') || ( *ptr == '+' ))
|
2012-09-11 12:48:51 +02:00
|
|
|
{
|
2012-08-04 14:19:58 +02:00
|
|
|
if( *ptr == '~' ) is_owner = true;
|
|
|
|
if( *ptr == '&' ) is_chanadmin = true;
|
2005-03-19 19:43:48 +01:00
|
|
|
if( *ptr == '@' ) is_op = true;
|
2012-08-04 14:19:58 +02:00
|
|
|
if( *ptr == 'h' ) is_halfop = true;
|
2005-03-19 19:43:48 +01:00
|
|
|
if( *ptr == '+' ) is_voiced = true;
|
2002-03-03 18:15:11 +01:00
|
|
|
ptr++;
|
|
|
|
}
|
|
|
|
|
2002-03-25 18:08:54 +01:00
|
|
|
c = Client_Search( ptr );
|
2002-03-03 18:15:11 +01:00
|
|
|
if( c )
|
|
|
|
{
|
|
|
|
Channel_Join( c, channame );
|
|
|
|
chan = Channel_Search( channame );
|
|
|
|
assert( chan != NULL );
|
2012-09-11 12:48:51 +02:00
|
|
|
|
2012-08-04 14:19:58 +02:00
|
|
|
if( is_owner ) Channel_UserModeAdd( chan, c, 'q' );
|
|
|
|
if( is_chanadmin ) Channel_UserModeAdd( chan, c, 'a' );
|
2002-03-03 18:15:11 +01:00
|
|
|
if( is_op ) Channel_UserModeAdd( chan, c, 'o' );
|
2012-08-04 14:19:58 +02:00
|
|
|
if( is_halfop ) Channel_UserModeAdd( chan, c, 'h' );
|
2002-03-03 18:15:11 +01:00
|
|
|
if( is_voiced ) Channel_UserModeAdd( chan, c, 'v' );
|
|
|
|
|
2009-04-21 08:40:10 +02:00
|
|
|
/* announce to channel... */
|
2005-03-19 19:43:48 +01:00
|
|
|
IRC_WriteStrChannelPrefix( Client, chan, c, false, "JOIN :%s", channame );
|
2002-03-03 18:15:11 +01:00
|
|
|
|
2009-04-21 08:40:10 +02:00
|
|
|
/* set Channel-User-Modes */
|
2002-12-26 18:04:54 +01:00
|
|
|
strlcpy( modes, Channel_UserModes( chan, c ), sizeof( modes ));
|
2002-03-03 18:15:11 +01:00
|
|
|
if( modes[0] )
|
|
|
|
{
|
2009-04-21 08:40:10 +02:00
|
|
|
/* send modes to channel */
|
2005-03-19 19:43:48 +01:00
|
|
|
IRC_WriteStrChannelPrefix( Client, chan, Client, false, "MODE %s +%s %s", channame, modes, Client_ID( c ));
|
2002-03-03 18:15:11 +01:00
|
|
|
}
|
2003-04-21 01:09:26 +02:00
|
|
|
|
|
|
|
if( nick_out[0] != '\0' ) strlcat( nick_out, ",", sizeof( nick_out ));
|
2012-08-04 14:19:58 +02:00
|
|
|
if( is_owner ) strlcat( nick_out, "~", sizeof( nick_out ));
|
|
|
|
if( is_chanadmin ) strlcat( nick_out, "&", sizeof( nick_out ));
|
2003-07-09 20:45:56 +02:00
|
|
|
if( is_op ) strlcat( nick_out, "@", sizeof( nick_out ));
|
2012-08-04 14:19:58 +02:00
|
|
|
if( is_halfop ) strlcat( nick_out, "%", sizeof( nick_out ));
|
2003-07-09 20:45:56 +02:00
|
|
|
if( is_voiced ) strlcat( nick_out, "+", sizeof( nick_out ));
|
2003-04-21 01:09:26 +02:00
|
|
|
strlcat( nick_out, ptr, sizeof( nick_out ));
|
2002-03-03 18:15:11 +01:00
|
|
|
}
|
2002-08-27 01:47:58 +02:00
|
|
|
else Log( LOG_ERR, "Got NJOIN for unknown nick \"%s\" for channel \"%s\"!", ptr, channame );
|
2012-09-11 12:48:51 +02:00
|
|
|
|
2009-04-21 08:40:10 +02:00
|
|
|
/* search for next Nick */
|
2002-03-03 18:15:11 +01:00
|
|
|
ptr = strtok( NULL, "," );
|
|
|
|
}
|
|
|
|
|
2009-04-21 08:40:10 +02:00
|
|
|
/* forward to other servers */
|
2013-08-03 00:00:47 +02:00
|
|
|
if (nick_out[0] != '\0')
|
|
|
|
IRC_WriteStrServersPrefix(Client, Client_ThisServer(),
|
|
|
|
"NJOIN %s :%s", Req->argv[0], nick_out);
|
2002-03-03 18:15:11 +01:00
|
|
|
|
|
|
|
return CONNECTED;
|
|
|
|
} /* IRC_NJOIN */
|
|
|
|
|
2008-04-09 19:49:34 +02:00
|
|
|
/**
|
2013-08-03 00:00:47 +02:00
|
|
|
* Handler for the IRC "SQUIT" command.
|
|
|
|
*
|
|
|
|
* @param Client The client from which this command has been received.
|
|
|
|
* @param Req Request structure with prefix and all parameters.
|
|
|
|
* @return CONNECTED or DISCONNECTED.
|
2008-04-09 19:49:34 +02:00
|
|
|
*/
|
2005-03-19 19:43:48 +01:00
|
|
|
GLOBAL bool
|
2008-04-09 19:49:34 +02:00
|
|
|
IRC_SQUIT(CLIENT * Client, REQUEST * Req)
|
2002-03-03 18:15:11 +01:00
|
|
|
{
|
2009-05-19 22:41:45 +02:00
|
|
|
char msg[COMMAND_LEN], logmsg[COMMAND_LEN];
|
|
|
|
CLIENT *from, *target;
|
|
|
|
CONN_ID con;
|
2011-03-21 23:51:53 +01:00
|
|
|
int loglevel;
|
2002-03-03 18:15:11 +01:00
|
|
|
|
2008-04-09 19:49:34 +02:00
|
|
|
assert(Client != NULL);
|
|
|
|
assert(Req != NULL);
|
2002-03-03 18:15:11 +01:00
|
|
|
|
2009-05-19 22:41:45 +02:00
|
|
|
if (Client_Type(Client) != CLIENT_SERVER
|
|
|
|
&& !Client_HasMode(Client, 'o'))
|
|
|
|
return Op_NoPrivileges(Client, Req);
|
|
|
|
|
|
|
|
if (Client_Type(Client) == CLIENT_SERVER && Req->prefix) {
|
|
|
|
from = Client_Search(Req->prefix);
|
|
|
|
if (Client_Type(from) != CLIENT_SERVER
|
|
|
|
&& !Op_Check(Client, Req))
|
|
|
|
return Op_NoPrivileges(Client, Req);
|
|
|
|
} else
|
|
|
|
from = Client;
|
|
|
|
if (!from)
|
2013-08-06 23:37:21 +02:00
|
|
|
return IRC_WriteErrClient(Client, ERR_NOSUCHNICK_MSG,
|
2009-05-19 22:41:45 +02:00
|
|
|
Client_ID(Client), Req->prefix);
|
|
|
|
|
2011-03-21 23:51:53 +01:00
|
|
|
if (Client_Type(Client) == CLIENT_USER)
|
|
|
|
loglevel = LOG_NOTICE | LOG_snotice;
|
|
|
|
else
|
|
|
|
loglevel = LOG_DEBUG;
|
|
|
|
Log(loglevel, "Got SQUIT from %s for \"%s\": \"%s\" ...",
|
2009-05-19 22:41:45 +02:00
|
|
|
Client_ID(from), Req->argv[0], Req->argv[1]);
|
2002-03-03 18:15:11 +01:00
|
|
|
|
2008-04-09 19:49:34 +02:00
|
|
|
target = Client_Search(Req->argv[0]);
|
2009-05-19 22:41:45 +02:00
|
|
|
if (Client_Type(Client) != CLIENT_SERVER &&
|
|
|
|
target == Client_ThisServer())
|
|
|
|
return Op_NoPrivileges(Client, Req);
|
2008-04-09 19:49:34 +02:00
|
|
|
if (!target) {
|
|
|
|
/* The server is (already) unknown */
|
|
|
|
Log(LOG_WARNING,
|
|
|
|
"Got SQUIT from %s for unknown server \"%s\"!?",
|
|
|
|
Client_ID(Client), Req->argv[0]);
|
2002-03-03 18:15:11 +01:00
|
|
|
return CONNECTED;
|
|
|
|
}
|
|
|
|
|
2009-05-19 22:41:45 +02:00
|
|
|
con = Client_Conn(target);
|
|
|
|
|
|
|
|
if (Req->argv[1][0])
|
|
|
|
if (Client_NextHop(from) != Client || con > NONE)
|
2013-01-26 16:52:41 +01:00
|
|
|
snprintf(msg, sizeof(msg), "\"%s\" (SQUIT from %s)",
|
2009-05-19 22:41:45 +02:00
|
|
|
Req->argv[1], Client_ID(from));
|
2008-04-09 19:49:34 +02:00
|
|
|
else
|
2009-05-19 22:41:45 +02:00
|
|
|
strlcpy(msg, Req->argv[1], sizeof(msg));
|
|
|
|
else
|
|
|
|
snprintf(msg, sizeof(msg), "Got SQUIT from %s",
|
|
|
|
Client_ID(from));
|
|
|
|
|
|
|
|
if (con > NONE) {
|
|
|
|
/* We are directly connected to the target server, so we
|
|
|
|
* have to tear down the connection and to inform all the
|
|
|
|
* other remaining servers in the network */
|
2009-05-19 23:06:28 +02:00
|
|
|
IRC_SendWallops(Client_ThisServer(), Client_ThisServer(),
|
|
|
|
"Received SQUIT %s from %s: %s",
|
|
|
|
Req->argv[0], Client_ID(from),
|
|
|
|
Req->argv[1][0] ? Req->argv[1] : "-");
|
2009-05-19 22:41:45 +02:00
|
|
|
Conn_Close(con, NULL, msg, true);
|
|
|
|
if (con == Client_Conn(Client))
|
|
|
|
return DISCONNECTED;
|
2008-04-09 19:49:34 +02:00
|
|
|
} else {
|
2009-05-19 22:41:45 +02:00
|
|
|
/* This server is not directly connected, so the SQUIT must
|
|
|
|
* be forwarded ... */
|
|
|
|
if (Client_Type(from) != CLIENT_SERVER) {
|
|
|
|
/* The origin is not an IRC server, so don't evaluate
|
|
|
|
* this SQUIT but simply forward it */
|
|
|
|
IRC_WriteStrClientPrefix(Client_NextHop(target),
|
|
|
|
from, "SQUIT %s :%s", Req->argv[0], Req->argv[1]);
|
|
|
|
} else {
|
|
|
|
/* SQUIT has been generated by another server, so
|
|
|
|
* remove the target server from the network! */
|
|
|
|
logmsg[0] = '\0';
|
|
|
|
if (!strchr(msg, '('))
|
|
|
|
snprintf(logmsg, sizeof(logmsg),
|
2013-01-26 16:52:41 +01:00
|
|
|
"\"%s\" (SQUIT from %s)", Req->argv[1],
|
2009-05-19 22:41:45 +02:00
|
|
|
Client_ID(from));
|
|
|
|
Client_Destroy(target, logmsg[0] ? logmsg : msg,
|
|
|
|
msg, false);
|
|
|
|
}
|
2002-03-03 18:15:11 +01:00
|
|
|
}
|
2009-05-19 22:41:45 +02:00
|
|
|
return CONNECTED;
|
2002-03-03 18:15:11 +01:00
|
|
|
} /* IRC_SQUIT */
|
|
|
|
|
|
|
|
/* -eof- */
|