]> arthur.barton.de Git - ngircd-alex.git/blob - src/ngircd/irc.c
15bb90f73ced63e4d7134d5f49b56fb893debd2a
[ngircd-alex.git] / src / ngircd / irc.c
1 /*
2  * ngIRCd -- The Next Generation IRC Daemon
3  * Copyright (c)2001-2015 Alexander Barton (alex@barton.de) and Contributors.
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 commands
17  */
18
19 #include <assert.h>
20 #include <stdio.h>
21 #include <string.h>
22 #include <strings.h>
23 #include <time.h>
24
25 #include "ngircd.h"
26 #include "conn-func.h"
27 #include "conf.h"
28 #include "channel.h"
29 #ifdef ICONV
30 # include "conn-encoding.h"
31 #endif
32 #include "irc-macros.h"
33 #include "irc-write.h"
34 #include "log.h"
35 #include "match.h"
36 #include "messages.h"
37 #include "parse.h"
38 #include "op.h"
39
40 #include "irc.h"
41
42 static char *Option_String PARAMS((CONN_ID Idx));
43 static bool Send_Message PARAMS((CLIENT *Client, REQUEST *Req, int ForceType,
44                                  bool SendErrors));
45 static bool Send_Message_Mask PARAMS((CLIENT *from, char *command,
46                                       char *targetMask, char *message,
47                                       bool SendErrors));
48 static bool Help PARAMS((CLIENT *Client, const char *Topic));
49
50 /**
51  * Check if a list limit is reached and inform client accordingly.
52  *
53  * @param From The client.
54  * @param Count Reply item count.
55  * @param Limit Reply limit.
56  * @param Name Name of the list.
57  * @return true if list limit has been reached; false otherwise.
58  */
59 GLOBAL bool
60 IRC_CheckListTooBig(CLIENT *From, const int Count, const int Limit,
61                     const char *Name)
62 {
63         assert(From != NULL);
64         assert(Count >= 0);
65         assert(Limit > 0);
66         assert(Name != NULL);
67
68         if (Count < Limit)
69                 return false;
70
71         (void)IRC_WriteStrClient(From,
72                                  "NOTICE %s :%s list limit (%d) reached!",
73                                  Client_ID(From), Name, Limit);
74         IRC_SetPenalty(From, 2);
75         return true;
76 }
77
78 /**
79  * Handler for the IRC "ERROR" command.
80  *
81  * @param Client The client from which this command has been received.
82  * @param Req Request structure with prefix and all parameters.
83  * @return CONNECTED or DISCONNECTED.
84 */
85 GLOBAL bool
86 IRC_ERROR(CLIENT *Client, REQUEST *Req)
87 {
88         assert( Client != NULL );
89         assert( Req != NULL );
90
91         if (Client_Type(Client) != CLIENT_GOTPASS
92             && Client_Type(Client) != CLIENT_GOTPASS_2813
93             && Client_Type(Client) != CLIENT_UNKNOWNSERVER
94             && Client_Type(Client) != CLIENT_SERVER
95             && Client_Type(Client) != CLIENT_SERVICE) {
96                 LogDebug("Ignored ERROR command from \"%s\" ...",
97                          Client_Mask(Client));
98                 IRC_SetPenalty(Client, 2);
99                 return CONNECTED;
100         }
101
102         if (Req->argc < 1)
103                 Log(LOG_NOTICE, "Got ERROR from \"%s\"!",
104                     Client_Mask(Client));
105         else
106                 Log(LOG_NOTICE, "Got ERROR from \"%s\": \"%s\"!",
107                     Client_Mask(Client), Req->argv[0]);
108
109         return CONNECTED;
110 } /* IRC_ERROR */
111
112 /**
113  * Handler for the IRC "KILL" command.
114  *
115  * This function implements the IRC command "KILL" which is used to selectively
116  * disconnect clients. It can be used by IRC operators and servers, for example
117  * to "solve" nick collisions after netsplits. See RFC 2812 section 3.7.1.
118  *
119  * Please note that this function is also called internally, without a real
120  * KILL command being received over the network! Client is Client_ThisServer()
121  * in this case, and the prefix in Req is NULL.
122  *
123  * @param Client The client from which this command has been received or
124  * Client_ThisServer() when generated interanlly.
125  * @param Req Request structure with prefix and all parameters.
126  * @return CONNECTED or DISCONNECTED.
127  */
128 GLOBAL bool
129 IRC_KILL(CLIENT *Client, REQUEST *Req)
130 {
131         CLIENT *prefix;
132         char reason[COMMAND_LEN];
133
134         assert (Client != NULL);
135         assert (Req != NULL);
136
137         if (Client_Type(Client) != CLIENT_SERVER && !Op_Check(Client, Req))
138                 return Op_NoPrivileges(Client, Req);
139
140         /* Get prefix (origin); use the client if no prefix is given. */
141         if (Req->prefix)
142                 prefix = Client_Search(Req->prefix);
143         else
144                 prefix = Client;
145
146         /* Log a warning message and use this server as origin when the
147          * prefix (origin) is invalid. And this is the reason why we don't
148          * use the _IRC_GET_SENDER_OR_RETURN_ macro above! */
149         if (!prefix) {
150                 Log(LOG_WARNING, "Got KILL with invalid prefix: \"%s\"!",
151                     Req->prefix );
152                 prefix = Client_ThisServer();
153         }
154
155         if (Client != Client_ThisServer())
156                 Log(LOG_NOTICE|LOG_snotice,
157                     "Got KILL command from \"%s\" for \"%s\": \"%s\".",
158                     Client_Mask(prefix), Req->argv[0], Req->argv[1]);
159
160         /* Build reason string: Prefix the "reason" if the originator is a
161          * regular user, so users can't spoof KILLs of servers. */
162         if (Client_Type(Client) == CLIENT_USER)
163                 snprintf(reason, sizeof(reason), "KILLed by %s: %s",
164                          Client_ID(Client), Req->argv[1]);
165         else
166                 strlcpy(reason, Req->argv[1], sizeof(reason));
167
168         return IRC_KillClient(Client, prefix, Req->argv[0], reason);
169 }
170
171 /**
172  * Handler for the IRC "NOTICE" command.
173  *
174  * @param Client The client from which this command has been received.
175  * @param Req Request structure with prefix and all parameters.
176  * @return CONNECTED or DISCONNECTED.
177 */
178 GLOBAL bool
179 IRC_NOTICE(CLIENT *Client, REQUEST *Req)
180 {
181         return Send_Message(Client, Req, CLIENT_USER, false);
182 } /* IRC_NOTICE */
183
184 /**
185  * Handler for the IRC "PRIVMSG" command.
186  *
187  * @param Client The client from which this command has been received.
188  * @param Req Request structure with prefix and all parameters.
189  * @return CONNECTED or DISCONNECTED.
190  */
191 GLOBAL bool
192 IRC_PRIVMSG(CLIENT *Client, REQUEST *Req)
193 {
194         return Send_Message(Client, Req, CLIENT_USER, true);
195 } /* IRC_PRIVMSG */
196
197 /**
198  * Handler for the IRC "SQUERY" command.
199  *
200  * @param Client The client from which this command has been received.
201  * @param Req Request structure with prefix and all parameters.
202  * @return CONNECTED or DISCONNECTED.
203  */
204 GLOBAL bool
205 IRC_SQUERY(CLIENT *Client, REQUEST *Req)
206 {
207         return Send_Message(Client, Req, CLIENT_SERVICE, true);
208 } /* IRC_SQUERY */
209
210 /*
211  * Handler for the IRC "TRACE" command.
212  *
213  * @param Client The client from which this command has been received.
214  * @param Req Request structure with prefix and all parameters.
215  * @return CONNECTED or DISCONNECTED.
216  */
217  GLOBAL bool
218 IRC_TRACE(CLIENT *Client, REQUEST *Req)
219 {
220         CLIENT *from, *target, *c;
221         CONN_ID idx, idx2;
222         char user[CLIENT_USER_LEN];
223
224         assert(Client != NULL);
225         assert(Req != NULL);
226
227         _IRC_GET_SENDER_OR_RETURN_(from, Req, Client)
228         _IRC_GET_TARGET_SERVER_OR_RETURN_(target, Req, 0, from)
229
230         /* Forward command to other server? */
231         if (target != Client_ThisServer()) {
232                 /* Send RPL_TRACELINK back to initiator */
233                 idx = Client_Conn(Client);
234                 assert(idx > NONE);
235                 idx2 = Client_Conn(Client_NextHop(target));
236                 assert(idx2 > NONE);
237
238                 if (!IRC_WriteStrClient(from, RPL_TRACELINK_MSG,
239                                         Client_ID(from), PACKAGE_NAME,
240                                         PACKAGE_VERSION, Client_ID(target),
241                                         Client_ID(Client_NextHop(target)),
242                                         Option_String(idx2),
243                                         (long)(time(NULL) - Conn_StartTime(idx2)),
244                                         Conn_SendQ(idx), Conn_SendQ(idx2)))
245                         return DISCONNECTED;
246
247                 /* Forward command */
248                 IRC_WriteStrClientPrefix(target, from, "TRACE %s", Req->argv[0]);
249                 return CONNECTED;
250         }
251
252         /* Infos about all connected servers */
253         c = Client_First();
254         while (c) {
255                 if (Client_Conn(c) > NONE) {
256                         /* Local client */
257                         if (Client_Type(c) == CLIENT_SERVER) {
258                                 /* Server link */
259                                 strlcpy(user, Client_User(c), sizeof(user));
260                                 if (user[0] == '~')
261                                         strlcpy(user, "unknown", sizeof(user));
262                                 if (!IRC_WriteStrClient(from,
263                                                 RPL_TRACESERVER_MSG,
264                                                 Client_ID(from), Client_ID(c),
265                                                 user, Client_Hostname(c),
266                                                 Client_Mask(Client_ThisServer()),
267                                                 Option_String(Client_Conn(c))))
268                                         return DISCONNECTED;
269                         }
270                         if (Client_Type(c) == CLIENT_USER
271                             && Client_HasMode(c, 'o')) {
272                                 /* IRC Operator */
273                                 if (!IRC_WriteStrClient(from,
274                                                 RPL_TRACEOPERATOR_MSG,
275                                                 Client_ID(from), Client_ID(c)))
276                                         return DISCONNECTED;
277                         }
278                 }
279                 c = Client_Next( c );
280         }
281
282         return IRC_WriteStrClient(from, RPL_TRACEEND_MSG, Client_ID(from),
283                                   Conf_ServerName, PACKAGE_NAME,
284                                   PACKAGE_VERSION, NGIRCd_DebugLevel);
285 } /* IRC_TRACE */
286
287 /**
288  * Handler for the IRC "HELP" command.
289  *
290  * @param Client The client from which this command has been received.
291  * @param Req Request structure with prefix and all parameters.
292  * @return CONNECTED or DISCONNECTED.
293  */
294 GLOBAL bool
295 IRC_HELP(CLIENT *Client, REQUEST *Req)
296 {
297         COMMAND *cmd;
298
299         assert(Client != NULL);
300         assert(Req != NULL);
301
302         if ((Req->argc == 0 && array_bytes(&Conf_Helptext) > 0)
303             || (Req->argc >= 1 && strcasecmp(Req->argv[0], "Commands") != 0)) {
304                 /* Help text available and requested */
305                 if (Req->argc >= 1)
306                         return Help(Client, Req->argv[0]);
307
308                 if (!Help(Client, "Intro"))
309                         return DISCONNECTED;
310                 return CONNECTED;
311         }
312
313         cmd = Parse_GetCommandStruct();
314         while(cmd->name) {
315                 if (!IRC_WriteStrClient(Client, "NOTICE %s :%s",
316                                         Client_ID(Client), cmd->name))
317                         return DISCONNECTED;
318                 cmd++;
319         }
320         return CONNECTED;
321 } /* IRC_HELP */
322
323 /**
324  * Kill an client identified by its nick name.
325  *
326  * Please note that after killig a client, its CLIENT cond CONNECTION
327  * structures are invalid. So the caller must make sure on its own not to
328  * access data of probably killed clients after calling this function!
329  *
330  * @param Client The client from which the command leading to the KILL has
331  *              been received, or NULL. The KILL will no be forwarded in this
332  *              direction. Only relevant when From is set, too.
333  * @param From The client from which the command originated, or NULL for
334                 the local server.
335  * @param Nick The nick name to kill.
336  * @param Reason Text to send as reason to the client and other servers.
337  */
338 GLOBAL bool
339 IRC_KillClient(CLIENT *Client, CLIENT *From, const char *Nick, const char *Reason)
340 {
341         const char *msg;
342         CONN_ID my_conn = NONE, conn;
343         CLIENT *c;
344
345         assert(Nick != NULL);
346         assert(Reason != NULL);
347
348         /* Do we know such a client in the network? */
349         c = Client_Search(Nick);
350         if (!c) {
351                 LogDebug("Client with nick \"%s\" is unknown, not forwaring.", Nick);
352                 return CONNECTED;
353         }
354
355         /* Inform other servers */
356         IRC_WriteStrServersPrefix(From ? Client : NULL,
357                                   From ? From : Client_ThisServer(),
358                                   "KILL %s :%s", Nick, Reason);
359
360         if (Client_Type(c) != CLIENT_USER && Client_Type(c) != CLIENT_GOTNICK) {
361                 /* Target of this KILL is not a regular user, this is
362                  * invalid! So we ignore this case if we received a
363                  * regular KILL from the network and try to kill the
364                  * client/connection anyway (but log an error!) if the
365                  * origin is the local server. */
366
367                 if (Client != Client_ThisServer()) {
368                         /* Invalid KILL received from remote */
369                         if (Client_Type(c) == CLIENT_SERVER)
370                                 msg = ERR_CANTKILLSERVER_MSG;
371                         else
372                                 msg = ERR_NOPRIVILEGES_MSG;
373                         return IRC_WriteErrClient(Client, msg, Client_ID(Client));
374                 }
375
376                 Log(LOG_ERR,
377                     "Got KILL for invalid client type: %d, \"%s\"!",
378                     Client_Type(c), Nick);
379         }
380
381         /* Save ID of this connection */
382         if (Client)
383                 my_conn = Client_Conn(Client);
384
385         /* Kill the client NOW:
386          *  - Close the local connection (if there is one),
387          *  - Destroy the CLIENT structure for remote clients.
388          * Note: Conn_Close() removes the CLIENT structure as well. */
389         conn = Client_Conn(c);
390         if(conn > NONE)
391                 Conn_Close(conn, NULL, Reason, true);
392         else
393                 Client_Destroy(c, NULL, Reason, false);
394
395         /* Are we still connected or were we killed, too? */
396         if (my_conn > NONE && Conn_GetClient(my_conn))
397                 return CONNECTED;
398         else
399                 return DISCONNECTED;
400 }
401
402 /**
403  * Send help for a given topic to the client.
404  *
405  * @param Client The client requesting help.
406  * @param Topoc The help topic requested.
407  * @return CONNECTED or DISCONNECTED.
408  */
409 static bool
410 Help(CLIENT *Client, const char *Topic)
411 {
412         char *line;
413         size_t helptext_len, len_str, idx_start, lines = 0;
414         bool in_article = false;
415
416         assert(Client != NULL);
417         assert(Topic != NULL);
418
419         helptext_len = array_bytes(&Conf_Helptext);
420         line = array_start(&Conf_Helptext);
421         while (helptext_len > 0) {
422                 len_str = strlen(line) + 1;
423                 assert(helptext_len >= len_str);
424                 helptext_len -= len_str;
425
426                 if (in_article) {
427                         /* The first character in each article text line must
428                          * be a TAB (ASCII 9) character which will be stripped
429                          * in the output. If it is not a TAB, the end of the
430                          * article has been reached. */
431                         if (line[0] != '\t') {
432                                 if (lines > 0)
433                                         return CONNECTED;
434                                 else
435                                         break;
436                         }
437
438                         /* A single '.' character indicates an empty line */
439                         if (line[1] == '.' && line[2] == '\0')
440                                 idx_start = 2;
441                         else
442                                 idx_start = 1;
443
444                         if (!IRC_WriteStrClient(Client, "NOTICE %s :%s",
445                                                 Client_ID(Client),
446                                                 &line[idx_start]))
447                                 return DISCONNECTED;
448                         lines++;
449
450                 } else {
451                         if (line[0] == '-' && line[1] == ' '
452                             && strcasecmp(&line[2], Topic) == 0)
453                                 in_article = true;
454                 }
455
456                 line += len_str;
457         }
458
459         /* Help topic not found (or empty)! */
460         if (!IRC_WriteStrClient(Client, "NOTICE %s :No help for \"%s\" found!",
461                                 Client_ID(Client), Topic))
462                 return DISCONNECTED;
463
464         return CONNECTED;
465 }
466
467 /**
468  * Get pointer to a static string representing the connection "options".
469  *
470  * @param Idx Connection index.
471  * @return Pointer to static (global) string buffer.
472  */
473 static char *
474 #ifdef ZLIB
475 Option_String(CONN_ID Idx)
476 #else
477 Option_String(UNUSED CONN_ID Idx)
478 #endif
479 {
480         static char option_txt[8];
481         UINT16 options;
482
483         assert(Idx != NONE);
484
485         options = Conn_Options(Idx);
486         strcpy(option_txt, "F");        /* No idea what this means, but the
487                                          * original ircd sends it ... */
488 #ifdef SSL_SUPPORT
489         if(options & CONN_SSL)          /* SSL encrypted link */
490                 strlcat(option_txt, "s", sizeof(option_txt));
491 #endif
492 #ifdef ZLIB
493         if(options & CONN_ZIP)          /* zlib compression enabled */
494                 strlcat(option_txt, "z", sizeof(option_txt));
495 #endif
496         LogDebug(" *** %d: %d = %s", Idx, options, option_txt);
497
498         return option_txt;
499 } /* Option_String */
500
501 /**
502  * Send a message to target(s).
503  *
504  * This function is used by IRC_{PRIVMSG|NOTICE|SQUERY} to actualy
505  * send the message(s).
506  *
507  * @param Client The client from which this command has been received.
508  * @param Req Request structure with prefix and all parameters.
509  * @param ForceType Required type of the destination of the message(s).
510  * @param SendErrors Whether to report errors back to the client or not.
511  * @return CONNECTED or DISCONNECTED.
512  */
513 static bool
514 Send_Message(CLIENT * Client, REQUEST * Req, int ForceType, bool SendErrors)
515 {
516         CLIENT *cl, *from;
517         CL2CHAN *cl2chan;
518         CHANNEL *chan;
519         char *currentTarget = Req->argv[0];
520         char *strtok_last = NULL;
521         char *message = NULL;
522         char *targets[MAX_HNDL_TARGETS];
523         int i, target_nr = 0;
524
525         assert(Client != NULL);
526         assert(Req != NULL);
527
528         if (Req->argc == 0) {
529                 if (!SendErrors)
530                         return CONNECTED;
531                 return IRC_WriteErrClient(Client, ERR_NORECIPIENT_MSG,
532                                           Client_ID(Client), Req->command);
533         }
534         if (Req->argc == 1) {
535                 if (!SendErrors)
536                         return CONNECTED;
537                 return IRC_WriteErrClient(Client, ERR_NOTEXTTOSEND_MSG,
538                                           Client_ID(Client));
539         }
540         if (Req->argc > 2) {
541                 if (!SendErrors)
542                         return CONNECTED;
543                 return IRC_WriteErrClient(Client, ERR_NEEDMOREPARAMS_MSG,
544                                           Client_ID(Client), Req->command);
545         }
546
547         if (Client_Type(Client) == CLIENT_SERVER && Req->prefix)
548                 from = Client_Search(Req->prefix);
549         else
550                 from = Client;
551         if (!from)
552                 return IRC_WriteErrClient(Client, ERR_NOSUCHNICK_MSG,
553                                           Client_ID(Client), Req->prefix);
554
555 #ifdef ICONV
556         if (Client_Conn(Client) > NONE)
557                 message = Conn_EncodingFrom(Client_Conn(Client), Req->argv[1]);
558         else
559 #endif
560                 message = Req->argv[1];
561
562         /* handle msgtarget = msgto *("," msgto) */
563         currentTarget = strtok_r(currentTarget, ",", &strtok_last);
564         ngt_UpperStr(Req->command);
565
566         while (true) {
567                 /* Make sure that there hasn't been such a target already: */
568                 targets[target_nr++] = currentTarget;
569                 for(i = 0; i < target_nr - 1; i++) {
570                         if (strcasecmp(currentTarget, targets[i]) == 0)
571                                 goto send_next_target;
572                 }
573
574                 /* Check for and handle valid <msgto> of form:
575                  * RFC 2812 2.3.1:
576                  *   msgto =  channel / ( user [ "%" host ] "@" servername )
577                  *   msgto =/ ( user "%" host ) / targetmask
578                  *   msgto =/ nickname / ( nickname "!" user "@" host )
579                  */
580                 if (strchr(currentTarget, '!') == NULL)
581                         /* nickname */
582                         cl = Client_Search(currentTarget);
583                 else
584                         cl = NULL;
585
586                 if (cl == NULL) {
587                         /* If currentTarget isn't a nickname check for:
588                          * user ["%" host] "@" servername
589                          * user "%" host
590                          * nickname "!" user "@" host
591                          */
592                         char target[COMMAND_LEN];
593                         char * nick = NULL;
594                         char * user = NULL;
595                         char * host = NULL;
596                         char * server = NULL;
597
598                         strlcpy(target, currentTarget, COMMAND_LEN);
599                         server = strchr(target, '@');
600                         if (server) {
601                                 *server = '\0';
602                                 server++;
603                         }
604                         host = strchr(target, '%');
605                         if (host) {
606                                 *host = '\0';
607                                 host++;
608                         }
609                         user = strchr(target, '!');
610                         if (user) {
611                                 /* msgto form: nick!user@host */
612                                 *user = '\0';
613                                 user++;
614                                 nick = target;
615                                 host = server; /* not "@server" but "@host" */
616                         } else {
617                                 user = target;
618                         }
619
620                         for (cl = Client_First(); cl != NULL; cl = Client_Next(cl)) {
621                                 if (Client_Type(cl) != CLIENT_USER &&
622                                     Client_Type(cl) != CLIENT_SERVICE)
623                                         continue;
624                                 if (nick != NULL && host != NULL) {
625                                         if (strcasecmp(nick, Client_ID(cl)) == 0 &&
626                                             strcasecmp(user, Client_User(cl)) == 0 &&
627                                             strcasecmp(host, Client_HostnameDisplayed(cl)) == 0)
628                                                 break;
629                                         else
630                                                 continue;
631                                 }
632                                 if (strcasecmp(user, Client_User(cl)) != 0)
633                                         continue;
634                                 if (host != NULL && strcasecmp(host,
635                                                 Client_HostnameDisplayed(cl)) != 0)
636                                         continue;
637                                 if (server != NULL && strcasecmp(server,
638                                                 Client_ID(Client_Introducer(cl))) != 0)
639                                         continue;
640                                 break;
641                         }
642                 }
643
644                 if (cl) {
645                         /* Target is a user, enforce type */
646 #ifndef STRICT_RFC
647                         if (Client_Type(cl) != ForceType &&
648                             !(ForceType == CLIENT_USER &&
649                               (Client_Type(cl) == CLIENT_USER ||
650                                Client_Type(cl) == CLIENT_SERVICE))) {
651 #else
652                         if (Client_Type(cl) != ForceType) {
653 #endif
654                                 if (SendErrors && !IRC_WriteErrClient(
655                                     from, ERR_NOSUCHNICK_MSG,Client_ID(from),
656                                     currentTarget))
657                                         return DISCONNECTED;
658                                 goto send_next_target;
659                         }
660
661 #ifndef STRICT_RFC
662                         if (ForceType == CLIENT_SERVICE &&
663                             (Conn_Options(Client_Conn(Client_NextHop(cl)))
664                              & CONN_RFC1459)) {
665                                 /* SQUERY command but RFC 1459 link: convert
666                                  * request to PRIVMSG command */
667                                 Req->command = "PRIVMSG";
668                         }
669 #endif
670                         if (Client_HasMode(cl, 'b') &&
671                             !Client_HasMode(from, 'R') &&
672                             !Client_HasMode(from, 'o') &&
673                             !(Client_Type(from) == CLIENT_SERVER) &&
674                             !(Client_Type(from) == CLIENT_SERVICE)) {
675                                 if (SendErrors && !IRC_WriteErrClient(from,
676                                                 ERR_NONONREG_MSG,
677                                                 Client_ID(from), Client_ID(cl)))
678                                         return DISCONNECTED;
679                                 goto send_next_target;
680                         }
681
682                         if (Client_HasMode(cl, 'C')) {
683                                 cl2chan = Channel_FirstChannelOf(cl);
684                                 while (cl2chan) {
685                                         chan = Channel_GetChannel(cl2chan);
686                                         if (Channel_IsMemberOf(chan, from))
687                                                 break;
688                                         cl2chan = Channel_NextChannelOf(cl, cl2chan);
689                                 }
690                                 if (!cl2chan) {
691                                         if (SendErrors && !IRC_WriteErrClient(
692                                             from, ERR_NOTONSAMECHANNEL_MSG,
693                                             Client_ID(from), Client_ID(cl)))
694                                                 return DISCONNECTED;
695                                         goto send_next_target;
696                                 }
697                         }
698
699                         if (SendErrors && (Client_Type(Client) != CLIENT_SERVER)
700                             && Client_HasMode(cl, 'a')) {
701                                 /* Target is away */
702                                 if (!IRC_WriteStrClient(from, RPL_AWAY_MSG,
703                                                         Client_ID(from),
704                                                         Client_ID(cl),
705                                                         Client_Away(cl)))
706                                         return DISCONNECTED;
707                         }
708                         if (Client_Conn(from) > NONE) {
709                                 Conn_UpdateIdle(Client_Conn(from));
710                         }
711                         if (!IRC_WriteStrClientPrefix(cl, from, "%s %s :%s",
712                                                       Req->command, Client_ID(cl),
713                                                       message))
714                                 return DISCONNECTED;
715                 } else if (ForceType != CLIENT_SERVICE
716                            && (chan = Channel_Search(currentTarget))) {
717                         /* Target is a channel */
718                         if (!Channel_Write(chan, from, Client, Req->command,
719                                            SendErrors, message))
720                                         return DISCONNECTED;
721                 } else if (ForceType != CLIENT_SERVICE
722                            && strchr("$#", currentTarget[0])
723                            && strchr(currentTarget, '.')) {
724                         /* $#: server/host mask, RFC 2812, sec. 3.3.1 */
725                         if (!Send_Message_Mask(from, Req->command, currentTarget,
726                                                message, SendErrors))
727                                 return DISCONNECTED;
728                 } else {
729                         if (!SendErrors)
730                                 return CONNECTED;
731                         if (!IRC_WriteErrClient(from, ERR_NOSUCHNICK_MSG,
732                                                 Client_ID(from), currentTarget))
733                                 return DISCONNECTED;
734                 }
735
736         send_next_target:
737                 currentTarget = strtok_r(NULL, ",", &strtok_last);
738                 if (!currentTarget)
739                         break;
740
741                 Conn_SetPenalty(Client_Conn(Client), 1);
742
743                 if (target_nr >= MAX_HNDL_TARGETS) {
744                         /* Too many targets given! */
745                         return IRC_WriteErrClient(Client,
746                                                   ERR_TOOMANYTARGETS_MSG,
747                                                   currentTarget);
748                 }
749         }
750
751         return CONNECTED;
752 } /* Send_Message */
753
754 /**
755  * Send a message to "target mask" target(s).
756  *
757  * See RFC 2812, sec. 3.3.1 for details.
758  *
759  * @param from The client from which this command has been received.
760  * @param command The command to use (PRIVMSG, NOTICE, ...).
761  * @param targetMask The "target mask" (will be verified by this function).
762  * @param message The message to send.
763  * @param SendErrors Whether to report errors back to the client or not.
764  * @return CONNECTED or DISCONNECTED.
765  */
766 static bool
767 Send_Message_Mask(CLIENT * from, char * command, char * targetMask,
768                   char * message, bool SendErrors)
769 {
770         CLIENT *cl;
771         bool client_match;
772         char *mask = targetMask + 1;
773         const char *check_wildcards;
774
775         cl = NULL;
776
777         if (!Client_HasMode(from, 'o')) {
778                 if (!SendErrors)
779                         return true;
780                 return IRC_WriteErrClient(from, ERR_NOPRIVILEGES_MSG,
781                                           Client_ID(from));
782         }
783
784         /*
785          * RFC 2812, sec. 3.3.1 requires that targetMask have at least one
786          * dot (".") and no wildcards ("*", "?") following the last one.
787          */
788         check_wildcards = strrchr(targetMask, '.');
789         if (!check_wildcards || check_wildcards[strcspn(check_wildcards, "*?")]) {
790                 if (!SendErrors)
791                         return true;
792                 return IRC_WriteErrClient(from, ERR_WILDTOPLEVEL_MSG,
793                                           targetMask);
794         }
795
796         if (targetMask[0] == '#') {
797                 /* #: hostmask, see RFC 2812, sec. 3.3.1 */
798                 for (cl = Client_First(); cl != NULL; cl = Client_Next(cl)) {
799                         if (Client_Type(cl) != CLIENT_USER)
800                                 continue;
801                         client_match = MatchCaseInsensitive(mask, Client_Hostname(cl));
802                         if (client_match)
803                                 if (!IRC_WriteStrClientPrefix(cl, from, "%s %s :%s",
804                                                 command, Client_ID(cl), message))
805                                         return false;
806                 }
807         } else {
808                 /* $: server mask, see RFC 2812, sec. 3.3.1 */
809                 assert(targetMask[0] == '$');
810                 for (cl = Client_First(); cl != NULL; cl = Client_Next(cl)) {
811                         if (Client_Type(cl) != CLIENT_USER)
812                                 continue;
813                         client_match = MatchCaseInsensitive(mask,
814                                         Client_ID(Client_Introducer(cl)));
815                         if (client_match)
816                                 if (!IRC_WriteStrClientPrefix(cl, from, "%s %s :%s",
817                                                 command, Client_ID(cl), message))
818                                         return false;
819                 }
820         }
821         return CONNECTED;
822 } /* Send_Message_Mask */
823
824 /* -eof- */