]> arthur.barton.de Git - ngircd-alex.git/blobdiff - src/ngircd/parse.c
Only "handle" HTTP commands on unregistered connections
[ngircd-alex.git] / src / ngircd / parse.c
index 479b300450e4dcfd4f601b703bc4a573fc3f8a77..8203dd0ecb2687617af5f911db820733d239d35d 100644 (file)
@@ -108,6 +108,10 @@ static COMMAND My_Commands[] =
        { "WHOWAS", IRC_WHOWAS, CLIENT_USER|CLIENT_SERVER, 0, 0, 0 },
 #ifdef IRCPLUS
        { "CHANINFO", IRC_CHANINFO, CLIENT_SERVER, 0, 0, 0 },
+#endif
+#ifndef STRICT_RFC
+       { "GET",  IRC_QUIT_HTTP, CLIENT_UNKNOWN, 0, 0, 0 },
+       { "POST", IRC_QUIT_HTTP, CLIENT_UNKNOWN, 0, 0, 0 },
 #endif
        { NULL, NULL, 0x0, 0, 0, 0 } /* Ende-Marke */
 };
@@ -178,7 +182,7 @@ Parse_Request( CONN_ID Idx, char *Request )
                if( ! ptr )
                {
                        LogDebug("Connection %d: Parse error: prefix without command!?", Idx);
-                       return Conn_WriteStr( Idx, "ERROR :Prefix without command!?" );
+                       return Conn_WriteStr(Idx, "ERROR :Prefix without command");
                }
                *ptr = '\0';
 #ifndef STRICT_RFC
@@ -278,8 +282,9 @@ Validate_Prefix( CONN_ID Idx, REQUEST *Req, bool *Closed )
        assert( client != NULL );
 
        /* only validate if this connection is already registered */
-       if(( Client_Type( client ) != CLIENT_USER ) && ( Client_Type( client ) != CLIENT_SERVER ) && ( Client_Type( client ) != CLIENT_SERVICE ))
-       {
+       if (Client_Type(client) != CLIENT_USER
+           && Client_Type(client) != CLIENT_SERVER
+           && Client_Type(client) != CLIENT_SERVICE) {
                /* not registered, ignore prefix */
                Req->prefix = NULL;
                return true;
@@ -287,19 +292,25 @@ Validate_Prefix( CONN_ID Idx, REQUEST *Req, bool *Closed )
 
        /* check if client in prefix is known */
        c = Client_Search( Req->prefix );
-       if( ! c )
-       {
-               Log( LOG_ERR, "Invalid prefix \"%s\", client not known (connection %d, command %s)!?", Req->prefix, Idx, Req->command );
-               if( ! Conn_WriteStr( Idx, "ERROR :Invalid prefix \"%s\", client not known!?", Req->prefix )) *Closed = true;
+       if (!c) {
+               Log(LOG_ERR,
+                   "Invalid prefix \"%s\", client not known (connection %d, command \"%s\")!?",
+                   Req->prefix, Idx, Req->command);
+               if (!Conn_WriteStr(Idx,
+                                  "ERROR :Invalid prefix \"%s\", client not known",
+                                  Req->prefix))
+                       *Closed = true;
                return false;
        }
 
        /* check if the client named in the prefix is expected
         * to come from that direction */
-       if( Client_NextHop( c ) != client )
-       {
-               Log( LOG_ERR, "Spoofed prefix \"%s\" from \"%s\" (connection %d, command %s)!", Req->prefix, Client_Mask( Conn_GetClient( Idx )), Idx, Req->command );
-               Conn_Close( Idx, NULL, "Spoofed prefix", true);
+       if (Client_NextHop(c) != client) {
+               Log(LOG_ERR,
+                   "Spoofed prefix \"%s\" from \"%s\" (connection %d, command \"%s\")!",
+                   Req->prefix, Client_Mask(Conn_GetClient(Idx)), Idx,
+                   Req->command);
+               Conn_Close(Idx, NULL, "Spoofed prefix", true);
                *Closed = true;
                return false;
        }