/* * ngIRCd -- The Next Generation IRC Daemon * Copyright (c)2001,2002 by Alexander Barton (alex@barton.de) * * Dieses Programm ist freie Software. Sie koennen es unter den Bedingungen * der GNU General Public License (GPL), wie von der Free Software Foundation * herausgegeben, weitergeben und/oder modifizieren, entweder unter Version 2 * der Lizenz oder (wenn Sie es wuenschen) jeder spaeteren Version. * Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste * der an ngIRCd beteiligten Autoren finden Sie in der Datei AUTHORS. * * $Id: parse.c,v 1.32 2002/04/23 19:50:27 alex Exp $ * * parse.c: Parsen der Client-Anfragen */ #include "portab.h" #include "imp.h" #include #include #include #include #include "ngircd.h" #include "client.h" #include "conn.h" #include "defines.h" #include "irc.h" #include "irc-channel.h" #include "irc-login.h" #include "irc-mode.h" #include "irc-oper.h" #include "irc-server.h" #include "irc-write.h" #include "log.h" #include "messages.h" #include "tool.h" #include "exp.h" #include "parse.h" LOCAL VOID Init_Request( REQUEST *Req ); LOCAL BOOLEAN Parse_Error( CONN_ID Idx, CHAR *Error ); LOCAL BOOLEAN Validate_Prefix( REQUEST *Req ); LOCAL BOOLEAN Validate_Command( REQUEST *Req ); LOCAL BOOLEAN Validate_Args( REQUEST *Req ); LOCAL BOOLEAN Handle_Request( CONN_ID Idx, REQUEST *Req ); GLOBAL BOOLEAN Parse_Request( CONN_ID Idx, CHAR *Request ) { /* Client-Request parsen. Bei einem schwerwiegenden Fehler wird * die Verbindung geschlossen und FALSE geliefert. * Der Aufbau gueltiger Requests ist in RFC 2812, 2.3 definiert. */ REQUEST req; CHAR *start, *ptr; assert( Idx >= 0 ); assert( Request != NULL ); #ifdef SNIFFER if( NGIRCd_Sniffer ) Log( LOG_DEBUG, " <- connection %d: '%s'.", Idx, Request ); #endif Init_Request( &req ); /* Fuehrendes und folgendes "Geraffel" verwerfen */ ngt_TrimStr( Request ); /* gibt es ein Prefix? */ if( Request[0] == ':' ) { /* Prefix vorhanden */ req.prefix = Request + 1; ptr = strchr( Request, ' ' ); if( ! ptr ) return Parse_Error( Idx, "Prefix without command!?" ); *ptr = '\0'; #ifndef STRICT_RFC /* multiple Leerzeichen als Trenner zwischen * Prefix und Befehl ignorieren */ while( *(ptr + 1) == ' ' ) ptr++; #endif start = ptr + 1; } else start = Request; if( ! Validate_Prefix( &req )) return Parse_Error( Idx, "Invalid prefix"); /* Befehl */ ptr = strchr( start, ' ' ); if( ptr ) { *ptr = '\0'; #ifndef STRICT_RFC /* multiple Leerzeichen als Trenner vor *Parametertrennern ignorieren */ while( *(ptr + 1) == ' ' ) ptr++; #endif } req.command = start; if( ! Validate_Command( &req )) return Parse_Error( Idx, "Invalid command" ); /* Argumente, Parameter */ if( ptr ) { /* Prinzipiell gibt es welche :-) */ start = ptr + 1; while( start ) { /* Parameter-String "zerlegen" */ if( start[0] == ':' ) { req.argv[req.argc] = start + 1; ptr = NULL; } else { req.argv[req.argc] = start; ptr = strchr( start, ' ' ); if( ptr ) { *ptr = '\0'; #ifndef STRICT_RFC /* multiple Leerzeichen als * Parametertrenner ignorieren */ while( *(ptr + 1) == ' ' ) ptr++; #endif } } req.argc++; if( start[0] == ':' ) break; if( req.argc > 14 ) break; if( ptr ) start = ptr + 1; else start = NULL; } } if( ! Validate_Args( &req )) return Parse_Error( Idx, "Invalid argument(s)" ); return Handle_Request( Idx, &req ); } /* Parse_Request */ LOCAL VOID Init_Request( REQUEST *Req ) { /* Neue Request-Struktur initialisieren */ INT i; assert( Req != NULL ); Req->prefix = NULL; Req->command = NULL; for( i = 0; i < 15; Req->argv[i++] = NULL ); Req->argc = 0; } /* Init_Request */ LOCAL BOOLEAN Parse_Error( CONN_ID Idx, CHAR *Error ) { /* Fehler beim Parsen. Fehlermeldung an den Client schicken. * TRUE: Connection wurde durch diese Funktion nicht geschlossen, * FALSE: Connection wurde terminiert. */ assert( Idx >= 0 ); assert( Error != NULL ); Log( LOG_DEBUG, "Connection %d: Parse error: %s", Idx, Error ); return Conn_WriteStr( Idx, "ERROR :Parse error: %s", Error ); } /* Parse_Error */ LOCAL BOOLEAN Validate_Prefix( REQUEST *Req ) { assert( Req != NULL ); return TRUE; } /* Validate_Prefix */ LOCAL BOOLEAN Validate_Command( REQUEST *Req ) { assert( Req != NULL ); return TRUE; } /* Validate_Comman */ LOCAL BOOLEAN Validate_Args( REQUEST *Req ) { assert( Req != NULL ); return TRUE; } /* Validate_Args */ LOCAL BOOLEAN Handle_Request( CONN_ID Idx, REQUEST *Req ) { /* Client-Request verarbeiten. Bei einem schwerwiegenden Fehler * wird die Verbindung geschlossen und FALSE geliefert. */ CLIENT *client, *target, *prefix; CHAR str[LINE_LEN]; INT i; assert( Idx >= 0 ); assert( Req != NULL ); assert( Req->command != NULL ); client = Client_GetFromConn( Idx ); assert( client != NULL ); /* Statuscode, der geforwarded werden muss? */ if(( strlen( Req->command ) == 3 ) && ( atoi( Req->command ) > 100 )) { /* Befehl ist ein Statuscode */ /* Zielserver ermitteln */ if(( Client_Type( client ) == CLIENT_SERVER ) && ( Req->argc > 0 )) target = Client_Search( Req->argv[0] ); else target = NULL; if( ! target ) { if( Req->argc > 0 ) Log( LOG_WARNING, "Unknown target for status code: \"%s\"", Req->argv[0] ); else Log( LOG_WARNING, "Unknown target for status code!" ); return TRUE; } if( target == Client_ThisServer( )) { Log( LOG_DEBUG, "Ignored status code %s from \"%s\".", Req->command, Client_ID( client )); return TRUE; } /* Quell-Client ermitteln */ if( ! Req->prefix[0] ) { Log( LOG_WARNING, "Got status code without prefix!?" ); return TRUE; } else prefix = Client_Search( Req->prefix ); if( ! prefix ) { Log( LOG_WARNING, "Got status code from unknown source: \"%s\"", Req->prefix ); return TRUE; } /* Statuscode weiterleiten */ strcpy( str, Req->command ); for( i = 0; i < Req->argc; i++ ) { if( i < Req->argc - 1 ) strcat( str, " " ); else strcat( str, " :" ); strcat( str, Req->argv[i] ); } return IRC_WriteStrClientPrefix( target, prefix, str ); } if( strcasecmp( Req->command, "PASS" ) == 0 ) return IRC_PASS( client, Req ); else if( strcasecmp( Req->command, "NICK" ) == 0 ) return IRC_NICK( client, Req ); else if( strcasecmp( Req->command, "USER" ) == 0 ) return IRC_USER( client, Req ); else if( strcasecmp( Req->command, "SERVER" ) == 0 ) return IRC_SERVER( client, Req ); else if( strcasecmp( Req->command, "NJOIN" ) == 0 ) return IRC_NJOIN( client, Req ); else if( strcasecmp( Req->command, "QUIT" ) == 0 ) return IRC_QUIT( client, Req ); else if( strcasecmp( Req->command, "SQUIT" ) == 0 ) return IRC_SQUIT( client, Req ); else if( strcasecmp( Req->command, "PING" ) == 0 ) return IRC_PING( client, Req ); else if( strcasecmp( Req->command, "PONG" ) == 0 ) return IRC_PONG( client, Req ); else if( strcasecmp( Req->command, "MOTD" ) == 0 ) return IRC_MOTD( client, Req ); else if( strcasecmp( Req->command, "PRIVMSG" ) == 0 ) return IRC_PRIVMSG( client, Req ); else if( strcasecmp( Req->command, "NOTICE" ) == 0 ) return IRC_NOTICE( client, Req ); else if( strcasecmp( Req->command, "MODE" ) == 0 ) return IRC_MODE( client, Req ); else if( strcasecmp( Req->command, "NAMES" ) == 0 ) return IRC_NAMES( client, Req ); else if( strcasecmp( Req->command, "ISON" ) == 0 ) return IRC_ISON( client, Req ); else if( strcasecmp( Req->command, "WHOIS" ) == 0 ) return IRC_WHOIS( client, Req ); else if( strcasecmp( Req->command, "USERHOST" ) == 0 ) return IRC_USERHOST( client, Req ); else if( strcasecmp( Req->command, "OPER" ) == 0 ) return IRC_OPER( client, Req ); else if( strcasecmp( Req->command, "DIE" ) == 0 ) return IRC_DIE( client, Req ); else if( strcasecmp( Req->command, "RESTART" ) == 0 ) return IRC_RESTART( client, Req ); else if( strcasecmp( Req->command, "ERROR" ) == 0 ) return IRC_ERROR( client, Req ); else if( strcasecmp( Req->command, "LUSERS" ) == 0 ) return IRC_LUSERS( client, Req ); else if( strcasecmp( Req->command, "LINKS" ) == 0 ) return IRC_LINKS( client, Req ); else if( strcasecmp( Req->command, "JOIN" ) == 0 ) return IRC_JOIN( client, Req ); else if( strcasecmp( Req->command, "PART" ) == 0 ) return IRC_PART( client, Req ); else if( strcasecmp( Req->command, "VERSION" ) == 0 ) return IRC_VERSION( client, Req ); else if( strcasecmp( Req->command, "KILL" ) == 0 ) return IRC_KILL( client, Req ); else if( strcasecmp( Req->command, "AWAY" ) == 0 ) return IRC_AWAY( client, Req ); else if( strcasecmp( Req->command, "TOPIC" ) == 0 ) return IRC_TOPIC( client, Req ); else if( strcasecmp( Req->command, "WHO" ) == 0 ) return IRC_WHO( client, Req ); else if( strcasecmp( Req->command, "LIST" ) == 0 ) return IRC_LIST( client, Req ); /* Unbekannter Befehl */ if( Client_Type( client ) != CLIENT_SERVER ) IRC_WriteStrClient( client, ERR_UNKNOWNCOMMAND_MSG, Client_ID( client ), Req->command ); Log( LOG_DEBUG, "Connection %d: Unknown command \"%s\", %d %s,%s prefix.", Client_Conn( client ), Req->command, Req->argc, Req->argc == 1 ? "parameter" : "parameters", Req->prefix ? "" : " no" ); return TRUE; } /* Handle_Request */ /* -eof- */