[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:
Florian Westphal 2008-01-13 16:12:49 +00:00
parent d1364ab488
commit 4add9c29ed
2 changed files with 101 additions and 115 deletions

View File

@ -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,37 +345,22 @@ 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 static bool
Handle_Request( CONN_ID Idx, REQUEST *Req ) Handle_Numeric(CLIENT *client, REQUEST *Req)
{ {
/* Client-Request verarbeiten. Bei einem schwerwiegenden Fehler static const struct _NUMERIC Numerics[] = {
* wird die Verbindung geschlossen und false geliefert. */ { 005, IRC_Num_ISUPPORT },
{ 376, IRC_Num_ENDOFMOTD }
CLIENT *client, *target, *prefix; };
int i, num;
char str[LINE_LEN]; char str[LINE_LEN];
bool result; CLIENT *prefix, *target = NULL;
COMMAND *cmd;
NUMERIC *num;
int i;
assert( Idx >= 0 );
assert( Req != NULL );
assert( Req->command != NULL );
client = Conn_GetClient( Idx );
assert( client != NULL );
/* Numeric? */
if ((Client_Type(client) == CLIENT_SERVER ||
Client_Type(client) == CLIENT_UNKNOWNSERVER)
&& strlen(Req->command) == 3 && atoi(Req->command) > 1) {
/* Command is a status code ("numeric") from an other server */
/* Determine target */ /* Determine target */
if (Req->argc > 0) if (Req->argc > 0)
target = Client_Search( Req->argv[0] ); target = Client_Search(Req->argv[0]);
else
target = NULL;
if (!target) { if (!target) {
/* Status code without target!? */ /* Status code without target!? */
if (Req->argc > 0) if (Req->argc > 0)
@ -392,16 +375,11 @@ Handle_Request( CONN_ID Idx, REQUEST *Req )
} }
if (target == Client_ThisServer()) { if (target == Client_ThisServer()) {
/* This server is the target of the numeric */ /* This server is the target of the numeric */
i = atoi(Req->command); num = atoi(Req->command);
num = My_Numerics; for (i = 0; i < (int) ARRAY_SIZE(Numerics); i++) {
while (num->numeric > 0) { if (num == Numerics[i].numeric)
if (i != num->numeric) { return Numerics[i].function(client, Req);
num++;
continue;
}
result = (num->function)(client, Req);
return result;
} }
LogDebug("Ignored status code %s from \"%s\".", LogDebug("Ignored status code %s from \"%s\".",
@ -410,67 +388,85 @@ Handle_Request( CONN_ID Idx, REQUEST *Req )
} }
/* Determine source */ /* Determine source */
if( ! Req->prefix[0] ) if (! Req->prefix[0]) {
{
/* Oops, no prefix!? */ /* Oops, no prefix!? */
Log( LOG_WARNING, "Got status code %s from \"%s\" without prefix!?", Req->command, Client_ID( client )); Log(LOG_WARNING, "Got status code %s from \"%s\" without prefix!?",
Req->command, Client_ID(client));
return true; return true;
} }
else prefix = Client_Search( Req->prefix );
if( ! prefix ) prefix = Client_Search(Req->prefix);
{ if (! prefix) { /* Oops, unknown prefix!? */
/* Oops, unknown prefix!? */ Log(LOG_WARNING, "Got status code %s from unknown source: \"%s\"", Req->command, Req->prefix);
Log( LOG_WARNING, "Got status code %s from unknown source: \"%s\"", Req->command, Req->prefix );
return true; return true;
} }
/* Forward status code */ /* Forward status code */
strlcpy( str, Req->command, sizeof( str )); strlcpy(str, Req->command, sizeof(str));
for( i = 0; i < Req->argc; i++ ) for (i = 0; i < Req->argc; i++) {
{ if (i < Req->argc - 1)
if( i < Req->argc - 1 ) strlcat( str, " ", sizeof( str )); strlcat(str, " ", sizeof(str));
else strlcat( str, " :", sizeof( str )); else
strlcat( str, Req->argv[i], sizeof( str )); strlcat(str, " :", sizeof(str));
} strlcat(str, Req->argv[i], sizeof(str));
return IRC_WriteStrClientPrefix( target, prefix, "%s", str );
} }
return IRC_WriteStrClientPrefix(target, prefix, "%s", str);
}
static bool
Handle_Request( CONN_ID Idx, REQUEST *Req )
{
/* Client-Request verarbeiten. Bei einem schwerwiegenden Fehler
* wird die Verbindung geschlossen und false geliefert. */
CLIENT *client;
bool result = true;
COMMAND *cmd;
assert( Idx >= 0 );
assert( Req != NULL );
assert( Req->command != NULL );
client = Conn_GetClient( Idx );
assert( client != NULL );
/* Numeric? */
if ((Client_Type(client) == CLIENT_SERVER ||
Client_Type(client) == CLIENT_UNKNOWNSERVER)
&& strlen(Req->command) == 3 && atoi(Req->command) > 1)
return Handle_Numeric(client, Req);
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 */ /* Command is allowed for this client: call it and count produced bytes */
Conn_ResetWCounter( ); Conn_ResetWCounter();
result = (cmd->function)( client, Req ); result = (cmd->function)(client, Req);
cmd->bytes += Conn_WCounter( ); cmd->bytes += Conn_WCounter();
/* Adjust counters */ /* Adjust counters */
if( Client_Type( client ) != CLIENT_SERVER ) cmd->lcount++; if (Client_Type(client) != CLIENT_SERVER)
else cmd->rcount++; cmd->lcount++;
else
cmd->rcount++;
return result; return result;
} }
else
{
/* Befehl ist fuer diesen Client-Typ nicht erlaubt! */
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 */

View File

@ -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