]> arthur.barton.de Git - ngircd-alex.git/commitdiff
The KILL comand verifies and logs more parameters.
authorAlexander Barton <alex@barton.de>
Tue, 29 Apr 2003 12:19:20 +0000 (12:19 +0000)
committerAlexander Barton <alex@barton.de>
Tue, 29 Apr 2003 12:19:20 +0000 (12:19 +0000)
ChangeLog
src/ngircd/irc.c

index ab9de0af621b51eba54ae5aa354402771cdf6291..5ff1171e4eece69407d50e1e4b9d388551860781 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -15,6 +15,7 @@ ngIRCd CVS-HEAD
   - (none)
 
 ngIRCd 0.7.0
+  - The KILL comand verifies and logs more parameters.
 
   ngIRCd 0.7.0-pre2
   - CVS build system fixes (made autogen.sh more portable).
@@ -449,4 +450,4 @@ ngIRCd 0.0.1, 31.12.2001
 
 
 -- 
-$Id: ChangeLog,v 1.198 2003/04/27 11:48:06 alex Exp $
+$Id: ChangeLog,v 1.199 2003/04/29 12:19:20 alex Exp $
index 6d977be496475d8df936ebbfcec4ce80b3bad7bf..1c1212af38d83c06cff1ecb59a3b6f4fc63e5f2e 100644 (file)
@@ -14,7 +14,7 @@
 
 #include "portab.h"
 
-static char UNUSED id[] = "$Id: irc.c,v 1.120 2003/03/31 15:54:21 alex Exp $";
+static char UNUSED id[] = "$Id: irc.c,v 1.121 2003/04/29 12:19:20 alex Exp $";
 
 #include "imp.h"
 #include <assert.h>
@@ -95,8 +95,30 @@ IRC_KILL( CLIENT *Client, REQUEST *Req )
        if( c )
        {
                /* Yes, there is such a client -- but is it a valid user? */
-               if( Client_Type( c ) == CLIENT_SERVER ) IRC_WriteStrClient( Client, ERR_CANTKILLSERVER_MSG, Client_ID( Client ));
-               else if( Client_Type( c ) != CLIENT_USER  )IRC_WriteStrClient( Client, ERR_NOPRIVILEGES_MSG, Client_ID( Client ));
+               if( Client_Type( c ) == CLIENT_SERVER )
+               {
+                       if( Client != Client_ThisServer( )) IRC_WriteStrClient( Client, ERR_CANTKILLSERVER_MSG, Client_ID( Client ));
+                       else
+                       {
+                               /* Oops, I should kill another server!? */
+                               Log( LOG_ERR, "Can't KILL server \"%s\"!", Req->argv[0] );
+                               conn = Client_Conn( Client_NextHop( c ));
+                               assert( conn > NONE );
+                               Conn_Close( conn, NULL, "Nick collision for server!?", TRUE );
+                       }
+               }
+               else if( Client_Type( c ) != CLIENT_USER  )
+               {
+                       if( Client != Client_ThisServer( )) IRC_WriteStrClient( Client, ERR_NOPRIVILEGES_MSG, Client_ID( Client ));
+                       else
+                       {
+                               /* Oops, what sould I close?? */
+                               Log( LOG_ERR, "Can't KILL \"%s\": invalid client type!", Req->argv[0] );
+                               conn = Client_Conn( Client_NextHop( c ));
+                               assert( conn > NONE );
+                               Conn_Close( conn, NULL, "Collision for invalid client type!?", TRUE );
+                       }
+               }
                else
                {
                        /* Kill user NOW! */