]> arthur.barton.de Git - ngircd-alex.git/blob - src/ngircd/irc.c
Send_Message: Fix handling of "empty" targets
[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         /* Please note that "currentTarget" is NULL when the target contains
567          * the separator character only, e. g. "," or ",,,," etc.! */
568         while (currentTarget) {
569                 /* Make sure that there hasn't been such a target already: */
570                 targets[target_nr++] = currentTarget;
571                 for(i = 0; i < target_nr - 1; i++) {
572                         if (strcasecmp(currentTarget, targets[i]) == 0)
573                                 goto send_next_target;
574                 }
575
576                 /* Check for and handle valid <msgto> of form:
577                  * RFC 2812 2.3.1:
578                  *   msgto =  channel / ( user [ "%" host ] "@" servername )
579                  *   msgto =/ ( user "%" host ) / targetmask
580                  *   msgto =/ nickname / ( nickname "!" user "@" host )
581                  */
582                 if (strchr(currentTarget, '!') == NULL)
583                         /* nickname */
584                         cl = Client_Search(currentTarget);
585                 else
586                         cl = NULL;
587
588                 if (cl == NULL) {
589                         /* If currentTarget isn't a nickname check for:
590                          * user ["%" host] "@" servername
591                          * user "%" host
592                          * nickname "!" user "@" host
593                          */
594                         char target[COMMAND_LEN];
595                         char * nick = NULL;
596                         char * user = NULL;
597                         char * host = NULL;
598                         char * server = NULL;
599
600                         strlcpy(target, currentTarget, COMMAND_LEN);
601                         server = strchr(target, '@');
602                         if (server) {
603                                 *server = '\0';
604                                 server++;
605                         }
606                         host = strchr(target, '%');
607                         if (host) {
608                                 *host = '\0';
609                                 host++;
610                         }
611                         user = strchr(target, '!');
612                         if (user) {
613                                 /* msgto form: nick!user@host */
614                                 *user = '\0';
615                                 user++;
616                                 nick = target;
617                                 host = server; /* not "@server" but "@host" */
618                         } else {
619                                 user = target;
620                         }
621
622                         for (cl = Client_First(); cl != NULL; cl = Client_Next(cl)) {
623                                 if (Client_Type(cl) != CLIENT_USER &&
624                                     Client_Type(cl) != CLIENT_SERVICE)
625                                         continue;
626                                 if (nick != NULL && host != NULL) {
627                                         if (strcasecmp(nick, Client_ID(cl)) == 0 &&
628                                             strcasecmp(user, Client_User(cl)) == 0 &&
629                                             strcasecmp(host, Client_HostnameDisplayed(cl)) == 0)
630                                                 break;
631                                         else
632                                                 continue;
633                                 }
634                                 if (strcasecmp(user, Client_User(cl)) != 0)
635                                         continue;
636                                 if (host != NULL && strcasecmp(host,
637                                                 Client_HostnameDisplayed(cl)) != 0)
638                                         continue;
639                                 if (server != NULL && strcasecmp(server,
640                                                 Client_ID(Client_Introducer(cl))) != 0)
641                                         continue;
642                                 break;
643                         }
644                 }
645
646                 if (cl) {
647                         /* Target is a user, enforce type */
648 #ifndef STRICT_RFC
649                         if (Client_Type(cl) != ForceType &&
650                             !(ForceType == CLIENT_USER &&
651                               (Client_Type(cl) == CLIENT_USER ||
652                                Client_Type(cl) == CLIENT_SERVICE))) {
653 #else
654                         if (Client_Type(cl) != ForceType) {
655 #endif
656                                 if (SendErrors && !IRC_WriteErrClient(
657                                     from, ERR_NOSUCHNICK_MSG,Client_ID(from),
658                                     currentTarget))
659                                         return DISCONNECTED;
660                                 goto send_next_target;
661                         }
662
663 #ifndef STRICT_RFC
664                         if (ForceType == CLIENT_SERVICE &&
665                             (Conn_Options(Client_Conn(Client_NextHop(cl)))
666                              & CONN_RFC1459)) {
667                                 /* SQUERY command but RFC 1459 link: convert
668                                  * request to PRIVMSG command */
669                                 Req->command = "PRIVMSG";
670                         }
671 #endif
672                         if (Client_HasMode(cl, 'b') &&
673                             !Client_HasMode(from, 'R') &&
674                             !Client_HasMode(from, 'o') &&
675                             !(Client_Type(from) == CLIENT_SERVER) &&
676                             !(Client_Type(from) == CLIENT_SERVICE)) {
677                                 if (SendErrors && !IRC_WriteErrClient(from,
678                                                 ERR_NONONREG_MSG,
679                                                 Client_ID(from), Client_ID(cl)))
680                                         return DISCONNECTED;
681                                 goto send_next_target;
682                         }
683
684                         if (Client_HasMode(cl, 'C')) {
685                                 cl2chan = Channel_FirstChannelOf(cl);
686                                 while (cl2chan) {
687                                         chan = Channel_GetChannel(cl2chan);
688                                         if (Channel_IsMemberOf(chan, from))
689                                                 break;
690                                         cl2chan = Channel_NextChannelOf(cl, cl2chan);
691                                 }
692                                 if (!cl2chan) {
693                                         if (SendErrors && !IRC_WriteErrClient(
694                                             from, ERR_NOTONSAMECHANNEL_MSG,
695                                             Client_ID(from), Client_ID(cl)))
696                                                 return DISCONNECTED;
697                                         goto send_next_target;
698                                 }
699                         }
700
701                         if (SendErrors && (Client_Type(Client) != CLIENT_SERVER)
702                             && Client_HasMode(cl, 'a')) {
703                                 /* Target is away */
704                                 if (!IRC_WriteStrClient(from, RPL_AWAY_MSG,
705                                                         Client_ID(from),
706                                                         Client_ID(cl),
707                                                         Client_Away(cl)))
708                                         return DISCONNECTED;
709                         }
710                         if (Client_Conn(from) > NONE) {
711                                 Conn_UpdateIdle(Client_Conn(from));
712                         }
713                         if (!IRC_WriteStrClientPrefix(cl, from, "%s %s :%s",
714                                                       Req->command, Client_ID(cl),
715                                                       message))
716                                 return DISCONNECTED;
717                 } else if (ForceType != CLIENT_SERVICE
718                            && (chan = Channel_Search(currentTarget))) {
719                         /* Target is a channel */
720                         if (!Channel_Write(chan, from, Client, Req->command,
721                                            SendErrors, message))
722                                         return DISCONNECTED;
723                 } else if (ForceType != CLIENT_SERVICE
724                            && strchr("$#", currentTarget[0])
725                            && strchr(currentTarget, '.')) {
726                         /* $#: server/host mask, RFC 2812, sec. 3.3.1 */
727                         if (!Send_Message_Mask(from, Req->command, currentTarget,
728                                                message, SendErrors))
729                                 return DISCONNECTED;
730                 } else {
731                         if (!SendErrors)
732                                 return CONNECTED;
733                         if (!IRC_WriteErrClient(from, ERR_NOSUCHNICK_MSG,
734                                                 Client_ID(from), currentTarget))
735                                 return DISCONNECTED;
736                 }
737
738         send_next_target:
739                 currentTarget = strtok_r(NULL, ",", &strtok_last);
740                 if (!currentTarget)
741                         break;
742
743                 Conn_SetPenalty(Client_Conn(Client), 1);
744
745                 if (target_nr >= MAX_HNDL_TARGETS) {
746                         /* Too many targets given! */
747                         return IRC_WriteErrClient(Client,
748                                                   ERR_TOOMANYTARGETS_MSG,
749                                                   currentTarget);
750                 }
751         }
752
753         return CONNECTED;
754 } /* Send_Message */
755
756 /**
757  * Send a message to "target mask" target(s).
758  *
759  * See RFC 2812, sec. 3.3.1 for details.
760  *
761  * @param from The client from which this command has been received.
762  * @param command The command to use (PRIVMSG, NOTICE, ...).
763  * @param targetMask The "target mask" (will be verified by this function).
764  * @param message The message to send.
765  * @param SendErrors Whether to report errors back to the client or not.
766  * @return CONNECTED or DISCONNECTED.
767  */
768 static bool
769 Send_Message_Mask(CLIENT * from, char * command, char * targetMask,
770                   char * message, bool SendErrors)
771 {
772         CLIENT *cl;
773         bool client_match;
774         char *mask = targetMask + 1;
775         const char *check_wildcards;
776
777         cl = NULL;
778
779         if (!Client_HasMode(from, 'o')) {
780                 if (!SendErrors)
781                         return true;
782                 return IRC_WriteErrClient(from, ERR_NOPRIVILEGES_MSG,
783                                           Client_ID(from));
784         }
785
786         /*
787          * RFC 2812, sec. 3.3.1 requires that targetMask have at least one
788          * dot (".") and no wildcards ("*", "?") following the last one.
789          */
790         check_wildcards = strrchr(targetMask, '.');
791         if (!check_wildcards || check_wildcards[strcspn(check_wildcards, "*?")]) {
792                 if (!SendErrors)
793                         return true;
794                 return IRC_WriteErrClient(from, ERR_WILDTOPLEVEL_MSG,
795                                           targetMask);
796         }
797
798         if (targetMask[0] == '#') {
799                 /* #: hostmask, see RFC 2812, sec. 3.3.1 */
800                 for (cl = Client_First(); cl != NULL; cl = Client_Next(cl)) {
801                         if (Client_Type(cl) != CLIENT_USER)
802                                 continue;
803                         client_match = MatchCaseInsensitive(mask, Client_Hostname(cl));
804                         if (client_match)
805                                 if (!IRC_WriteStrClientPrefix(cl, from, "%s %s :%s",
806                                                 command, Client_ID(cl), message))
807                                         return false;
808                 }
809         } else {
810                 /* $: server mask, see RFC 2812, sec. 3.3.1 */
811                 assert(targetMask[0] == '$');
812                 for (cl = Client_First(); cl != NULL; cl = Client_Next(cl)) {
813                         if (Client_Type(cl) != CLIENT_USER)
814                                 continue;
815                         client_match = MatchCaseInsensitive(mask,
816                                         Client_ID(Client_Introducer(cl)));
817                         if (client_match)
818                                 if (!IRC_WriteStrClientPrefix(cl, from, "%s %s :%s",
819                                                 command, Client_ID(cl), message))
820                                         return false;
821                 }
822         }
823         return CONNECTED;
824 } /* Send_Message_Mask */
825
826 /* -eof- */