6da453bd967f1a6f823f0c0bcaf34f5f1906eef0
[ircu2.10.12-pk.git] / ircd / send.c
1 /*
2  * IRC - Internet Relay Chat, common/send.c
3  * Copyright (C) 1990 Jarkko Oikarinen and
4  *                    University of Oulu, Computing Center
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 1, or (at your option)
9  * any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19  *
20  * $Id$
21  */
22 #include "config.h"
23
24 #include "send.h"
25 #include "channel.h"
26 #include "class.h"
27 #include "client.h"
28 #include "ircd.h"
29 #include "ircd_snprintf.h"
30 #include "ircd_string.h"
31 #include "list.h"
32 #include "match.h"
33 #include "msg.h"
34 #include "numnicks.h"
35 #include "s_bsd.h"
36 #include "s_debug.h"
37 #include "s_misc.h"
38 #include "s_user.h"
39 #include "sprintf_irc.h"
40 #include "struct.h"
41 #include "sys.h"
42
43 #include <assert.h>
44 #include <stdio.h>
45 #include <string.h>
46
47
48 static int sentalong[MAXCONNECTIONS];
49 static int sentalong_marker;
50 struct SLink *opsarray[32];     /* don't use highest bit unless you change
51                                    atoi to strtoul in sendto_op_mask() */
52 static struct Connection *send_queues = 0;
53
54 /*
55  * dead_link
56  *
57  * An error has been detected. The link *must* be closed,
58  * but *cannot* call ExitClient (m_bye) from here.
59  * Instead, mark it with FLAGS_DEADSOCKET. This should
60  * generate ExitClient from the main loop.
61  *
62  * If 'notice' is not NULL, it is assumed to be a format
63  * for a message to local opers. It can contain only one
64  * '%s', which will be replaced by the sockhost field of
65  * the failing link.
66  *
67  * Also, the notice is skipped for "uninteresting" cases,
68  * like Persons and yet unknown connections...
69  */
70
71 static void dead_link(struct Client *to, char *notice)
72 {
73   cli_flags(to) |= FLAGS_DEADSOCKET;
74   /*
75    * If because of BUFFERPOOL problem then clean dbuf's now so that
76    * notices don't hurt operators below.
77    */
78   DBufClear(&(cli_recvQ(to)));
79   MsgQClear(&(cli_sendQ(to)));
80   client_drop_sendq(cli_connect(to));
81
82   /*
83    * Keep a copy of the last comment, for later use...
84    */
85   ircd_strncpy(cli_info(to), notice, REALLEN);
86
87   if (!IsUser(to) && !IsUnknown(to) && !(cli_flags(to) & FLAGS_CLOSING))
88     sendto_opmask_butone(0, SNO_OLDSNO, "%s for %s", cli_info(to), cli_name(to));
89   Debug((DEBUG_ERROR, cli_info(to)));
90 }
91
92 static int can_send(struct Client* to)
93 {
94   assert(0 != to);
95   return (IsDead(to) || IsMe(to) || -1 == cli_fd(to)) ? 0 : 1;
96 }
97
98 /*
99  * flush_connections
100  *
101  * Used to empty all output buffers for all connections. Should only
102  * be called once per scan of connections. There should be a select in
103  * here perhaps but that means either forcing a timeout or doing a poll.
104  * When flushing, all we do is empty the obuffer array for each local
105  * client and try to send it. if we cant send it, it goes into the sendQ
106  * -avalon
107  */
108 void flush_connections(struct Client* cptr)
109 {
110   if (cptr) {
111     send_queued(cptr);
112   }
113   else {
114     struct Connection* con;
115     for (con = send_queues; con; con = con_next(con)) {
116       assert(0 < MsgQLength(&(con_sendQ(con))));
117       send_queued(con_client(con));
118     }
119   }
120 }
121
122 /*
123  * send_queued
124  *
125  * This function is called from the main select-loop (or whatever)
126  * when there is a chance that some output would be possible. This
127  * attempts to empty the send queue as far as possible...
128  */
129 void send_queued(struct Client *to)
130 {
131   assert(0 != to);
132   assert(0 != cli_local(to));
133
134   if (IsBlocked(to) || !can_send(to))
135     return;                     /* Don't bother */
136
137   while (MsgQLength(&(cli_sendQ(to))) > 0) {
138     unsigned int len;
139
140     if ((len = deliver_it(to, &(cli_sendQ(to))))) {
141       msgq_delete(&(cli_sendQ(to)), len);
142       cli_lastsq(to) = MsgQLength(&(cli_sendQ(to))) / 1024;
143       if (IsBlocked(to)) {
144         update_write(to);
145         return;
146       }
147     }
148     else {
149       if (IsDead(to)) {
150         char tmp[512];
151         sprintf(tmp,"Write error: %s",(strerror(cli_error(to))) ? (strerror(cli_error(to))) : "Unknown error" );
152         dead_link(to, tmp);
153       }
154       return;
155     }
156   }
157
158   /* Ok, sendq is now empty... */
159   client_drop_sendq(cli_connect(to));
160   update_write(to);
161 }
162
163 void send_buffer(struct Client* to, struct MsgBuf* buf, int prio)
164 {
165   assert(0 != to);
166   assert(0 != buf);
167
168   if (cli_from(to))
169     to = cli_from(to);
170
171   if (!can_send(to))
172     /*
173      * This socket has already been marked as dead
174      */
175     return;
176
177   if (MsgQLength(&(cli_sendQ(to))) > get_sendq(to)) {
178     if (IsServer(to))
179       sendto_opmask_butone(0, SNO_OLDSNO, "Max SendQ limit exceeded for %C: "
180                            "%zu > %zu", to, MsgQLength(&(cli_sendQ(to))),
181                            get_sendq(to));
182     dead_link(to, "Max sendQ exceeded");
183     return;
184   }
185
186   Debug((DEBUG_SEND, "Sending [%p] to %s", buf, cli_name(to)));
187
188   msgq_add(&(cli_sendQ(to)), buf, prio);
189   client_add_sendq(cli_connect(to), &send_queues);
190   update_write(to);
191
192   /*
193    * Update statistics. The following is slightly incorrect
194    * because it counts messages even if queued, but bytes
195    * only really sent. Queued bytes get updated in SendQueued.
196    */
197   ++(cli_sendM(to));
198   ++(cli_sendM(&me));
199   /*
200    * This little bit is to stop the sendQ from growing too large when
201    * there is no need for it to. Thus we call send_queued() every time
202    * 2k has been added to the queue since the last non-fatal write.
203    * Also stops us from deliberately building a large sendQ and then
204    * trying to flood that link with data (possible during the net
205    * relinking done by servers with a large load).
206    */
207   if (MsgQLength(&(cli_sendQ(to))) / 1024 > cli_lastsq(to))
208     send_queued(to);
209 }
210
211 /*
212  * Send a msg to all ppl on servers/hosts that match a specified mask
213  * (used for enhanced PRIVMSGs)
214  *
215  *  addition -- Armin, 8jun90 (gruner@informatik.tu-muenchen.de)
216  */
217
218 static int match_it(struct Client *one, const char *mask, int what)
219 {
220   switch (what)
221   {
222     case MATCH_HOST:
223       return (match(mask, cli_user(one)->host) == 0);
224     case MATCH_SERVER:
225     default:
226       return (match(mask, cli_name(cli_user(one)->server)) == 0);
227   }
228 }
229
230 /*
231  * Send a raw command to a single client; use *ONLY* if you absolutely
232  * must send a command without a prefix.
233  */
234 void sendrawto_one(struct Client *to, const char *pattern, ...)
235 {
236   struct MsgBuf *mb;
237   va_list vl;
238
239   va_start(vl, pattern);
240   mb = msgq_vmake(to, pattern, vl);
241   va_end(vl);
242
243   send_buffer(to, mb, 0);
244
245   msgq_clean(mb);
246 }
247
248 /*
249  * Send a (prefixed) command to a single client; select which of <cmd>
250  * <tok> to use depending on if to is a server or not.  <from> is the
251  * originator of the command.
252  */
253 void sendcmdto_one(struct Client *from, const char *cmd, const char *tok,
254                    struct Client *to, const char *pattern, ...)
255 {
256   struct VarData vd;
257   struct MsgBuf *mb;
258
259   to = cli_from(to);
260
261   vd.vd_format = pattern; /* set up the struct VarData for %v */
262   va_start(vd.vd_args, pattern);
263
264   mb = msgq_make(to, "%:#C %s %v", from, IsServer(to) || IsMe(to) ? tok : cmd,
265                  &vd);
266
267   va_end(vd.vd_args);
268
269   send_buffer(to, mb, 0);
270
271   msgq_clean(mb);
272 }
273
274 /*
275  * Send a (prefixed) command to a single client in the priority queue;
276  * select  which of <cmd> <tok> to use depending on if to is a server
277  *or not.  <from> is the originator of the command.
278  */
279 void sendcmdto_prio_one(struct Client *from, const char *cmd, const char *tok,
280                         struct Client *to, const char *pattern, ...)
281 {
282   struct VarData vd;
283   struct MsgBuf *mb;
284
285   to = cli_from(to);
286
287   vd.vd_format = pattern; /* set up the struct VarData for %v */
288   va_start(vd.vd_args, pattern);
289
290   mb = msgq_make(to, "%:#C %s %v", from, IsServer(to) || IsMe(to) ? tok : cmd,
291                  &vd);
292
293   va_end(vd.vd_args);
294
295   send_buffer(to, mb, 1);
296
297   msgq_clean(mb);
298 }
299
300 /*
301  * Send a (prefixed) command to all servers but one, using tok; cmd
302  * is ignored in this particular function.
303  */
304 void sendcmdto_serv_butone(struct Client *from, const char *cmd,
305                            const char *tok, struct Client *one,
306                            const char *pattern, ...)
307 {
308   struct VarData vd;
309   struct MsgBuf *mb;
310   struct DLink *lp;
311
312   vd.vd_format = pattern; /* set up the struct VarData for %v */
313   va_start(vd.vd_args, pattern);
314
315   /* use token */
316   mb = msgq_make(&me, "%C %s %v", from, tok, &vd);
317   va_end(vd.vd_args);
318
319   /* send it to our downlinks */
320   for (lp = cli_serv(&me)->down; lp; lp = lp->next) {
321     if (one && lp->value.cptr == cli_from(one))
322       continue;
323     send_buffer(lp->value.cptr, mb, 0);
324   }
325
326   msgq_clean(mb);
327 }
328
329 /*
330  * Send a (prefix) command originating from <from> to all channels
331  * <from> is locally on.  <from> must be a user. <tok> is ignored in
332  * this function.
333  */
334 /* XXX sentalong_marker used XXX
335  *
336  * There is not an easy way to revoke the need for sentalong_marker
337  * from this function.  Thoughts and ideas would be welcome... -Kev
338  *
339  * One possibility would be to internalize the sentalong array; that
340  * could be prohibitively big, though.  We could get around that by
341  * making one that's the number of connected servers or something...
342  * or perhaps by adding a special flag to the servers we've sent a
343  * message to, and then a final loop through the connected servers
344  * to delete the flag. -Kev
345  */
346 void sendcmdto_common_channels(struct Client *from, const char *cmd,
347                                const char *tok, const char *pattern, ...)
348 {
349   struct VarData vd;
350   struct MsgBuf *mb;
351   struct Membership *chan;
352   struct Membership *member;
353
354   assert(0 != from);
355   assert(0 != cli_from(from));
356   assert(0 != pattern);
357   assert(!IsServer(from) && !IsMe(from));
358
359   vd.vd_format = pattern; /* set up the struct VarData for %v */
360
361   va_start(vd.vd_args, pattern);
362
363   /* build the buffer */
364   mb = msgq_make(0, "%:#C %s %v", from, cmd, &vd);
365   va_end(vd.vd_args);
366
367   sentalong_marker++;
368   if (-1 < cli_fd(cli_from(from)))
369     sentalong[cli_fd(cli_from(from))] = sentalong_marker;
370   /*
371    * loop through from's channels, and the members on their channels
372    */
373   for (chan = cli_user(from)->channel; chan; chan = chan->next_channel)
374     for (member = chan->channel->members; member;
375          member = member->next_member)
376       if (MyConnect(member->user) && -1 < cli_fd(cli_from(member->user)) &&
377           sentalong[cli_fd(cli_from(member->user))] != sentalong_marker) {
378         sentalong[cli_fd(cli_from(member->user))] = sentalong_marker;
379         send_buffer(member->user, mb, 0);
380       }
381
382   if (MyConnect(from))
383     send_buffer(from, mb, 0);
384
385   msgq_clean(mb);
386 }
387
388 /*
389  * Send a (prefixed) command to all local users on the channel specified
390  * by <to>; <tok> is ignored by this function
391  */
392 void sendcmdto_channel_butserv(struct Client *from, const char *cmd,
393                                const char *tok, struct Channel *to,
394                                const char *pattern, ...)
395 {
396   struct VarData vd;
397   struct MsgBuf *mb;
398   struct Membership *member;
399
400   vd.vd_format = pattern; /* set up the struct VarData for %v */
401   va_start(vd.vd_args, pattern);
402
403   /* build the buffer */
404   mb = msgq_make(0, "%:#C %s %v", from, cmd, &vd);
405   va_end(vd.vd_args);
406
407   /* send the buffer to each local channel member */
408   for (member = to->members; member; member = member->next_member) {
409     if (MyConnect(member->user) && !IsZombie(member))
410       send_buffer(member->user, mb, 0);
411   }
412
413   msgq_clean(mb);
414 }
415
416 /*
417  * Send a (prefixed) command to all users on this channel, including
418  * remote users; users to skip may be specified by setting appropriate
419  * flags in the <skip> argument.  <one> will also be skipped.
420  */
421 /* XXX sentalong_marker used XXX
422  *
423  * We can drop sentalong_marker from this function by adding a field to
424  * channels and to connections; what we do is make a user's connection
425  * a "member" of the channel by adding it to the new list, and we use
426  * the struct Membership status as a reference count.  Then, to implement
427  * this function, we just walk the list of connections.  Unfortunately,
428  * this doesn't account for sending only to channel ops, or for not
429  * sending to +d users; we could account for that by splitting those
430  * counts out, but that would imply adding two more fields (at least) to
431  * the struct Membership... -Kev
432  */
433 void sendcmdto_channel_butone(struct Client *from, const char *cmd,
434                               const char *tok, struct Channel *to,
435                               struct Client *one, unsigned int skip,
436                               const char *pattern, ...)
437 {
438   struct Membership *member;
439   struct VarData vd;
440   struct MsgBuf *user_mb;
441   struct MsgBuf *serv_mb;
442
443   vd.vd_format = pattern;
444
445   /* Build buffer to send to users */
446   va_start(vd.vd_args, pattern);
447   user_mb = msgq_make(0, skip & SKIP_NONOPS ? "%:#C %s @%v" : "%:#C %s %v",
448                       from, skip & SKIP_NONOPS ? MSG_NOTICE : cmd, &vd);
449   va_end(vd.vd_args);
450
451   /* Build buffer to send to servers */
452   va_start(vd.vd_args, pattern);
453   serv_mb = msgq_make(&me, "%C %s %v", from, tok, &vd);
454   va_end(vd.vd_args);
455
456   /* send buffer along! */
457   sentalong_marker++;
458   for (member = to->members; member; member = member->next_member) {
459     /* skip one, zombies, and deaf users... */
460     if (cli_from(member->user) == one || IsZombie(member) ||
461         (skip & SKIP_DEAF && IsDeaf(member->user)) ||
462         (skip & SKIP_NONOPS && !IsChanOp(member)) ||
463         (skip & SKIP_BURST && IsBurstOrBurstAck(cli_from(member->user))) ||
464         cli_fd(cli_from(member->user)) < 0 ||
465         sentalong[cli_fd(cli_from(member->user))] == sentalong_marker)
466       continue;
467     sentalong[cli_fd(cli_from(member->user))] = sentalong_marker;
468
469     if (MyConnect(member->user)) /* pick right buffer to send */
470       send_buffer(member->user, user_mb, 0);
471     else
472       send_buffer(member->user, serv_mb, 0);
473   }
474
475   msgq_clean(user_mb);
476   msgq_clean(serv_mb);
477 }
478
479 /*
480  * Send a (prefixed) command to all users except <one> that have
481  * <flag> set.
482  */
483 void sendcmdto_flag_butone(struct Client *from, const char *cmd,
484                            const char *tok, struct Client *one,
485                            unsigned int flag, const char *pattern, ...)
486 {
487   struct VarData vd;
488   struct Client *cptr;
489   struct MsgBuf *mb;
490   struct DLink *lp;
491   unsigned int oper_fl = 0;
492   int i;
493
494   if (flag & FLAGS_OPER) {
495     flag &= ~FLAGS_OPER;
496     oper_fl++;
497   }
498
499   vd.vd_format = pattern;
500
501   /* Build buffer to send to users */
502   va_start(vd.vd_args, pattern);
503   mb = msgq_make(0, "%:#C " MSG_WALLOPS " %v", from, &vd);
504   va_end(vd.vd_args);
505
506   /* send buffer along! */
507   for (i = 0; i <= HighestFd; i++) {
508     if (!(cptr = LocalClientArray[i]) || !(cli_flags(cptr) & flag) ||
509         (oper_fl && !IsAnOper(cptr)) || cli_fd(cli_from(cptr)) < 0)
510       continue; /* skip it */
511     send_buffer(cptr, mb, 1);
512   }
513
514   msgq_clean(mb);
515
516   /* Build buffer to send to servers */
517   va_start(vd.vd_args, pattern);
518   mb = msgq_make(&me, "%C %s %v", from, tok, &vd);
519   va_end(vd.vd_args);
520
521   /* send buffer along! */
522   for (lp = cli_serv(&me)->down; lp; lp = lp->next) {
523     if (one && lp->value.cptr == cli_from(one))
524       continue;
525     send_buffer(lp->value.cptr, mb, 1);
526   }
527
528   msgq_clean(mb);
529 }
530
531 /*
532  * Send a (prefixed) command to all users who match <to>, under control
533  * of <who>
534  */
535 /* XXX sentalong_marker used XXX
536  *
537  * This is also a difficult one to solve.  The basic approach would be
538  * to walk the client list of each connected server until we find a
539  * match--but then, we also have to walk the client list of all the
540  * servers behind that one.  We could implement this recursively--or we
541  * could add (yet another) field to the connection struct that would be
542  * a linked list of clients introduced through that link, and just walk
543  * that, making this into an iterative implementation.  Unfortunately,
544  * we probably would not be able to use tail recursion for the recursive
545  * solution, so a deep network could exhaust our stack space; therefore
546  * I favor the extra linked list, even though that increases the
547  * complexity of the database. -Kev
548  */
549 void sendcmdto_match_butone(struct Client *from, const char *cmd,
550                             const char *tok, const char *to,
551                             struct Client *one, unsigned int who,
552                             const char *pattern, ...)
553 {
554   struct VarData vd;
555   struct Client *cptr;
556   struct MsgBuf *user_mb;
557   struct MsgBuf *serv_mb;
558
559   vd.vd_format = pattern;
560
561   /* Build buffer to send to users */
562   va_start(vd.vd_args, pattern);
563   user_mb = msgq_make(0, "%:#C %s %v", from, cmd, &vd);
564   va_end(vd.vd_args);
565
566   /* Build buffer to send to servers */
567   va_start(vd.vd_args, pattern);
568   serv_mb = msgq_make(&me, "%C %s %v", from, tok, &vd);
569   va_end(vd.vd_args);
570
571   /* send buffer along */
572   sentalong_marker++;
573   for (cptr = GlobalClientList; cptr; cptr = cli_next(cptr)) {
574     if (!IsRegistered(cptr) || cli_from(cptr) == one || IsServer(cptr) ||
575         IsMe(cptr) || !match_it(cptr, to, who) || cli_fd(cli_from(cptr)) < 0 ||
576         sentalong[cli_fd(cli_from(cptr))] == sentalong_marker)
577       continue; /* skip it */
578     sentalong[cli_fd(cli_from(cptr))] = sentalong_marker;
579
580     if (MyConnect(cptr)) /* send right buffer */
581       send_buffer(cptr, user_mb, 0);
582     else
583       send_buffer(cptr, serv_mb, 0);
584   }
585
586   msgq_clean(user_mb);
587   msgq_clean(serv_mb);
588 }
589
590 /*
591  * Send a server notice to all users subscribing to the indicated <mask>
592  * except for <one>
593  */
594 void sendto_opmask_butone(struct Client *one, unsigned int mask,
595                           const char *pattern, ...)
596 {
597   va_list vl;
598
599   va_start(vl, pattern);
600   vsendto_opmask_butone(one, mask, pattern, vl);
601   va_end(vl);
602 }
603
604 /*
605  * Same as above, except called with a variable argument list
606  */
607 void vsendto_opmask_butone(struct Client *one, unsigned int mask,
608                            const char *pattern, va_list vl)
609 {
610   struct VarData vd;
611   struct MsgBuf *mb;
612   int i = 0; /* so that 1 points to opsarray[0] */
613   struct SLink *opslist;
614
615   while ((mask >>= 1))
616     i++;
617
618   if (!(opslist = opsarray[i]))
619     return;
620
621   /*
622    * build string; I don't want to bother with client nicknames, so I hope
623    * this is ok...
624    */
625   vd.vd_format = pattern;
626   vd.vd_args = vl;
627   mb = msgq_make(0, ":%s " MSG_NOTICE " * :*** Notice -- %v", cli_name(&me),
628                  &vd);
629
630   for (; opslist; opslist = opslist->next)
631     send_buffer(opslist->value.cptr, mb, 0);
632
633   msgq_clean(mb);
634 }