]> arthur.barton.de Git - ngircd-alex.git/blob - src/ngircd/parse.c
Commands received from other servers must have prefixes
[ngircd-alex.git] / src / ngircd / parse.c
1 /*
2  * ngIRCd -- The Next Generation IRC Daemon
3  * Copyright (c)2001-2010 Alexander Barton (alex@barton.de)
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  * Please read the file COPYING, README and AUTHORS for more information.
10  */
11
12 #include "portab.h"
13
14 /**
15  * @file
16  * IRC command parser and validator.
17  */
18
19 #include "imp.h"
20 #include <assert.h>
21 #include <stdlib.h>
22 #include <stdio.h>
23 #include <string.h>
24 #include <strings.h>
25
26 #include "ngircd.h"
27 #include "defines.h"
28 #include "conn-func.h"
29 #include "channel.h"
30 #include "log.h"
31 #include "messages.h"
32 #include "tool.h"
33
34 #include "exp.h"
35 #include "parse.h"
36
37 #include "imp.h"
38 #include "irc.h"
39 #include "irc-channel.h"
40 #include "irc-info.h"
41 #include "irc-login.h"
42 #include "irc-mode.h"
43 #include "irc-op.h"
44 #include "irc-oper.h"
45 #include "irc-server.h"
46 #include "irc-write.h"
47 #include "numeric.h"
48
49 #include "exp.h"
50
51 struct _NUMERIC {
52         int numeric;
53         bool (*function) PARAMS(( CLIENT *Client, REQUEST *Request ));
54 };
55
56
57 static COMMAND My_Commands[] =
58 {
59         { "ADMIN", IRC_ADMIN, CLIENT_USER|CLIENT_SERVER, 0, 0, 0 },
60         { "AWAY", IRC_AWAY, CLIENT_USER, 0, 0, 0 },
61         { "CONNECT", IRC_CONNECT, CLIENT_USER|CLIENT_SERVER, 0, 0, 0 },
62         { "DIE", IRC_DIE, CLIENT_USER, 0, 0, 0 },
63         { "DISCONNECT", IRC_DISCONNECT, CLIENT_USER, 0, 0, 0 },
64         { "ERROR", IRC_ERROR, 0xFFFF, 0, 0, 0 },
65         { "HELP", IRC_HELP, CLIENT_USER, 0, 0, 0 },
66         { "INFO", IRC_INFO, CLIENT_USER|CLIENT_SERVER, 0, 0, 0 },
67         { "INVITE", IRC_INVITE, CLIENT_USER|CLIENT_SERVER, 0, 0, 0 },
68         { "ISON", IRC_ISON, CLIENT_USER, 0, 0, 0 },
69         { "JOIN", IRC_JOIN, CLIENT_USER|CLIENT_SERVER, 0, 0, 0 },
70         { "KICK", IRC_KICK, CLIENT_USER|CLIENT_SERVER, 0, 0, 0 },
71         { "KILL", IRC_KILL, CLIENT_USER|CLIENT_SERVER, 0, 0, 0 },
72         { "LINKS", IRC_LINKS, CLIENT_USER|CLIENT_SERVER, 0, 0, 0 },
73         { "LIST", IRC_LIST, CLIENT_USER|CLIENT_SERVER, 0, 0, 0 },
74         { "LUSERS", IRC_LUSERS, CLIENT_USER|CLIENT_SERVER, 0, 0, 0 },
75         { "MODE", IRC_MODE, CLIENT_USER|CLIENT_SERVER, 0, 0, 0 },
76         { "MOTD", IRC_MOTD, CLIENT_USER|CLIENT_SERVER, 0, 0, 0 },
77         { "NAMES", IRC_NAMES, CLIENT_USER|CLIENT_SERVER, 0, 0, 0 },
78         { "NICK", IRC_NICK, 0xFFFF, 0, 0, 0 },
79         { "NJOIN", IRC_NJOIN, CLIENT_SERVER, 0, 0, 0 },
80         { "NOTICE", IRC_NOTICE, 0xFFFF, 0, 0, 0 },
81         { "OPER", IRC_OPER, CLIENT_USER, 0, 0, 0 },
82         { "PART", IRC_PART, CLIENT_USER|CLIENT_SERVER, 0, 0, 0 },
83         { "PASS", IRC_PASS, 0xFFFF, 0, 0, 0 },
84         { "PING", IRC_PING, CLIENT_USER|CLIENT_SERVER, 0, 0, 0 },
85         { "PONG", IRC_PONG, CLIENT_USER|CLIENT_SERVER, 0, 0, 0 },
86         { "PRIVMSG", IRC_PRIVMSG, CLIENT_USER|CLIENT_SERVER, 0, 0, 0 },
87         { "QUIT", IRC_QUIT, 0xFFFF, 0, 0, 0 },
88         { "REHASH", IRC_REHASH, CLIENT_USER, 0, 0, 0 },
89         { "RESTART", IRC_RESTART, CLIENT_USER, 0, 0, 0 },
90         { "SERVER", IRC_SERVER, 0xFFFF, 0, 0, 0 },
91         { "SERVICE", IRC_SERVICE, 0xFFFF, 0, 0, 0 },
92         { "SERVLIST", IRC_SERVLIST, CLIENT_USER, 0, 0, 0 },
93         { "SQUERY", IRC_SQUERY, CLIENT_USER|CLIENT_SERVER, 0, 0, 0 },
94         { "SQUIT", IRC_SQUIT, CLIENT_USER|CLIENT_SERVER, 0, 0, 0 },
95         { "STATS", IRC_STATS, CLIENT_USER|CLIENT_SERVER, 0, 0, 0 },
96         { "SUMMON", IRC_SUMMON, CLIENT_USER|CLIENT_SERVER, 0, 0, 0 },
97         { "TIME", IRC_TIME, CLIENT_USER|CLIENT_SERVER, 0, 0, 0 },
98         { "TOPIC", IRC_TOPIC, CLIENT_USER|CLIENT_SERVER, 0, 0, 0 },
99         { "TRACE", IRC_TRACE, CLIENT_USER|CLIENT_SERVER, 0, 0, 0 },
100         { "USER", IRC_USER, 0xFFFF, 0, 0, 0 },
101         { "USERHOST", IRC_USERHOST, CLIENT_USER, 0, 0, 0 },
102         { "USERS", IRC_USERS, CLIENT_USER|CLIENT_SERVER, 0, 0, 0 },
103         { "VERSION", IRC_VERSION, CLIENT_USER|CLIENT_SERVER, 0, 0, 0 },
104         { "WALLOPS", IRC_WALLOPS, CLIENT_USER|CLIENT_SERVER, 0, 0, 0 },
105         { "WEBIRC", IRC_WEBIRC, CLIENT_UNKNOWN, 0, 0, 0 },
106         { "WHO", IRC_WHO, CLIENT_USER, 0, 0, 0 },
107         { "WHOIS", IRC_WHOIS, CLIENT_USER|CLIENT_SERVER, 0, 0, 0 },
108         { "WHOWAS", IRC_WHOWAS, CLIENT_USER|CLIENT_SERVER, 0, 0, 0 },
109 #ifdef IRCPLUS
110         { "CHANINFO", IRC_CHANINFO, CLIENT_SERVER, 0, 0, 0 },
111 #endif
112 #ifndef STRICT_RFC
113         { "GET",  IRC_QUIT_HTTP, CLIENT_UNKNOWN, 0, 0, 0 },
114         { "POST", IRC_QUIT_HTTP, CLIENT_UNKNOWN, 0, 0, 0 },
115 #endif
116         { NULL, NULL, 0x0, 0, 0, 0 } /* Ende-Marke */
117 };
118
119 static void Init_Request PARAMS(( REQUEST *Req ));
120
121 static bool Validate_Prefix PARAMS(( CONN_ID Idx, REQUEST *Req, bool *Closed ));
122 static bool Validate_Command PARAMS(( CONN_ID Idx, REQUEST *Req, bool *Closed ));
123 static bool Validate_Args PARAMS(( CONN_ID Idx, REQUEST *Req, bool *Closed ));
124
125 static bool Handle_Request PARAMS(( CONN_ID Idx, REQUEST *Req ));
126
127 /**
128  * Return the pointer to the global "IRC command structure".
129  * This structure, an array of type "COMMAND" describes all the IRC commands
130  * implemented by ngIRCd and how to handle them.
131  * @return Pointer to the global command structure.
132  */
133 GLOBAL COMMAND *
134 Parse_GetCommandStruct( void )
135 {
136         return My_Commands;
137 } /* Parse_GetCommandStruct */
138
139
140 /**
141  * Parse a command ("request") received from a client.
142  * 
143  * This function is called after the connection layer received a valid CR+LF
144  * terminated line of text: we asume that this is a valid IRC command and
145  * try to do something useful with it :-)
146  *
147  * All errors are reported to the client from which the command has been
148  * received, and if the error is fatal this connection is closed down.
149  *
150  * This function is able to parse the syntax as described in RFC 2812,
151  * section 2.3.
152  *
153  * @param Idx Index of the connection from which the command has been received.
154  * @param Request NULL terminated line of text (the "command").
155  * @return true on success (valid command or "regular" error), false if a
156  *      fatal error occured and the connection has been shut down.
157  */
158 GLOBAL bool
159 Parse_Request( CONN_ID Idx, char *Request )
160 {
161         REQUEST req;
162         char *start, *ptr;
163         bool closed;
164
165         assert( Idx >= 0 );
166         assert( Request != NULL );
167
168 #ifdef SNIFFER
169         if( NGIRCd_Sniffer ) Log( LOG_DEBUG, " <- connection %d: '%s'.", Idx, Request );
170 #endif
171
172         Init_Request( &req );
173
174         /* remove leading & trailing whitespace */
175         ngt_TrimStr( Request );
176
177         if( Request[0] == ':' )
178         {
179                 /* Prefix */
180                 req.prefix = Request + 1;
181                 ptr = strchr( Request, ' ' );
182                 if( ! ptr )
183                 {
184                         LogDebug("Connection %d: Parse error: prefix without command!?", Idx);
185                         return Conn_WriteStr(Idx, "ERROR :Prefix without command");
186                 }
187                 *ptr = '\0';
188 #ifndef STRICT_RFC
189                 /* ignore multiple spaces between prefix and command */
190                 while( *(ptr + 1) == ' ' ) ptr++;
191 #endif
192                 start = ptr + 1;
193         }
194         else start = Request;
195
196         ptr = strchr( start, ' ' );
197         if( ptr )
198         {
199                 *ptr = '\0';
200 #ifndef STRICT_RFC
201                 /* ignore multiple spaces between parameters */
202                 while( *(ptr + 1) == ' ' ) ptr++;
203 #endif
204         }
205         req.command = start;
206
207         /* Arguments, Parameters */
208         if( ptr )
209         {
210                 start = ptr + 1;
211                 while( start )
212                 {
213                         if( start[0] == ':' )
214                         {
215                                 req.argv[req.argc] = start + 1;
216                                 ptr = NULL;
217                         }
218                         else
219                         {
220                                 req.argv[req.argc] = start;
221                                 ptr = strchr( start, ' ' );
222                                 if( ptr )
223                                 {
224                                         *ptr = '\0';
225 #ifndef STRICT_RFC
226                                         while( *(ptr + 1) == ' ' ) ptr++;
227 #endif
228                                 }
229                         }
230
231                         req.argc++;
232
233                         if( start[0] == ':' ) break;
234                         if( req.argc > 14 ) break;
235
236                         if( ptr ) start = ptr + 1;
237                         else start = NULL;
238                 }
239         }
240
241         if( ! Validate_Prefix( Idx, &req, &closed )) return ! closed;
242         if( ! Validate_Command( Idx, &req, &closed )) return ! closed;
243         if( ! Validate_Args( Idx, &req, &closed )) return ! closed;
244
245         return Handle_Request( Idx, &req );
246 } /* Parse_Request */
247
248
249 /**
250  * Initialize request structure.
251  * @param Req Request structure to be initialized.
252  */
253 static void
254 Init_Request( REQUEST *Req )
255 {
256         /* Neue Request-Struktur initialisieren */
257
258         int i;
259
260         assert( Req != NULL );
261
262         Req->prefix = NULL;
263         Req->command = NULL;
264         for( i = 0; i < 15; Req->argv[i++] = NULL );
265         Req->argc = 0;
266 } /* Init_Request */
267
268
269 static bool
270 Validate_Prefix( CONN_ID Idx, REQUEST *Req, bool *Closed )
271 {
272         CLIENT *client, *c;
273
274         assert( Idx >= 0 );
275         assert( Req != NULL );
276
277         *Closed = false;
278
279         client = Conn_GetClient( Idx );
280         assert( client != NULL );
281
282         if (!Req->prefix && Client_Type(client) == CLIENT_SERVER
283             && strcasecmp(Req->command, "ERROR") != 0
284             && strcasecmp(Req->command, "PING") != 0)
285         {
286                 Log(LOG_ERR,
287                     "Received command without prefix (connection %d, command \"%s\")!?",
288                     Idx, Req->command);
289                 if (!Conn_WriteStr(Idx, "ERROR :Prefix missing"))
290                         *Closed = true;
291                 return false;
292         }
293
294         if (!Req->prefix)
295                 return true;
296
297         /* only validate if this connection is already registered */
298         if (Client_Type(client) != CLIENT_USER
299             && Client_Type(client) != CLIENT_SERVER
300             && Client_Type(client) != CLIENT_SERVICE) {
301                 /* not registered, ignore prefix */
302                 Req->prefix = NULL;
303                 return true;
304         }
305
306         /* check if client in prefix is known */
307         c = Client_Search( Req->prefix );
308         if (!c) {
309                 Log(LOG_ERR,
310                     "Invalid prefix \"%s\", client not known (connection %d, command \"%s\")!?",
311                     Req->prefix, Idx, Req->command);
312                 if (!Conn_WriteStr(Idx,
313                                    "ERROR :Invalid prefix \"%s\", client not known",
314                                    Req->prefix))
315                         *Closed = true;
316                 return false;
317         }
318
319         /* check if the client named in the prefix is expected
320          * to come from that direction */
321         if (Client_NextHop(c) != client) {
322                 Log(LOG_ERR,
323                     "Spoofed prefix \"%s\" from \"%s\" (connection %d, command \"%s\")!",
324                     Req->prefix, Client_Mask(Conn_GetClient(Idx)), Idx,
325                     Req->command);
326                 Conn_Close(Idx, NULL, "Spoofed prefix", true);
327                 *Closed = true;
328                 return false;
329         }
330
331         return true;
332 } /* Validate_Prefix */
333
334
335 static bool
336 Validate_Command( UNUSED CONN_ID Idx, UNUSED REQUEST *Req, bool *Closed )
337 {
338         assert( Idx >= 0 );
339         assert( Req != NULL );
340         *Closed = false;
341
342         return true;
343 } /* Validate_Comman */
344
345
346 static bool
347 #ifdef STRICT_RFC
348 Validate_Args(CONN_ID Idx, REQUEST *Req, bool *Closed)
349 #else
350 Validate_Args(UNUSED CONN_ID Idx, UNUSED REQUEST *Req, bool *Closed)
351 #endif
352 {
353 #ifdef STRICT_RFC
354         int i;
355 #endif
356
357         *Closed = false;
358
359 #ifdef STRICT_RFC
360         assert( Idx >= 0 );
361         assert( Req != NULL );
362
363         /* CR and LF are never allowed in command parameters.
364          * But since we do accept lines terminated only with CR or LF in
365          * "non-RFC-compliant mode" (besides the correct CR+LF combination),
366          * this check can only trigger in "strict RFC" mode; therefore we
367          * optimize it away otherwise ... */
368         for (i = 0; i < Req->argc; i++) {
369                 if (strchr(Req->argv[i], '\r') || strchr(Req->argv[i], '\n')) {
370                         Log(LOG_ERR,
371                             "Invalid character(s) in parameter (connection %d, command %s)!?",
372                             Idx, Req->command);
373                         if (!Conn_WriteStr(Idx,
374                                            "ERROR :Invalid character(s) in parameter!"))
375                                 *Closed = true;
376                         return false;
377                 }
378         }
379 #endif
380
381         return true;
382 } /* Validate_Args */
383
384
385 /* Command is a status code ("numeric") from another server */
386 static bool
387 Handle_Numeric(CLIENT *client, REQUEST *Req)
388 {
389         static const struct _NUMERIC Numerics[] = {
390                 {   5, IRC_Num_ISUPPORT },
391                 {  20, NULL },
392                 { 376, IRC_Num_ENDOFMOTD }
393         };
394         int i, num;
395         char str[LINE_LEN];
396         CLIENT *prefix, *target = NULL;
397
398         /* Determine target */
399         if (Req->argc > 0) {
400                 if (strcmp(Req->argv[0], "*") != 0)
401                         target = Client_Search(Req->argv[0]);
402                 else
403                         target = Client_ThisServer();
404         }
405
406         if (!target) {
407                 /* Status code without target!? */
408                 if (Req->argc > 0)
409                         Log(LOG_WARNING,
410                             "Unknown target for status code %s: \"%s\"",
411                             Req->command, Req->argv[0]);
412                 else
413                         Log(LOG_WARNING,
414                             "Unknown target for status code %s!",
415                             Req->command);
416                 return true;
417         }
418         if (target == Client_ThisServer()) {
419                 /* This server is the target of the numeric */
420                 num = atoi(Req->command);
421
422                 for (i = 0; i < (int) C_ARRAY_SIZE(Numerics); i++) {
423                         if (num == Numerics[i].numeric) {
424                                 if (!Numerics[i].function)
425                                         return CONNECTED;
426                                 return Numerics[i].function(client, Req);
427                         }
428                 }
429
430                 LogDebug("Ignored status code %s from \"%s\".",
431                          Req->command, Client_ID(client));
432                 return true;
433         }
434
435         /* Determine source */
436         if (! Req->prefix[0]) {
437                 /* Oops, no prefix!? */
438                 Log(LOG_WARNING, "Got status code %s from \"%s\" without prefix!?",
439                                                 Req->command, Client_ID(client));
440                 return true;
441         }
442
443         prefix = Client_Search(Req->prefix);
444         if (! prefix) { /* Oops, unknown prefix!? */
445                 Log(LOG_WARNING, "Got status code %s from unknown source: \"%s\"", Req->command, Req->prefix);
446                 return true;
447         }
448
449         /* Forward status code */
450         strlcpy(str, Req->command, sizeof(str));
451         for (i = 0; i < Req->argc; i++) {
452                 if (i < Req->argc - 1)
453                         strlcat(str, " ", sizeof(str));
454                 else
455                         strlcat(str, " :", sizeof(str));
456                 strlcat(str, Req->argv[i], sizeof(str));
457         }
458         return IRC_WriteStrClientPrefix(target, prefix, "%s", str);
459 }
460
461
462 static bool
463 Handle_Request( CONN_ID Idx, REQUEST *Req )
464 {
465         CLIENT *client;
466         bool result = true;
467         int client_type;
468         COMMAND *cmd;
469
470         assert( Idx >= 0 );
471         assert( Req != NULL );
472         assert( Req->command != NULL );
473
474         client = Conn_GetClient( Idx );
475         assert( client != NULL );
476
477         /* Numeric? */
478         client_type = Client_Type(client);
479         if ((client_type == CLIENT_SERVER ||
480              client_type == CLIENT_UNKNOWNSERVER)
481             && strlen(Req->command) == 3 && atoi(Req->command) > 1)
482                 return Handle_Numeric(client, Req);
483
484         cmd = My_Commands;
485         while (cmd->name) {
486                 if (strcasecmp(Req->command, cmd->name) != 0) {
487                         cmd++;
488                         continue;
489                 }
490
491                 if (!(client_type & cmd->type))
492                         return IRC_WriteStrClient(client, ERR_NOTREGISTERED_MSG, Client_ID(client));
493
494                 /* Command is allowed for this client: call it and count produced bytes */
495                 Conn_ResetWCounter();
496                 result = (cmd->function)(client, Req);
497                 cmd->bytes += Conn_WCounter();
498
499                 /* Adjust counters */
500                 if (client_type != CLIENT_SERVER)
501                         cmd->lcount++;
502                 else
503                         cmd->rcount++;
504                 return result;
505         }
506
507         if (client_type != CLIENT_USER &&
508             client_type != CLIENT_SERVER &&
509             client_type != CLIENT_SERVICE )
510                 return true;
511
512         /* Unknown command and registered connection: generate error: */
513         LogDebug("Connection %d: Unknown command \"%s\", %d %s,%s prefix.",
514                         Client_Conn( client ), Req->command, Req->argc,
515                         Req->argc == 1 ? "parameter" : "parameters",
516                         Req->prefix ? "" : " no" );
517
518         if (Client_Type(client) != CLIENT_SERVER) {
519                 result = IRC_WriteStrClient(client, ERR_UNKNOWNCOMMAND_MSG,
520                                 Client_ID(client), Req->command);
521                 Conn_SetPenalty(Idx, 1);
522         }
523         return result;
524 } /* Handle_Request */
525
526
527 /* -eof- */