2001-12-14 09:13:43 +01:00
|
|
|
/*
|
|
|
|
* ngIRCd -- The Next Generation IRC Daemon
|
2004-02-28 03:18:16 +01:00
|
|
|
* Copyright (c)2001-2004 Alexander Barton <alex@barton.de>
|
2001-12-14 09:13:43 +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.
|
2001-12-14 09:13:43 +01:00
|
|
|
*
|
2002-12-12 13:24:18 +01:00
|
|
|
* IRC commands
|
2002-02-28 00:26:36 +01:00
|
|
|
*/
|
2001-12-26 04:21:46 +01:00
|
|
|
|
|
|
|
|
2002-03-12 15:37:51 +01:00
|
|
|
#include "portab.h"
|
2002-02-11 16:15:53 +01:00
|
|
|
|
2008-01-15 23:28:14 +01:00
|
|
|
static char UNUSED id[] = "$Id: irc.c,v 1.132 2008/01/15 22:28:14 fw Exp $";
|
2002-12-12 13:24:18 +01:00
|
|
|
|
2002-03-12 15:37:51 +01:00
|
|
|
#include "imp.h"
|
2002-02-28 00:26:36 +01:00
|
|
|
#include <assert.h>
|
2002-12-12 12:40:41 +01:00
|
|
|
#include <stdio.h>
|
2002-02-28 00:26:36 +01:00
|
|
|
#include <string.h>
|
2001-12-26 04:21:46 +01:00
|
|
|
|
2003-01-13 19:56:30 +01:00
|
|
|
#include "ngircd.h"
|
|
|
|
#include "resolve.h"
|
2002-12-30 18:15:42 +01:00
|
|
|
#include "conn-func.h"
|
2006-07-23 16:55:40 +02:00
|
|
|
#include "conf.h"
|
2002-02-28 00:26:36 +01:00
|
|
|
#include "client.h"
|
2002-05-27 15:09:26 +02:00
|
|
|
#include "channel.h"
|
2002-11-30 18:39:56 +01:00
|
|
|
#include "defines.h"
|
2002-02-28 00:26:36 +01:00
|
|
|
#include "irc-write.h"
|
|
|
|
#include "log.h"
|
2008-06-11 20:35:50 +02:00
|
|
|
#include "match.h"
|
2002-02-28 00:26:36 +01:00
|
|
|
#include "messages.h"
|
2002-05-27 15:09:26 +02:00
|
|
|
#include "parse.h"
|
2008-08-17 14:59:36 +02:00
|
|
|
#include "tool.h"
|
2002-02-11 02:03:20 +01:00
|
|
|
|
2002-03-12 15:37:51 +01:00
|
|
|
#include "exp.h"
|
2002-02-28 00:26:36 +01:00
|
|
|
#include "irc.h"
|
2001-12-26 04:21:46 +01:00
|
|
|
|
|
|
|
|
2008-05-05 18:06:43 +02:00
|
|
|
static char *Option_String PARAMS((CONN_ID Idx));
|
2008-08-16 18:26:19 +02:00
|
|
|
static bool Send_Message PARAMS((CLIENT *Client, REQUEST *Req, int ForceType,
|
|
|
|
bool SendErrors));
|
|
|
|
static bool Send_Message_Mask PARAMS((CLIENT *from, char *command,
|
|
|
|
char *targetMask, char *message,
|
|
|
|
bool SendErrors));
|
2003-03-19 22:16:53 +01:00
|
|
|
|
|
|
|
|
2005-03-19 19:43:48 +01:00
|
|
|
GLOBAL bool
|
2002-05-27 15:09:26 +02:00
|
|
|
IRC_ERROR( CLIENT *Client, REQUEST *Req )
|
2002-01-02 03:44:36 +01:00
|
|
|
{
|
|
|
|
assert( Client != NULL );
|
|
|
|
assert( Req != NULL );
|
|
|
|
|
2002-01-04 02:21:47 +01:00
|
|
|
if( Req->argc < 1 ) Log( LOG_NOTICE, "Got ERROR from \"%s\"!", Client_Mask( Client ));
|
|
|
|
else Log( LOG_NOTICE, "Got ERROR from \"%s\": %s!", Client_Mask( Client ), Req->argv[0] );
|
2002-01-02 03:44:36 +01:00
|
|
|
|
|
|
|
return CONNECTED;
|
|
|
|
} /* IRC_ERROR */
|
2001-12-31 03:18:51 +01:00
|
|
|
|
|
|
|
|
2005-04-18 17:44:39 +02:00
|
|
|
/**
|
|
|
|
* Kill client on request.
|
|
|
|
* This function implements the IRC command "KILL" wich is used to selectively
|
|
|
|
* disconnect clients. It can be used by IRC operators and servers, for example
|
|
|
|
* to "solve" nick collisions after netsplits.
|
|
|
|
* Please note that this function is also called internally, without a real
|
|
|
|
* KILL command beeing received over the network! Client is Client_ThisServer()
|
|
|
|
* in this case. */
|
2005-03-19 19:43:48 +01:00
|
|
|
GLOBAL bool
|
2002-05-27 15:09:26 +02:00
|
|
|
IRC_KILL( CLIENT *Client, REQUEST *Req )
|
2002-02-23 22:39:48 +01:00
|
|
|
{
|
|
|
|
CLIENT *prefix, *c;
|
2005-04-18 17:44:39 +02:00
|
|
|
char reason[COMMAND_LEN], *msg;
|
2002-12-31 17:09:55 +01:00
|
|
|
CONN_ID my_conn, conn;
|
2002-11-30 18:39:56 +01:00
|
|
|
|
2002-02-23 22:39:48 +01:00
|
|
|
assert( Client != NULL );
|
|
|
|
assert( Req != NULL );
|
|
|
|
|
2005-04-18 17:44:39 +02:00
|
|
|
if(( Client_Type( Client ) != CLIENT_SERVER ) &&
|
|
|
|
( ! Client_OperByMe( Client )))
|
|
|
|
{
|
|
|
|
/* The originator of the KILL is neither an IRC operator of
|
|
|
|
* this server nor a server. */
|
|
|
|
return IRC_WriteStrClient( Client, ERR_NOPRIVILEGES_MSG,
|
|
|
|
Client_ID( Client ));
|
|
|
|
}
|
2002-12-06 18:02:39 +01:00
|
|
|
|
2005-04-18 17:44:39 +02:00
|
|
|
if( Req->argc != 2 )
|
|
|
|
{
|
|
|
|
/* This command requires exactly 2 parameters! */
|
|
|
|
return IRC_WriteStrClient( Client, ERR_NEEDMOREPARAMS_MSG,
|
|
|
|
Client_ID( Client ), Req->command );
|
|
|
|
}
|
2002-02-23 22:39:48 +01:00
|
|
|
|
2002-12-06 18:02:39 +01:00
|
|
|
if( Req->prefix ) prefix = Client_Search( Req->prefix );
|
|
|
|
else prefix = Client;
|
2002-02-23 22:39:48 +01:00
|
|
|
if( ! prefix )
|
|
|
|
{
|
2005-04-18 17:44:39 +02:00
|
|
|
Log( LOG_WARNING, "Got KILL with invalid prefix: \"%s\"!",
|
|
|
|
Req->prefix );
|
2002-02-23 22:39:48 +01:00
|
|
|
prefix = Client_ThisServer( );
|
|
|
|
}
|
2002-11-30 18:39:56 +01:00
|
|
|
|
2005-04-18 17:44:39 +02:00
|
|
|
if( Client != Client_ThisServer( ))
|
|
|
|
{
|
|
|
|
/* This is a "real" KILL received from the network. */
|
|
|
|
Log( LOG_NOTICE|LOG_snotice, "Got KILL command from \"%s\" for \"%s\": %s",
|
|
|
|
Client_Mask( prefix ), Req->argv[0], Req->argv[1] );
|
|
|
|
}
|
2002-12-06 18:02:39 +01:00
|
|
|
|
2002-12-26 19:41:00 +01:00
|
|
|
/* Build reason string */
|
2005-04-18 17:44:39 +02:00
|
|
|
if( Client_Type( Client ) == CLIENT_USER )
|
|
|
|
{
|
|
|
|
/* Prefix the "reason" if the originator is a regular user,
|
|
|
|
* so users can't spoof KILLs of servers. */
|
|
|
|
snprintf( reason, sizeof( reason ), "KILLed by %s: %s",
|
|
|
|
Client_ID( Client ), Req->argv[1] );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
strlcpy( reason, Req->argv[1], sizeof( reason ));
|
2002-11-30 18:39:56 +01:00
|
|
|
|
2002-12-26 19:41:00 +01:00
|
|
|
/* Inform other servers */
|
2005-04-18 17:44:39 +02:00
|
|
|
IRC_WriteStrServersPrefix( Client, prefix, "KILL %s :%s",
|
|
|
|
Req->argv[0], reason );
|
2002-02-23 22:39:48 +01:00
|
|
|
|
2002-12-31 17:09:55 +01:00
|
|
|
/* Save ID of this connection */
|
|
|
|
my_conn = Client_Conn( Client );
|
2005-04-18 17:44:39 +02:00
|
|
|
|
2002-12-26 19:41:00 +01:00
|
|
|
/* Do we host such a client? */
|
2002-03-25 18:04:02 +01:00
|
|
|
c = Client_Search( Req->argv[0] );
|
2002-07-25 13:37:01 +02:00
|
|
|
if( c )
|
|
|
|
{
|
2005-04-18 17:44:39 +02:00
|
|
|
if(( Client_Type( c ) != CLIENT_USER ) &&
|
|
|
|
( Client_Type( c ) != CLIENT_GOTNICK ))
|
2003-04-29 14:19:20 +02:00
|
|
|
{
|
2005-04-18 17:44:39 +02:00
|
|
|
/* Target of this KILL is not a regular user, this is
|
|
|
|
* invalid! So we ignore this case if we received a
|
|
|
|
* regular KILL from the network and try to kill the
|
|
|
|
* client/connection anyway (but log an error!) if the
|
|
|
|
* origin is the local server. */
|
|
|
|
|
|
|
|
if( Client != Client_ThisServer( ))
|
2003-04-29 14:19:20 +02:00
|
|
|
{
|
2005-04-18 17:44:39 +02:00
|
|
|
/* Invalid KILL received from remote */
|
|
|
|
if( Client_Type( c ) == CLIENT_SERVER )
|
|
|
|
msg = ERR_CANTKILLSERVER_MSG;
|
|
|
|
else
|
|
|
|
msg = ERR_NOPRIVILEGES_MSG;
|
|
|
|
return IRC_WriteStrClient( Client, msg,
|
|
|
|
Client_ID( Client ));
|
2003-04-29 14:19:20 +02:00
|
|
|
}
|
2005-04-18 17:44:39 +02:00
|
|
|
|
|
|
|
Log( LOG_ERR, "Got KILL for invalid client type: %d, \"%s\"!",
|
|
|
|
Client_Type( c ), Req->argv[0] );
|
2003-04-29 14:19:20 +02:00
|
|
|
}
|
2005-04-18 17:44:39 +02:00
|
|
|
|
|
|
|
/* Kill client NOW! */
|
2005-08-03 01:19:21 +02:00
|
|
|
conn = Client_Conn( c );
|
2005-04-18 17:44:39 +02:00
|
|
|
Client_Destroy( c, NULL, reason, false );
|
|
|
|
if( conn > NONE )
|
|
|
|
Conn_Close( conn, NULL, reason, true );
|
2002-07-25 13:37:01 +02:00
|
|
|
}
|
2005-04-18 17:44:39 +02:00
|
|
|
else
|
|
|
|
Log( LOG_NOTICE, "Client with nick \"%s\" is unknown here.", Req->argv[0] );
|
2002-07-25 13:37:01 +02:00
|
|
|
|
2002-12-26 19:41:00 +01:00
|
|
|
/* Are we still connected or were we killed, too? */
|
2006-04-23 12:37:27 +02:00
|
|
|
if(( my_conn > NONE ) && ( Conn_GetClient( my_conn )))
|
2005-04-18 17:44:39 +02:00
|
|
|
return CONNECTED;
|
|
|
|
else
|
|
|
|
return DISCONNECTED;
|
2002-02-23 22:39:48 +01:00
|
|
|
} /* IRC_KILL */
|
|
|
|
|
|
|
|
|
2008-07-27 15:50:51 +02:00
|
|
|
/**
|
|
|
|
* Handler for the IRC command NOTICE.
|
|
|
|
*/
|
2005-03-19 19:43:48 +01:00
|
|
|
GLOBAL bool
|
2008-07-27 15:50:51 +02:00
|
|
|
IRC_NOTICE(CLIENT *Client, REQUEST *Req)
|
2002-09-16 11:14:45 +02:00
|
|
|
{
|
2008-06-11 20:35:50 +02:00
|
|
|
return Send_Message(Client, Req, CLIENT_USER, false);
|
2002-11-30 18:39:56 +01:00
|
|
|
} /* IRC_NOTICE */
|
2002-02-23 22:39:48 +01:00
|
|
|
|
2002-01-04 02:21:47 +01:00
|
|
|
|
2008-05-05 18:06:43 +02:00
|
|
|
/**
|
|
|
|
* Handler for the IRC command PRIVMSG.
|
|
|
|
*/
|
2005-03-19 19:43:48 +01:00
|
|
|
GLOBAL bool
|
2008-05-05 18:06:43 +02:00
|
|
|
IRC_PRIVMSG(CLIENT *Client, REQUEST *Req)
|
2002-01-28 14:05:48 +01:00
|
|
|
{
|
2008-06-11 20:35:50 +02:00
|
|
|
return Send_Message(Client, Req, CLIENT_USER, true);
|
2008-05-05 18:06:43 +02:00
|
|
|
} /* IRC_PRIVMSG */
|
2002-02-14 00:05:29 +01:00
|
|
|
|
|
|
|
|
2008-05-05 18:06:43 +02:00
|
|
|
/**
|
|
|
|
* Handler for the IRC command SQUERY.
|
|
|
|
*/
|
|
|
|
GLOBAL bool
|
|
|
|
IRC_SQUERY(CLIENT *Client, REQUEST *Req)
|
|
|
|
{
|
2008-06-11 20:35:50 +02:00
|
|
|
return Send_Message(Client, Req, CLIENT_SERVICE, true);
|
2008-05-05 18:06:43 +02:00
|
|
|
} /* IRC_SQUERY */
|
2002-02-25 18:46:27 +01:00
|
|
|
|
|
|
|
|
2005-03-19 19:43:48 +01:00
|
|
|
GLOBAL bool
|
2003-01-13 19:56:30 +01:00
|
|
|
IRC_TRACE( CLIENT *Client, REQUEST *Req )
|
|
|
|
{
|
2003-03-19 22:16:53 +01:00
|
|
|
CLIENT *from, *target, *c;
|
2003-01-13 19:56:30 +01:00
|
|
|
CONN_ID idx, idx2;
|
2005-03-19 19:43:48 +01:00
|
|
|
char user[CLIENT_USER_LEN];
|
2003-01-13 19:56:30 +01:00
|
|
|
|
|
|
|
assert( Client != NULL );
|
|
|
|
assert( Req != NULL );
|
|
|
|
|
|
|
|
/* Bad number of arguments? */
|
|
|
|
if( Req->argc > 1 ) return IRC_WriteStrClient( Client, ERR_NORECIPIENT_MSG, Client_ID( Client ), Req->command );
|
|
|
|
|
|
|
|
/* Search sender */
|
|
|
|
if( Client_Type( Client ) == CLIENT_SERVER ) from = Client_Search( Req->prefix );
|
|
|
|
else from = Client;
|
|
|
|
if( ! from ) return IRC_WriteStrClient( Client, ERR_NOSUCHNICK_MSG, Client_ID( Client ), Req->prefix );
|
|
|
|
|
|
|
|
/* Search target */
|
|
|
|
if( Req->argc == 1 ) target = Client_Search( Req->argv[0] );
|
|
|
|
else target = Client_ThisServer( );
|
|
|
|
|
|
|
|
/* Forward command to other server? */
|
|
|
|
if( target != Client_ThisServer( ))
|
|
|
|
{
|
|
|
|
if(( ! target ) || ( Client_Type( target ) != CLIENT_SERVER )) return IRC_WriteStrClient( from, ERR_NOSUCHSERVER_MSG, Client_ID( from ), Req->argv[0] );
|
|
|
|
|
|
|
|
/* Send RPL_TRACELINK back to initiator */
|
|
|
|
idx = Client_Conn( Client ); assert( idx > NONE );
|
|
|
|
idx2 = Client_Conn( Client_NextHop( target )); assert( idx2 > NONE );
|
2003-03-31 17:54:21 +02:00
|
|
|
if( ! IRC_WriteStrClient( from, RPL_TRACELINK_MSG, Client_ID( from ), PACKAGE_NAME, PACKAGE_VERSION, Client_ID( target ), Client_ID( Client_NextHop( target )), Option_String( idx2 ), time( NULL ) - Conn_StartTime( idx2 ), Conn_SendQ( idx ), Conn_SendQ( idx2 ))) return DISCONNECTED;
|
2003-01-13 19:56:30 +01:00
|
|
|
|
|
|
|
/* Forward command */
|
|
|
|
IRC_WriteStrClientPrefix( target, from, "TRACE %s", Req->argv[0] );
|
|
|
|
return CONNECTED;
|
|
|
|
}
|
|
|
|
|
2003-03-19 22:16:53 +01:00
|
|
|
/* Infos about all connected servers */
|
|
|
|
c = Client_First( );
|
|
|
|
while( c )
|
|
|
|
{
|
|
|
|
if( Client_Conn( c ) > NONE )
|
|
|
|
{
|
|
|
|
/* Local client */
|
|
|
|
if( Client_Type( c ) == CLIENT_SERVER )
|
|
|
|
{
|
|
|
|
/* Server link */
|
2004-02-28 03:18:16 +01:00
|
|
|
strlcpy( user, Client_User( c ), sizeof( user ));
|
|
|
|
if( user[0] == '~' ) strlcpy( user, "unknown", sizeof( user ));
|
|
|
|
if( ! IRC_WriteStrClient( from, RPL_TRACESERVER_MSG, Client_ID( from ), Client_ID( c ), user, Client_Hostname( c ), Client_Mask( Client_ThisServer( )), Option_String( Client_Conn( c )))) return DISCONNECTED;
|
2003-03-19 22:16:53 +01:00
|
|
|
}
|
|
|
|
if(( Client_Type( c ) == CLIENT_USER ) && ( strchr( Client_Modes( c ), 'o' )))
|
|
|
|
{
|
|
|
|
/* IRC Operator */
|
|
|
|
if( ! IRC_WriteStrClient( from, RPL_TRACEOPERATOR_MSG, Client_ID( from ), Client_ID( c ))) return DISCONNECTED;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
c = Client_Next( c );
|
|
|
|
}
|
|
|
|
|
2003-11-06 00:24:48 +01:00
|
|
|
IRC_SetPenalty( Client, 3 );
|
2003-03-31 17:54:21 +02:00
|
|
|
return IRC_WriteStrClient( from, RPL_TRACEEND_MSG, Client_ID( from ), Conf_ServerName, PACKAGE_NAME, PACKAGE_VERSION, NGIRCd_DebugLevel );
|
2003-01-13 19:56:30 +01:00
|
|
|
} /* IRC_TRACE */
|
|
|
|
|
|
|
|
|
2005-03-19 19:43:48 +01:00
|
|
|
GLOBAL bool
|
2003-01-15 14:49:20 +01:00
|
|
|
IRC_HELP( CLIENT *Client, REQUEST *Req )
|
|
|
|
{
|
|
|
|
COMMAND *cmd;
|
|
|
|
|
|
|
|
assert( Client != NULL );
|
|
|
|
assert( Req != NULL );
|
|
|
|
|
|
|
|
/* Bad number of arguments? */
|
|
|
|
if( Req->argc > 0 ) return IRC_WriteStrClient( Client, ERR_NORECIPIENT_MSG, Client_ID( Client ), Req->command );
|
|
|
|
|
|
|
|
cmd = Parse_GetCommandStruct( );
|
|
|
|
while( cmd->name )
|
|
|
|
{
|
|
|
|
if( ! IRC_WriteStrClient( Client, "NOTICE %s :%s", Client_ID( Client ), cmd->name )) return DISCONNECTED;
|
|
|
|
cmd++;
|
|
|
|
}
|
2003-11-06 00:24:48 +01:00
|
|
|
|
|
|
|
IRC_SetPenalty( Client, 2 );
|
2003-01-15 14:49:20 +01:00
|
|
|
return CONNECTED;
|
|
|
|
} /* IRC_HELP */
|
|
|
|
|
|
|
|
|
2005-07-31 22:13:07 +02:00
|
|
|
static char *
|
2003-03-19 22:16:53 +01:00
|
|
|
Option_String( CONN_ID Idx )
|
|
|
|
{
|
2005-03-19 19:43:48 +01:00
|
|
|
static char option_txt[8];
|
2006-05-10 23:24:01 +02:00
|
|
|
UINT16 options;
|
2003-03-19 22:16:53 +01:00
|
|
|
|
2006-05-10 23:24:01 +02:00
|
|
|
options = Conn_Options(Idx);
|
2003-03-19 22:16:53 +01:00
|
|
|
|
2006-05-10 23:24:01 +02:00
|
|
|
strcpy(option_txt, "F"); /* No idea what this means, but the
|
|
|
|
* original ircd sends it ... */
|
2003-12-26 16:55:07 +01:00
|
|
|
#ifdef ZLIB
|
2006-05-10 23:24:01 +02:00
|
|
|
if(options & CONN_ZIP) /* zlib compression supported. */
|
|
|
|
strcat(option_txt, "z");
|
2003-03-19 22:16:53 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
return option_txt;
|
|
|
|
} /* Option_String */
|
|
|
|
|
|
|
|
|
2008-05-05 18:06:43 +02:00
|
|
|
static bool
|
2008-06-11 20:35:50 +02:00
|
|
|
Send_Message(CLIENT * Client, REQUEST * Req, int ForceType, bool SendErrors)
|
2008-05-05 18:06:43 +02:00
|
|
|
{
|
|
|
|
CLIENT *cl, *from;
|
|
|
|
CHANNEL *chan;
|
2008-06-11 20:35:50 +02:00
|
|
|
char *currentTarget = Req->argv[0];
|
2008-07-27 17:11:40 +02:00
|
|
|
char *lastCurrentTarget = NULL;
|
2008-05-05 18:06:43 +02:00
|
|
|
|
2008-06-13 06:54:05 +02:00
|
|
|
assert(Client != NULL);
|
|
|
|
assert(Req != NULL);
|
2008-05-05 18:06:43 +02:00
|
|
|
|
2008-06-11 20:35:50 +02:00
|
|
|
if (Req->argc == 0) {
|
|
|
|
if (!SendErrors)
|
2008-08-16 14:12:03 +02:00
|
|
|
return CONNECTED;
|
2008-05-05 18:06:43 +02:00
|
|
|
return IRC_WriteStrClient(Client, ERR_NORECIPIENT_MSG,
|
|
|
|
Client_ID(Client), Req->command);
|
2008-06-11 20:35:50 +02:00
|
|
|
}
|
|
|
|
if (Req->argc == 1) {
|
|
|
|
if (!SendErrors)
|
2008-08-16 14:12:03 +02:00
|
|
|
return CONNECTED;
|
2008-05-05 18:06:43 +02:00
|
|
|
return IRC_WriteStrClient(Client, ERR_NOTEXTTOSEND_MSG,
|
|
|
|
Client_ID(Client));
|
2008-06-11 20:35:50 +02:00
|
|
|
}
|
|
|
|
if (Req->argc > 2) {
|
|
|
|
if (!SendErrors)
|
2008-08-16 14:12:03 +02:00
|
|
|
return CONNECTED;
|
2008-05-05 18:06:43 +02:00
|
|
|
return IRC_WriteStrClient(Client, ERR_NEEDMOREPARAMS_MSG,
|
|
|
|
Client_ID(Client), Req->command);
|
2008-06-11 20:35:50 +02:00
|
|
|
}
|
2008-05-05 18:06:43 +02:00
|
|
|
|
|
|
|
if (Client_Type(Client) == CLIENT_SERVER)
|
|
|
|
from = Client_Search(Req->prefix);
|
|
|
|
else
|
|
|
|
from = Client;
|
2008-07-27 15:50:51 +02:00
|
|
|
if (!from)
|
2008-05-05 18:06:43 +02:00
|
|
|
return IRC_WriteStrClient(Client, ERR_NOSUCHNICK_MSG,
|
|
|
|
Client_ID(Client), Req->prefix);
|
|
|
|
|
2008-06-13 06:54:05 +02:00
|
|
|
/* handle msgtarget = msgto *("," msgto) */
|
|
|
|
currentTarget = strtok_r(currentTarget, ",", &lastCurrentTarget);
|
2008-08-17 14:59:36 +02:00
|
|
|
ngt_UpperStr(Req->command);
|
2008-05-05 18:06:43 +02:00
|
|
|
|
2008-06-13 06:54:05 +02:00
|
|
|
while (currentTarget) {
|
|
|
|
/* Check for and handle valid <msgto> of form:
|
|
|
|
* RFC 2812 2.3.1:
|
|
|
|
* msgto = channel / ( user [ "%" host ] "@" servername )
|
|
|
|
* msgto =/ ( user "%" host ) / targetmask
|
|
|
|
* msgto =/ nickname / ( nickname "!" user "@" host )
|
|
|
|
*/
|
2008-06-11 20:35:50 +02:00
|
|
|
if (strchr(currentTarget, '!') == NULL)
|
2008-06-13 06:54:05 +02:00
|
|
|
/* nickname */
|
2008-06-11 20:35:50 +02:00
|
|
|
cl = Client_Search(currentTarget);
|
|
|
|
else
|
|
|
|
cl = NULL;
|
2008-06-13 06:54:05 +02:00
|
|
|
|
2008-06-11 20:35:50 +02:00
|
|
|
if (cl == NULL) {
|
2008-06-13 06:54:05 +02:00
|
|
|
/* If currentTarget isn't a nickname check for:
|
|
|
|
* user ["%" host] "@" servername
|
|
|
|
* user "%" host
|
|
|
|
* nickname "!" user "@" host
|
|
|
|
*/
|
|
|
|
char target[COMMAND_LEN];
|
2008-06-11 20:35:50 +02:00
|
|
|
char * nick = NULL;
|
|
|
|
char * user = NULL;
|
|
|
|
char * host = NULL;
|
|
|
|
char * server = NULL;
|
|
|
|
|
2008-06-13 06:54:05 +02:00
|
|
|
strlcpy(target, currentTarget, COMMAND_LEN);
|
2008-06-11 20:35:50 +02:00
|
|
|
server = strchr(target, '@');
|
|
|
|
if (server) {
|
|
|
|
*server = '\0';
|
|
|
|
server++;
|
|
|
|
}
|
|
|
|
host = strchr(target, '%');
|
|
|
|
if (host) {
|
|
|
|
*host = '\0';
|
|
|
|
host++;
|
|
|
|
}
|
|
|
|
user = strchr(target, '!');
|
|
|
|
if (user) {
|
2008-06-13 06:54:05 +02:00
|
|
|
/* msgto form: nick!user@host */
|
2008-06-11 20:35:50 +02:00
|
|
|
*user = '\0';
|
|
|
|
user++;
|
|
|
|
nick = target;
|
2008-06-13 06:54:05 +02:00
|
|
|
host = server; /* not "@server" but "@host" */
|
2008-06-11 20:35:50 +02:00
|
|
|
} else {
|
|
|
|
user = target;
|
|
|
|
}
|
|
|
|
|
2008-06-13 06:54:05 +02:00
|
|
|
for (cl = Client_First(); cl != NULL; cl = Client_Next(cl)) {
|
2008-08-17 17:29:41 +02:00
|
|
|
if (Client_Type(cl) != CLIENT_USER &&
|
|
|
|
Client_Type(cl) != CLIENT_SERVICE)
|
2008-06-13 06:54:05 +02:00
|
|
|
continue;
|
2008-08-17 17:13:39 +02:00
|
|
|
if (nick != NULL && host != NULL) {
|
2008-06-13 06:54:05 +02:00
|
|
|
if (strcmp(nick, Client_ID(cl)) == 0 &&
|
2008-07-27 15:50:51 +02:00
|
|
|
strcmp(user, Client_User(cl)) == 0 &&
|
|
|
|
strcasecmp(host, Client_Hostname(cl)) == 0)
|
2008-06-13 06:54:05 +02:00
|
|
|
break;
|
|
|
|
else
|
2008-06-11 20:35:50 +02:00
|
|
|
continue;
|
|
|
|
}
|
2008-06-13 06:54:05 +02:00
|
|
|
if (strcasecmp(user, Client_User(cl)) != 0)
|
|
|
|
continue;
|
2008-07-27 15:50:51 +02:00
|
|
|
if (host != NULL && strcasecmp(host,
|
|
|
|
Client_Hostname(cl)) != 0)
|
2008-06-13 06:54:05 +02:00
|
|
|
continue;
|
|
|
|
if (server != NULL && strcasecmp(server,
|
2008-07-27 15:50:51 +02:00
|
|
|
Client_ID(Client_Introducer(cl))) != 0)
|
2008-06-13 06:54:05 +02:00
|
|
|
continue;
|
|
|
|
break;
|
2008-06-11 20:35:50 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cl) {
|
|
|
|
/* Target is a user, enforce type */
|
2008-08-16 17:52:02 +02:00
|
|
|
#ifndef STRICT_RFC
|
|
|
|
if (Client_Type(cl) != ForceType &&
|
|
|
|
!(ForceType == CLIENT_USER &&
|
|
|
|
(Client_Type(cl) == CLIENT_USER ||
|
|
|
|
Client_Type(cl) == CLIENT_SERVICE))) {
|
|
|
|
#else
|
2008-06-11 20:35:50 +02:00
|
|
|
if (Client_Type(cl) != ForceType) {
|
2008-08-16 17:52:02 +02:00
|
|
|
#endif
|
2008-06-11 20:35:50 +02:00
|
|
|
if (!SendErrors)
|
2008-08-16 14:12:03 +02:00
|
|
|
return CONNECTED;
|
|
|
|
return IRC_WriteStrClient(from, ERR_NOSUCHNICK_MSG,
|
2008-06-11 20:35:50 +02:00
|
|
|
Client_ID(from),
|
2008-08-16 14:12:03 +02:00
|
|
|
currentTarget);
|
|
|
|
}
|
2008-08-17 15:19:45 +02:00
|
|
|
|
|
|
|
#ifndef STRICT_RFC
|
|
|
|
if (ForceType == CLIENT_SERVICE &&
|
|
|
|
(Conn_Options(Client_Conn(Client_NextHop(cl)))
|
|
|
|
& CONN_RFC1459)) {
|
|
|
|
/* SQUERY command but RFC 1459 link: convert
|
|
|
|
* request to PRIVMSG command */
|
|
|
|
Req->command = "PRIVMSG";
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2008-08-16 14:12:03 +02:00
|
|
|
if (SendErrors && (Client_Type(Client) != CLIENT_SERVER)
|
|
|
|
&& strchr(Client_Modes(cl), 'a')) {
|
2008-06-11 20:35:50 +02:00
|
|
|
/* Target is away */
|
2008-08-16 14:12:03 +02:00
|
|
|
if (!IRC_WriteStrClient(from, RPL_AWAY_MSG,
|
|
|
|
Client_ID(from),
|
|
|
|
Client_ID(cl),
|
|
|
|
Client_Away(cl)))
|
2008-06-11 20:35:50 +02:00
|
|
|
return DISCONNECTED;
|
2008-06-13 06:54:05 +02:00
|
|
|
}
|
|
|
|
if (Client_Conn(from) > NONE) {
|
2008-06-11 20:35:50 +02:00
|
|
|
Conn_UpdateIdle(Client_Conn(from));
|
|
|
|
}
|
2008-08-16 18:26:19 +02:00
|
|
|
if (!IRC_WriteStrClientPrefix(cl, from, "%s %s :%s",
|
|
|
|
Req->command, Client_ID(cl),
|
|
|
|
Req->argv[1]))
|
2008-08-16 14:12:03 +02:00
|
|
|
return DISCONNECTED;
|
2009-01-18 00:12:28 +01:00
|
|
|
} else if (ForceType != CLIENT_SERVICE
|
|
|
|
&& (chan = Channel_Search(currentTarget))) {
|
|
|
|
if (!Channel_Write(chan, from, Client, Req->command,
|
|
|
|
SendErrors, Req->argv[1]))
|
|
|
|
return DISCONNECTED;
|
2008-08-17 15:06:33 +02:00
|
|
|
} else if (ForceType != CLIENT_SERVICE
|
2009-01-18 00:33:34 +01:00
|
|
|
/* $#: server/target mask, RFC 2812, sec. 3.3.1 */
|
2008-08-17 15:06:33 +02:00
|
|
|
&& strchr("$#", currentTarget[0])
|
2008-07-27 15:50:51 +02:00
|
|
|
&& strchr(currentTarget, '.')) {
|
2008-06-13 06:54:05 +02:00
|
|
|
/* targetmask */
|
2008-08-16 18:26:19 +02:00
|
|
|
if (!Send_Message_Mask(from, Req->command, currentTarget,
|
2008-07-27 15:50:51 +02:00
|
|
|
Req->argv[1], SendErrors))
|
2008-08-16 14:12:03 +02:00
|
|
|
return DISCONNECTED;
|
2008-06-11 20:35:50 +02:00
|
|
|
} else {
|
|
|
|
if (!SendErrors)
|
2008-08-16 14:12:03 +02:00
|
|
|
return CONNECTED;
|
2008-06-11 20:35:50 +02:00
|
|
|
if (!IRC_WriteStrClient(from, ERR_NOSUCHNICK_MSG,
|
|
|
|
Client_ID(from), currentTarget))
|
2008-08-16 14:12:03 +02:00
|
|
|
return DISCONNECTED;
|
2008-06-11 20:35:50 +02:00
|
|
|
}
|
|
|
|
|
2008-06-13 06:54:05 +02:00
|
|
|
currentTarget = strtok_r(NULL, ",", &lastCurrentTarget);
|
2008-05-05 18:06:43 +02:00
|
|
|
}
|
|
|
|
|
2008-06-11 20:35:50 +02:00
|
|
|
return CONNECTED;
|
2008-05-05 18:06:43 +02:00
|
|
|
} /* Send_Message */
|
|
|
|
|
|
|
|
|
2008-06-11 20:35:50 +02:00
|
|
|
static bool
|
2008-08-16 18:26:19 +02:00
|
|
|
Send_Message_Mask(CLIENT * from, char * command, char * targetMask,
|
|
|
|
char * message, bool SendErrors)
|
2008-06-11 20:35:50 +02:00
|
|
|
{
|
|
|
|
CLIENT *cl;
|
|
|
|
bool client_match;
|
|
|
|
char *mask = targetMask + 1;
|
2009-01-18 00:33:34 +01:00
|
|
|
const char *check_wildcards;
|
2008-06-11 20:35:50 +02:00
|
|
|
|
|
|
|
cl = NULL;
|
|
|
|
|
|
|
|
if (strchr(Client_Modes(from), 'o') == NULL) {
|
|
|
|
if (!SendErrors)
|
|
|
|
return true;
|
2008-07-27 15:50:51 +02:00
|
|
|
return IRC_WriteStrClient(from, ERR_NOPRIVILEGES_MSG,
|
|
|
|
Client_ID(from));
|
2008-06-11 20:35:50 +02:00
|
|
|
}
|
|
|
|
|
2009-01-18 00:33:34 +01:00
|
|
|
/*
|
|
|
|
* RFC 2812, sec. 3.3.1 requires that targetMask have at least one
|
|
|
|
* dot (".") and no wildcards ("*", "?") following the last one.
|
|
|
|
*/
|
|
|
|
check_wildcards = strchr(targetMask, '.');
|
|
|
|
assert(check_wildcards != NULL);
|
|
|
|
if (check_wildcards &&
|
|
|
|
check_wildcards[strcspn(check_wildcards, "*?")])
|
|
|
|
{
|
|
|
|
if (!SendErrors)
|
|
|
|
return true;
|
|
|
|
return IRC_WriteStrClient(from, ERR_WILDTOPLEVEL, targetMask);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* #: hostmask, see RFC 2812, sec. 3.3.1 */
|
2008-06-11 20:35:50 +02:00
|
|
|
if (targetMask[0] == '#') {
|
|
|
|
for (cl = Client_First(); cl != NULL; cl = Client_Next(cl)) {
|
|
|
|
if (Client_Type(cl) != CLIENT_USER)
|
|
|
|
continue;
|
|
|
|
client_match = MatchCaseInsensitive(mask, Client_Hostname(cl));
|
|
|
|
if (client_match)
|
2008-08-16 18:26:19 +02:00
|
|
|
if (!IRC_WriteStrClientPrefix(cl, from, "%s %s :%s",
|
|
|
|
command, Client_ID(cl), message))
|
2008-06-11 20:35:50 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
} else {
|
2009-01-18 00:33:34 +01:00
|
|
|
assert(targetMask[0] == '$'); /* $: server mask, see RFC 2812, sec. 3.3.1 */
|
2008-06-11 20:35:50 +02:00
|
|
|
for (cl = Client_First(); cl != NULL; cl = Client_Next(cl)) {
|
|
|
|
if (Client_Type(cl) != CLIENT_USER)
|
|
|
|
continue;
|
2008-06-13 06:54:05 +02:00
|
|
|
client_match = MatchCaseInsensitive(mask,
|
2008-07-27 15:50:51 +02:00
|
|
|
Client_ID(Client_Introducer(cl)));
|
2008-06-11 20:35:50 +02:00
|
|
|
if (client_match)
|
2008-08-16 18:26:19 +02:00
|
|
|
if (!IRC_WriteStrClientPrefix(cl, from, "%s %s :%s",
|
|
|
|
command, Client_ID(cl), message))
|
2008-06-11 20:35:50 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return CONNECTED;
|
|
|
|
} /* Send_Message_Mask */
|
|
|
|
|
|
|
|
|
2001-12-14 09:13:43 +01:00
|
|
|
/* -eof- */
|