[Parser]: Fix minor sparse warnings
parse.c:56:9: warning: symbol 'My_Commands' was not declared. Should it be static? parse.c:107:9: warning: symbol 'My_Numerics' was not declared. Should it be static? Also move handling of numerics into a seperate helper function.
This commit is contained in:
parent
d1364ab488
commit
4add9c29ed
|
@ -12,7 +12,7 @@
|
||||||
|
|
||||||
#include "portab.h"
|
#include "portab.h"
|
||||||
|
|
||||||
static char UNUSED id[] = "$Id: parse.c,v 1.69 2007/11/21 12:16:36 alex Exp $";
|
static char UNUSED id[] = "$Id: parse.c,v 1.70 2008/01/13 16:12:49 fw Exp $";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @file
|
* @file
|
||||||
|
@ -52,8 +52,13 @@ static char UNUSED id[] = "$Id: parse.c,v 1.69 2007/11/21 12:16:36 alex Exp $";
|
||||||
|
|
||||||
#include "exp.h"
|
#include "exp.h"
|
||||||
|
|
||||||
|
struct _NUMERIC {
|
||||||
|
int numeric;
|
||||||
|
bool (*function) PARAMS(( CLIENT *Client, REQUEST *Request ));
|
||||||
|
};
|
||||||
|
|
||||||
COMMAND My_Commands[] =
|
|
||||||
|
static COMMAND My_Commands[] =
|
||||||
{
|
{
|
||||||
{ "ADMIN", IRC_ADMIN, CLIENT_USER|CLIENT_SERVER, 0, 0, 0 },
|
{ "ADMIN", IRC_ADMIN, CLIENT_USER|CLIENT_SERVER, 0, 0, 0 },
|
||||||
{ "AWAY", IRC_AWAY, CLIENT_USER, 0, 0, 0 },
|
{ "AWAY", IRC_AWAY, CLIENT_USER, 0, 0, 0 },
|
||||||
|
@ -104,14 +109,6 @@ COMMAND My_Commands[] =
|
||||||
{ NULL, NULL, 0x0, 0, 0, 0 } /* Ende-Marke */
|
{ NULL, NULL, 0x0, 0, 0, 0 } /* Ende-Marke */
|
||||||
};
|
};
|
||||||
|
|
||||||
NUMERIC My_Numerics[] =
|
|
||||||
{
|
|
||||||
{ 005, IRC_Num_ISUPPORT },
|
|
||||||
{ 376, IRC_Num_ENDOFMOTD },
|
|
||||||
{ 0, NULL } /* end marker */
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
static void Init_Request PARAMS(( REQUEST *Req ));
|
static void Init_Request PARAMS(( REQUEST *Req ));
|
||||||
|
|
||||||
static bool Validate_Prefix PARAMS(( CONN_ID Idx, REQUEST *Req, bool *Closed ));
|
static bool Validate_Prefix PARAMS(( CONN_ID Idx, REQUEST *Req, bool *Closed ));
|
||||||
|
@ -120,6 +117,7 @@ static bool Validate_Args PARAMS(( CONN_ID Idx, REQUEST *Req, bool *Closed ));
|
||||||
|
|
||||||
static bool Handle_Request PARAMS(( CONN_ID Idx, REQUEST *Req ));
|
static bool Handle_Request PARAMS(( CONN_ID Idx, REQUEST *Req ));
|
||||||
|
|
||||||
|
#define ARRAY_SIZE(x) (sizeof(x)/sizeof((x)[0]))
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Return the pointer to the global "IRC command structure".
|
* Return the pointer to the global "IRC command structure".
|
||||||
|
@ -347,18 +345,83 @@ Validate_Args( UNUSED CONN_ID Idx, UNUSED REQUEST *Req, bool *Closed )
|
||||||
} /* Validate_Args */
|
} /* Validate_Args */
|
||||||
|
|
||||||
|
|
||||||
|
/* Command is a status code ("numeric") from another server */
|
||||||
|
static bool
|
||||||
|
Handle_Numeric(CLIENT *client, REQUEST *Req)
|
||||||
|
{
|
||||||
|
static const struct _NUMERIC Numerics[] = {
|
||||||
|
{ 005, IRC_Num_ISUPPORT },
|
||||||
|
{ 376, IRC_Num_ENDOFMOTD }
|
||||||
|
};
|
||||||
|
int i, num;
|
||||||
|
char str[LINE_LEN];
|
||||||
|
CLIENT *prefix, *target = NULL;
|
||||||
|
|
||||||
|
/* Determine target */
|
||||||
|
if (Req->argc > 0)
|
||||||
|
target = Client_Search(Req->argv[0]);
|
||||||
|
|
||||||
|
if (!target) {
|
||||||
|
/* Status code without target!? */
|
||||||
|
if (Req->argc > 0)
|
||||||
|
Log(LOG_WARNING,
|
||||||
|
"Unknown target for status code %s: \"%s\"",
|
||||||
|
Req->command, Req->argv[0]);
|
||||||
|
else
|
||||||
|
Log(LOG_WARNING,
|
||||||
|
"Unknown target for status code %s!",
|
||||||
|
Req->command);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
if (target == Client_ThisServer()) {
|
||||||
|
/* This server is the target of the numeric */
|
||||||
|
num = atoi(Req->command);
|
||||||
|
|
||||||
|
for (i = 0; i < (int) ARRAY_SIZE(Numerics); i++) {
|
||||||
|
if (num == Numerics[i].numeric)
|
||||||
|
return Numerics[i].function(client, Req);
|
||||||
|
}
|
||||||
|
|
||||||
|
LogDebug("Ignored status code %s from \"%s\".",
|
||||||
|
Req->command, Client_ID(client));
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Determine source */
|
||||||
|
if (! Req->prefix[0]) {
|
||||||
|
/* Oops, no prefix!? */
|
||||||
|
Log(LOG_WARNING, "Got status code %s from \"%s\" without prefix!?",
|
||||||
|
Req->command, Client_ID(client));
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
prefix = Client_Search(Req->prefix);
|
||||||
|
if (! prefix) { /* Oops, unknown prefix!? */
|
||||||
|
Log(LOG_WARNING, "Got status code %s from unknown source: \"%s\"", Req->command, Req->prefix);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Forward status code */
|
||||||
|
strlcpy(str, Req->command, sizeof(str));
|
||||||
|
for (i = 0; i < Req->argc; i++) {
|
||||||
|
if (i < Req->argc - 1)
|
||||||
|
strlcat(str, " ", sizeof(str));
|
||||||
|
else
|
||||||
|
strlcat(str, " :", sizeof(str));
|
||||||
|
strlcat(str, Req->argv[i], sizeof(str));
|
||||||
|
}
|
||||||
|
return IRC_WriteStrClientPrefix(target, prefix, "%s", str);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
static bool
|
static bool
|
||||||
Handle_Request( CONN_ID Idx, REQUEST *Req )
|
Handle_Request( CONN_ID Idx, REQUEST *Req )
|
||||||
{
|
{
|
||||||
/* Client-Request verarbeiten. Bei einem schwerwiegenden Fehler
|
/* Client-Request verarbeiten. Bei einem schwerwiegenden Fehler
|
||||||
* wird die Verbindung geschlossen und false geliefert. */
|
* wird die Verbindung geschlossen und false geliefert. */
|
||||||
|
CLIENT *client;
|
||||||
CLIENT *client, *target, *prefix;
|
bool result = true;
|
||||||
char str[LINE_LEN];
|
|
||||||
bool result;
|
|
||||||
COMMAND *cmd;
|
COMMAND *cmd;
|
||||||
NUMERIC *num;
|
|
||||||
int i;
|
|
||||||
|
|
||||||
assert( Idx >= 0 );
|
assert( Idx >= 0 );
|
||||||
assert( Req != NULL );
|
assert( Req != NULL );
|
||||||
|
@ -370,107 +433,40 @@ Handle_Request( CONN_ID Idx, REQUEST *Req )
|
||||||
/* Numeric? */
|
/* Numeric? */
|
||||||
if ((Client_Type(client) == CLIENT_SERVER ||
|
if ((Client_Type(client) == CLIENT_SERVER ||
|
||||||
Client_Type(client) == CLIENT_UNKNOWNSERVER)
|
Client_Type(client) == CLIENT_UNKNOWNSERVER)
|
||||||
&& strlen(Req->command) == 3 && atoi(Req->command) > 1) {
|
&& strlen(Req->command) == 3 && atoi(Req->command) > 1)
|
||||||
/* Command is a status code ("numeric") from an other server */
|
return Handle_Numeric(client, Req);
|
||||||
|
|
||||||
/* Determine target */
|
|
||||||
if (Req->argc > 0)
|
|
||||||
target = Client_Search( Req->argv[0] );
|
|
||||||
else
|
|
||||||
target = NULL;
|
|
||||||
if (!target) {
|
|
||||||
/* Status code without target!? */
|
|
||||||
if (Req->argc > 0)
|
|
||||||
Log(LOG_WARNING,
|
|
||||||
"Unknown target for status code %s: \"%s\"",
|
|
||||||
Req->command, Req->argv[0]);
|
|
||||||
else
|
|
||||||
Log(LOG_WARNING,
|
|
||||||
"Unknown target for status code %s!",
|
|
||||||
Req->command);
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
if (target == Client_ThisServer()) {
|
|
||||||
/* This server is the target of the numeric */
|
|
||||||
i = atoi(Req->command);
|
|
||||||
|
|
||||||
num = My_Numerics;
|
|
||||||
while (num->numeric > 0) {
|
|
||||||
if (i != num->numeric) {
|
|
||||||
num++;
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
result = (num->function)(client, Req);
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
LogDebug("Ignored status code %s from \"%s\".",
|
|
||||||
Req->command, Client_ID(client));
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Determine source */
|
|
||||||
if( ! Req->prefix[0] )
|
|
||||||
{
|
|
||||||
/* Oops, no prefix!? */
|
|
||||||
Log( LOG_WARNING, "Got status code %s from \"%s\" without prefix!?", Req->command, Client_ID( client ));
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
else prefix = Client_Search( Req->prefix );
|
|
||||||
if( ! prefix )
|
|
||||||
{
|
|
||||||
/* Oops, unknown prefix!? */
|
|
||||||
Log( LOG_WARNING, "Got status code %s from unknown source: \"%s\"", Req->command, Req->prefix );
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Forward status code */
|
|
||||||
strlcpy( str, Req->command, sizeof( str ));
|
|
||||||
for( i = 0; i < Req->argc; i++ )
|
|
||||||
{
|
|
||||||
if( i < Req->argc - 1 ) strlcat( str, " ", sizeof( str ));
|
|
||||||
else strlcat( str, " :", sizeof( str ));
|
|
||||||
strlcat( str, Req->argv[i], sizeof( str ));
|
|
||||||
}
|
|
||||||
return IRC_WriteStrClientPrefix( target, prefix, "%s", str );
|
|
||||||
}
|
|
||||||
|
|
||||||
cmd = My_Commands;
|
cmd = My_Commands;
|
||||||
while( cmd->name )
|
while (cmd->name) {
|
||||||
{
|
|
||||||
/* Befehl suchen */
|
/* Befehl suchen */
|
||||||
if( strcasecmp( Req->command, cmd->name ) != 0 )
|
if (strcasecmp(Req->command, cmd->name) != 0) {
|
||||||
{
|
cmd++;
|
||||||
cmd++; continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
if( Client_Type( client ) & cmd->type )
|
if (!(Client_Type(client) & cmd->type))
|
||||||
{
|
return IRC_WriteStrClient(client, ERR_NOTREGISTERED_MSG, Client_ID(client));
|
||||||
/* Command is allowed for this client: call it and count produced bytes */
|
|
||||||
Conn_ResetWCounter( );
|
|
||||||
result = (cmd->function)( client, Req );
|
|
||||||
cmd->bytes += Conn_WCounter( );
|
|
||||||
|
|
||||||
/* Adjust counters */
|
/* Command is allowed for this client: call it and count produced bytes */
|
||||||
if( Client_Type( client ) != CLIENT_SERVER ) cmd->lcount++;
|
Conn_ResetWCounter();
|
||||||
else cmd->rcount++;
|
result = (cmd->function)(client, Req);
|
||||||
|
cmd->bytes += Conn_WCounter();
|
||||||
|
|
||||||
return result;
|
/* Adjust counters */
|
||||||
}
|
if (Client_Type(client) != CLIENT_SERVER)
|
||||||
|
cmd->lcount++;
|
||||||
else
|
else
|
||||||
{
|
cmd->rcount++;
|
||||||
/* Befehl ist fuer diesen Client-Typ nicht erlaubt! */
|
return result;
|
||||||
return IRC_WriteStrClient( client, ERR_NOTREGISTERED_MSG, Client_ID( client ));
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if( Client_Type( client ) != CLIENT_USER &&
|
if (Client_Type( client ) != CLIENT_USER &&
|
||||||
Client_Type( client ) != CLIENT_SERVER &&
|
Client_Type( client ) != CLIENT_SERVER &&
|
||||||
Client_Type( client ) != CLIENT_SERVICE )
|
Client_Type( client ) != CLIENT_SERVICE )
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
/* Unknown command and registered connection: generate error: */
|
/* Unknown command and registered connection: generate error: */
|
||||||
Log( LOG_DEBUG, "Connection %d: Unknown command \"%s\", %d %s,%s prefix.",
|
LogDebug("Connection %d: Unknown command \"%s\", %d %s,%s prefix.",
|
||||||
Client_Conn( client ), Req->command, Req->argc,
|
Client_Conn( client ), Req->command, Req->argc,
|
||||||
Req->argc == 1 ? "parameter" : "parameters",
|
Req->argc == 1 ? "parameter" : "parameters",
|
||||||
Req->prefix ? "" : " no" );
|
Req->prefix ? "" : " no" );
|
||||||
|
@ -479,10 +475,8 @@ Handle_Request( CONN_ID Idx, REQUEST *Req )
|
||||||
result = IRC_WriteStrClient(client, ERR_UNKNOWNCOMMAND_MSG,
|
result = IRC_WriteStrClient(client, ERR_UNKNOWNCOMMAND_MSG,
|
||||||
Client_ID(client), Req->command);
|
Client_ID(client), Req->command);
|
||||||
Conn_SetPenalty(Idx, 1);
|
Conn_SetPenalty(Idx, 1);
|
||||||
return result;
|
|
||||||
}
|
}
|
||||||
|
return result;
|
||||||
return true;
|
|
||||||
} /* Handle_Request */
|
} /* Handle_Request */
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
* (at your option) any later version.
|
* (at your option) any later version.
|
||||||
* Please read the file COPYING, README and AUTHORS for more information.
|
* Please read the file COPYING, README and AUTHORS for more information.
|
||||||
*
|
*
|
||||||
* $Id: parse.h,v 1.12 2007/11/21 12:16:36 alex Exp $
|
* $Id: parse.h,v 1.13 2008/01/13 16:12:49 fw Exp $
|
||||||
*
|
*
|
||||||
* IRC command parser and validator (header)
|
* IRC command parser and validator (header)
|
||||||
*/
|
*/
|
||||||
|
@ -38,18 +38,10 @@ typedef struct _COMMAND
|
||||||
} COMMAND;
|
} COMMAND;
|
||||||
|
|
||||||
|
|
||||||
typedef struct _NUMERIC
|
|
||||||
{
|
|
||||||
int numeric; /* numeric */
|
|
||||||
bool (*function) PARAMS(( CLIENT *Client, REQUEST *Request ));
|
|
||||||
} NUMERIC;
|
|
||||||
|
|
||||||
|
|
||||||
GLOBAL bool Parse_Request PARAMS((CONN_ID Idx, char *Request ));
|
GLOBAL bool Parse_Request PARAMS((CONN_ID Idx, char *Request ));
|
||||||
|
|
||||||
GLOBAL COMMAND *Parse_GetCommandStruct PARAMS(( void ));
|
GLOBAL COMMAND *Parse_GetCommandStruct PARAMS(( void ));
|
||||||
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue