Author: Kev <klmitch@mit.edu>
[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 "send.h"
23 #include "channel.h"
24 #include "class.h"
25 #include "client.h"
26 #include "ircd.h"
27 #include "ircd_snprintf.h"
28 #include "ircd_string.h"
29 #include "list.h"
30 #include "match.h"
31 #include "msg.h"
32 #include "numnicks.h"
33 #include "s_bsd.h"
34 #include "s_debug.h"
35 #include "s_misc.h"
36 #include "s_user.h"
37 #include "sprintf_irc.h"
38 #include "struct.h"
39 #include "sys.h"
40
41 #include <assert.h>
42 #include <stdio.h>
43 #include <string.h>
44
45
46 char sendbuf[2048];
47 static int sentalong[MAXCONNECTIONS];
48 static int sentalong_marker;
49 struct SLink *opsarray[32];     /* don't use highest bit unless you change
50                                    atoi to strtoul in sendto_op_mask() */
51 #ifdef GODMODE
52 char sendbuf2[2048];
53 int sdbflag;
54 #endif /* GODMODE */
55
56 /*
57  * dead_link
58  *
59  * An error has been detected. The link *must* be closed,
60  * but *cannot* call ExitClient (m_bye) from here.
61  * Instead, mark it with FLAGS_DEADSOCKET. This should
62  * generate ExitClient from the main loop.
63  *
64  * If 'notice' is not NULL, it is assumed to be a format
65  * for a message to local opers. It can contain only one
66  * '%s', which will be replaced by the sockhost field of
67  * the failing link.
68  *
69  * Also, the notice is skipped for "uninteresting" cases,
70  * like Persons and yet unknown connections...
71  */
72
73 static void dead_link(struct Client *to, char *notice)
74 {
75   to->flags |= FLAGS_DEADSOCKET;
76   /*
77    * If because of BUFFERPOOL problem then clean dbuf's now so that
78    * notices don't hurt operators below.
79    */
80   DBufClear(&to->recvQ);
81   DBufClear(&to->sendQ);
82
83   /*
84    * Keep a copy of the last comment, for later use...
85    */
86   ircd_strncpy(to->info, notice, REALLEN);
87
88   if (!IsUser(to) && !IsUnknown(to) && !(to->flags & FLAGS_CLOSING))
89     sendto_ops("%s for %s", to->info, to->name);
90   Debug((DEBUG_ERROR, to->info));
91 }
92
93 static int can_send(struct Client* to)
94 {
95   assert(0 != to);
96   return (IsDead(to) || IsMe(to) || -1 == to->fd) ? 0 : 1;
97 }
98
99 /*
100  * flush_connections
101  *
102  * Used to empty all output buffers for all connections. Should only
103  * be called once per scan of connections. There should be a select in
104  * here perhaps but that means either forcing a timeout or doing a poll.
105  * When flushing, all we do is empty the obuffer array for each local
106  * client and try to send it. if we cant send it, it goes into the sendQ
107  * -avalon
108  */
109 void flush_connections(struct Client* cptr)
110 {
111   if (cptr) {
112     send_queued(cptr);
113   }
114   else {
115     int i;
116     for (i = HighestFd; i >= 0; i--) {
117       if ((cptr = LocalClientArray[i]))
118         send_queued(cptr);
119     }
120   }
121 }
122
123 /*
124  * flush_sendq_except - run through local client array and flush
125  * the sendq for each client, if the address of the client sendq
126  * is the same as the one specified, it is skipped. This is used
127  * by dbuf_put to try to get some more memory before bailing and
128  * causing the client to be disconnected.
129  */
130 void flush_sendq_except(const struct DBuf* one)
131 {
132   int i;
133   struct Client* cptr;
134   for (i = HighestFd; i >= 0; i--) {
135     if ( (cptr = LocalClientArray[i]) && one != &cptr->sendQ)
136       send_queued(cptr);
137   }
138 }
139
140 /*
141  * send_queued
142  *
143  * This function is called from the main select-loop (or whatever)
144  * when there is a chance that some output would be possible. This
145  * attempts to empty the send queue as far as possible...
146  */
147 void send_queued(struct Client *to)
148 {
149   assert(0 != to);
150   assert(0 != to->local);
151
152   if (IsBlocked(to) || !can_send(to))
153     return;                     /* Don't bother */
154
155   while (DBufLength(&to->sendQ) > 0) {
156     unsigned int len;
157     const char* msg = dbuf_map(&to->sendQ, &len);
158
159     if ((len = deliver_it(to, msg, len))) {
160       dbuf_delete(&to->sendQ, len);
161       to->lastsq = DBufLength(&to->sendQ) / 1024;
162       if (IsBlocked(to))
163         break;
164     }
165     else {
166       if (IsDead(to)) {
167         char tmp[512];
168         sprintf(tmp,"Write error: %s",(strerror(to->error)) ? (strerror(to->error)) : "Unknown error" );
169         dead_link(to, tmp);
170       }
171       break;
172     }
173   }
174 }
175
176 /*
177  *  send message to single client
178  */
179 void sendto_one(struct Client *to, const char* pattern, ...)
180 {
181   va_list vl;
182   va_start(vl, pattern);
183   vsendto_one(to, pattern, vl);
184   va_end(vl);
185 }
186
187
188 void vsendto_one(struct Client *to, const char* pattern, va_list vl)
189 {
190   vsprintf_irc(sendbuf, pattern, vl);
191   sendbufto_one(to);
192 }
193
194 /*
195  * Send a (prefixed) command to a single client; select which of <cmd>
196  * <tok> to use depending on if to is a server or not.  <from> is the
197  * originator of the command.
198  */
199 void sendcmdto_one(struct Client *to, const char *cmd, const char *tok,
200                    struct Client *from, const char *pattern, ...)
201 {
202   va_list vl;
203
204   va_start(vl, pattern);
205   vsendcmdto_one(to, cmd, tok, from, pattern, vl);
206   va_end(vl);
207 }
208
209 void vsendcmdto_one(struct Client *to, const char *cmd, const char *tok,
210                     struct Client *from, const char *pattern, va_list vl)
211 {
212   struct VarData vd;
213   char sndbuf[IRC_BUFSIZE];
214
215   vd.vd_format = pattern; /* set up the struct VarData for %v */
216   vd.vd_args = vl;
217
218   if (MyUser(to)) { /* :nick!user@host form; use cmd */
219     if (IsServer(from) || IsMe(from))
220       ircd_snprintf(to, sndbuf, sizeof(sndbuf) - 2, ":%s %s %v",
221                     from->name, cmd, &vd);
222     else
223       ircd_snprintf(to, sndbuf, sizeof(sndbuf) - 2, ":%s!%s@%s %s %v",
224                     from->name, from->user->username, from->user->host,
225                     cmd, &vd);
226   } else /* numeric form; use tok */
227     ircd_snprintf(to, sndbuf, sizeof(sndbuf) - 2, "%C %s %v", from, tok, &vd);
228
229   send_buffer(to, sndbuf);
230 }
231
232 #ifdef GODMODE
233 static void send_to_god(struct Client* to, const char* buf)
234 {
235   if (!sdbflag && !IsUser(to)) {
236     char sbuf2[BUFSIZE + 1];
237     unsigned int len = strlen(buf) - 2;   /* Remove "\r\n" */
238
239     sdbflag = 1;
240     len = IRCD_MIN(len, BUFSIZE);
241     ircd_strncpy(sbuf2, buf, len);
242     sbuf2[len] = '\0';
243
244     if (len > 402) {
245       char c = sbuf2[200];
246       sbuf2[200] = '\0';
247       sendto_ops("SND:%-8.8s(%.4d): \"%s...%s\"",
248                  to->name, len, sbuf2, &sbuf2[len - 200]);
249     }
250     else
251       sendto_ops("SND:%-8.8s(%.4d): \"%s\"", to->name, len, sbuf2);
252     sdbflag = 0;
253   }
254 }
255 #endif /* GODMODE */
256
257 void send_buffer(struct Client* to, char* buf)
258 {
259   unsigned int len;
260   assert(0 != to);
261   assert(0 != buf);
262
263   if (to->from)
264     to = to->from;
265
266   if (!can_send(to))
267     /*
268      * This socket has already been marked as dead
269      */
270     return;
271
272   if (DBufLength(&to->sendQ) > get_sendq(to)) {
273     if (IsServer(to))
274       sendto_ops("Max SendQ limit exceeded for %s: " SIZE_T_FMT " > " SIZE_T_FMT,
275                  to->name, DBufLength(&to->sendQ), get_sendq(to));
276     dead_link(to, "Max sendQ exceeded");
277     return;
278   }
279
280   Debug((DEBUG_SEND, "Sending [%s] to %s", buf, to->name));
281
282   len = strlen(buf);
283   if (buf[len - 1] != '\n') {
284     if (len > 510)
285       len = 510;
286     buf[len++] = '\r';
287     buf[len++] = '\n';
288     buf[len] = '\0';
289   }
290
291   if (0 == dbuf_put(&to->sendQ, buf, len)) {
292     dead_link(to, "Buffer allocation error");
293     return;
294   }
295
296 #ifdef GODMODE
297   send_to_god(to, buf);
298 #endif /* GODMODE */
299   /*
300    * Update statistics. The following is slightly incorrect
301    * because it counts messages even if queued, but bytes
302    * only really sent. Queued bytes get updated in SendQueued.
303    */
304   ++to->sendM;
305   ++me.sendM;
306   /*
307    * This little bit is to stop the sendQ from growing too large when
308    * there is no need for it to. Thus we call send_queued() every time
309    * 2k has been added to the queue since the last non-fatal write.
310    * Also stops us from deliberately building a large sendQ and then
311    * trying to flood that link with data (possible during the net
312    * relinking done by servers with a large load).
313    */
314   if (DBufLength(&to->sendQ) / 1024 > to->lastsq)
315     send_queued(to);
316 }
317
318 void sendbufto_one(struct Client* to)
319 {
320   send_buffer(to, sendbuf);
321 }
322
323 static void vsendto_prefix_one(struct Client *to, struct Client *from,
324     const char* pattern, va_list vl)
325 {
326   if (to && from && MyUser(to) && IsUser(from))
327   {
328     static char sender[HOSTLEN + NICKLEN + USERLEN + 5];
329     char *par;
330     int flag = 0;
331     struct User *user = from->user;
332
333     par = va_arg(vl, char *);
334     strcpy(sender, from->name);
335     if (user)
336     {
337       if (*user->username)
338       {
339         strcat(sender, "!");
340         strcat(sender, user->username);
341       }
342       if (*user->host && !MyConnect(from))
343       {
344         strcat(sender, "@");
345         strcat(sender, user->host);
346         flag = 1;
347       }
348     }
349     /*
350      * Flag is used instead of strchr(sender, '@') for speed and
351      * also since username/nick may have had a '@' in them. -avalon
352      */
353     if (!flag && MyConnect(from) && *user->host)
354     {
355       strcat(sender, "@");
356       strcat(sender, from->sockhost);
357     }
358     *sendbuf = ':';
359     strcpy(&sendbuf[1], sender);
360     /* Assuming 'pattern' always starts with ":%s ..." */
361     vsprintf_irc(sendbuf + strlen(sendbuf), &pattern[3], vl);
362   }
363   else
364     vsprintf_irc(sendbuf, pattern, vl);
365   sendbufto_one(to);
366 }
367
368 void sendto_channel_butone(struct Client *one, struct Client *from, struct Channel *chptr,
369     const char* pattern, ...)
370 {
371   va_list vl;
372   struct Membership* member;
373   struct Client *acptr;
374   int i;
375
376   va_start(vl, pattern);
377
378   ++sentalong_marker;
379   for (member = chptr->members; member; member = member->next_member)
380   {
381     acptr = member->user;
382     /* ...was the one I should skip */
383     if (acptr->from == one || IsZombie(member) || IsDeaf(acptr))
384       continue;
385     if (MyConnect(acptr))       /* (It is always a client) */
386       vsendto_prefix_one(acptr, from, pattern, vl);
387     else if (-1 < (i = acptr->from->fd) && sentalong[i] != sentalong_marker)
388     {
389       sentalong[i] = sentalong_marker;
390       /*
391        * Don't send channel messages to links that are still eating
392        * the net.burst: -- Run 2/1/1997
393        */
394       if (!IsBurstOrBurstAck(acptr->from))
395         vsendto_prefix_one(acptr, from, pattern, vl);
396     }
397   }
398   va_end(vl);
399 }
400
401
402 void sendmsgto_channel_butone(struct Client *one, struct Client *from,
403                               struct Channel *chptr, const char *sender,
404                               const char *cmd, const char *chname, const char *msg)
405 {
406  /*
407   * Sends a PRIVMSG/NOTICE to all members on a channel but 'one', translating
408   * TOKENS to full messages when sent to local clients. --Gte (12/12/99)
409   */
410   struct Membership* member;
411   struct Client *acptr;
412   char userbuf[2048];
413   char servbuf[2048];
414   int i;
415   int flag=-1;
416
417   assert(0 != cmd);
418   /* 
419    * Precalculate the buffers we sent to the clients instead of doing an
420    * expensive sprintf() per member that we send to.  We still have to
421    * use strcpy() which is evil.
422    */
423   if (IsServer(from)) {
424     sprintf(userbuf,":%s %s %s :%s",
425             from->name, ('P' == *cmd) ? MSG_PRIVATE : MSG_NOTICE, chname, msg);
426     sprintf(servbuf,"%s %s %s :%s", NumServ(from), cmd, chname, msg);
427   }
428   else {
429     sprintf(userbuf,":%s!%s@%s %s %s :%s",
430             from->name, from->user->username, from->user->host,
431             ('P' == *cmd) ? MSG_PRIVATE : MSG_NOTICE, chname, msg);
432     sprintf(servbuf,"%s%s %s %s :%s", NumNick(from), cmd, chname, msg);
433   }
434
435   ++sentalong_marker;
436   for (member = chptr->members; member; member = member->next_member)
437   {
438     acptr = member->user;
439     /* ...was the one I should skip */
440     if (acptr->from == one || IsZombie(member) || IsDeaf(acptr))
441       continue;
442     if (MyConnect(acptr)) {      /* (It is always a client) */
443         if (flag!=0)
444           strcpy(sendbuf,userbuf);
445         flag=0;
446         sendbufto_one(acptr);
447     }
448     else if (-1 < (i = acptr->from->fd) && sentalong[i] != sentalong_marker)
449     {
450       sentalong[i] = sentalong_marker;
451       if (!IsBurstOrBurstAck(acptr->from)) {
452         if (flag != 1)
453           strcpy(sendbuf,servbuf);
454         flag = 1;
455         sendbufto_one(acptr);
456   }
457     } /* of if MyConnect() */
458   } /* of for(members) */
459 }
460
461 void sendto_lchanops_butone(struct Client *one, struct Client *from, struct Channel *chptr,
462     const char* pattern, ...)
463 {
464   va_list vl;
465   struct Membership* member;
466   struct Client *acptr;
467
468   va_start(vl, pattern);
469
470   for (member = chptr->members; member; member = member->next_member)
471   {
472     acptr = member->user;
473     /* ...was the one I should skip */
474     if (acptr == one || !IsChanOp(member) || IsZombie(member) || IsDeaf(acptr))
475       continue;
476     if (MyConnect(acptr))       /* (It is always a client) */
477       vsendto_prefix_one(acptr, from, pattern, vl);
478   }
479   va_end(vl);
480   return;
481 }
482
483 void sendto_chanopsserv_butone(struct Client *one, struct Client *from, struct Channel *chptr,
484     const char* pattern, ...)
485 {
486   va_list vl;
487   struct Membership* member;
488   struct Client *acptr;
489   int i;
490 #ifndef NO_PROTOCOL9
491   char  target[128];
492   char* source;
493   char* tp;
494   char* msg;
495 #endif
496
497   va_start(vl, pattern);
498
499   ++sentalong_marker;
500   for (member = chptr->members; member; member = member->next_member)
501   {
502     acptr = member->user;
503     if (acptr->from == acptr || /* Skip local clients */
504 #ifndef NO_PROTOCOL9
505         Protocol(acptr->from) < 10 ||   /* Skip P09 links */
506 #endif
507         acptr->from == one ||   /* ...was the one I should skip */
508         !IsChanOp(member) ||   /* Skip non chanops */
509         IsZombie(member) || IsDeaf(acptr))
510       continue;
511     if (-1 < (i = acptr->from->fd) && sentalong[i] != sentalong_marker)
512     {
513       sentalong[i] = sentalong_marker;
514       /* Don't send channel messages to links that are
515          still eating the net.burst: -- Run 2/1/1997 */
516       if (!IsBurstOrBurstAck(acptr->from))
517         vsendto_prefix_one(acptr, from, pattern, vl);
518     }
519   }
520
521 #ifndef NO_PROTOCOL9
522   /* Send message to all 2.9 servers */
523   /* This is a hack, because it assumes that we know how `vl' is build up */
524   source = va_arg(vl, char *);
525   tp = va_arg(vl, char *);      /* Channel */
526   msg = va_arg(vl, char *);
527   for (member = chptr->members; member; member = member->next_member)
528   {
529     acptr = member->user;
530     if (acptr->from == acptr || /* Skip local clients */
531         Protocol(acptr->from) > 9 ||    /* Skip P10 servers */
532         acptr->from == one ||   /* ...was the one I should skip */
533         !IsChanOp(member) ||   /* Skip non chanops */
534         IsZombie(member) || IsDeaf(acptr))
535       continue;
536     if (-1 < (i = acptr->from->fd) && sentalong[i] != sentalong_marker)
537     {
538       sentalong[i] = sentalong_marker;
539       /* Don't send channel messages to links that are
540          still eating the net.burst: -- Run 2/1/1997 */
541       if (!IsBurstOrBurstAck(acptr->from))
542       {
543         struct Membership* other_member;
544         struct Client* acptr2;
545         tp = target;
546         *tp = 0;
547         /* Find all chanops in this direction: */
548         for (other_member = chptr->members; other_member; other_member = other_member->next_member)
549         {
550           acptr2 = other_member->user;
551           if (acptr2->from == acptr->from && acptr2->from != one &&
552               IsChanOp(other_member) && !IsZombie(other_member) &&
553               !IsDeaf(acptr2))
554           {
555             int len = strlen(acptr2->name);
556             if (tp + len + 2 > target + sizeof(target))
557             {
558               sendto_prefix_one(acptr, from,
559                   ":%s NOTICE %s :%s", source, target, msg);
560               tp = target;
561               *tp = 0;
562             }
563             if (*target)
564               strcpy(tp++, ",");
565             strcpy(tp, acptr2->name);
566             tp += len;
567           }
568         }
569         sendto_prefix_one(acptr, from,
570             ":%s NOTICE %s :%s", source, target, msg);
571       }
572     }
573   }
574 #endif
575
576   va_end(vl);
577   return;
578 }
579
580 /*
581  * sendto_serv_butone
582  *
583  * Send a message to all connected servers except the client 'one'.
584  */
585 void sendto_serv_butone(struct Client *one, const char* pattern, ...)
586 {
587   va_list vl;
588   struct DLink *lp;
589
590   va_start(vl, pattern);
591   vsprintf_irc(sendbuf, pattern, vl);
592   va_end(vl);
593
594   for (lp = me.serv->down; lp; lp = lp->next)
595   {
596     if (one && lp->value.cptr == one->from)
597       continue;
598     sendbufto_one(lp->value.cptr);
599   }
600
601 }
602
603 void sendcmdto_serv_butone(struct Client *one, const char *cmd,
604                            const char *tok, struct Client *from,
605                            const char *pattern, ...)
606 {
607   struct VarData vd;
608   char sndbuf[IRC_BUFSIZE];
609   struct DLink *lp;
610
611   vd.vd_format = pattern; /* set up the struct VarData for %v */
612   va_start(vd.vd_args, pattern);
613
614   /* use token */
615   ircd_snprintf(&me, sndbuf, sizeof(sndbuf) - 2, "%C %s %v", from, tok, &vd);
616   va_end(vd.vd_args);
617
618   /* send it to our downlinks */
619   for (lp = me.serv->down; lp; lp = lp->next) {
620     if (one && lp->value.cptr == one->from)
621       continue;
622     send_buffer(lp->value.cptr, sndbuf);
623   }
624 }
625
626 /*
627  * sendbufto_serv_butone()
628  *
629  * Send prepared sendbuf to all connected servers except the client 'one'
630  *  -Ghostwolf 18-May-97
631  */
632 void sendbufto_serv_butone(struct Client *one)
633 {
634   struct DLink *lp;
635
636   for (lp = me.serv->down; lp; lp = lp->next)
637   {
638     if (one && lp->value.cptr == one->from)
639       continue;
640     sendbufto_one(lp->value.cptr);
641   }
642 }
643
644
645 /*
646  * sendto_common_channels()
647  *
648  * Sends a message to all people (inclusing `acptr') on local server
649  * who are in same channel with client `acptr'.
650  */
651 void sendto_common_channels(struct Client *acptr, const char* pattern, ...)
652 {
653   va_list vl;
654   struct Membership* chan;
655   struct Membership* member;
656
657   assert(0 != acptr);
658   assert(0 != acptr->from);
659   assert(0 != pattern);
660
661   va_start(vl, pattern);
662
663   ++sentalong_marker;
664   if (-1 < acptr->from->fd)
665     sentalong[acptr->from->fd] = sentalong_marker;
666   /*
667    * loop through acptr's channels, and the members on their channels
668    */
669   if (acptr->user) {
670     for (chan = acptr->user->channel; chan; chan = chan->next_channel) {
671       for (member = chan->channel->members; member; member = member->next_member) {
672         struct Client *cptr = member->user;
673         int    i;
674         if (MyConnect(cptr) && 
675             -1 < (i = cptr->fd) && sentalong[i] != sentalong_marker) {
676           sentalong[i] = sentalong_marker;
677           vsendto_prefix_one(cptr, acptr, pattern, vl);
678         }
679       }
680     }
681   }
682   if (MyConnect(acptr))
683     vsendto_prefix_one(acptr, acptr, pattern, vl);
684   va_end(vl);
685   return;
686 }
687
688 void sendcmdto_common_channels(struct Client *cptr, const char *cmd,
689                                const char *tok, const char *pattern, ...)
690 {
691   struct VarData vd;
692   char sndbuf[IRC_BUFSIZE];
693   struct Membership *chan;
694   struct Membership *member;
695
696   assert(0 != cptr);
697   assert(0 != cptr->from);
698   assert(0 != pattern);
699   assert(!IsServer(cptr));
700
701   vd.vd_format = pattern; /* set up the struct VarData for %v */
702
703   va_start(vd.vd_args, pattern);
704
705   /* build the buffer */
706   ircd_snprintf(0, sndbuf, sizeof(sndbuf) - 2, ":%s!%s@%s %s %v", cptr->name,
707                 cptr->user->username, cptr->user->host, cmd, &vd);
708   va_end(vd.vd_args);
709
710   sentalong_marker++;
711   if (-1 < cptr->from->fd)
712     sentalong[cptr->from->fd] = sentalong_marker;
713   /*
714    * loop through cptr's channels, and the members on their channels
715    */
716   for (chan = cptr->user->channel; chan; chan = chan->next_channel)
717     for (member = chan->channel->members; member;
718          member = member->next_member)
719       if (MyConnect(member->user) && -1 < cptr->fd &&
720           sentalong[cptr->fd] != sentalong_marker) {
721         sentalong[cptr->fd] = sentalong_marker;
722         send_buffer(member->user, sndbuf);
723       }
724
725   if (MyConnect(cptr))
726     send_buffer(cptr, sndbuf);
727 }
728
729 /*
730  * sendto_channel_butserv
731  *
732  * Send a message to all members of a channel that
733  * are connected to this server.
734  *
735  * This contains a subtle bug; after the first call to vsendto_prefix_one()
736  * below, vl is in an indeterminate state, according to ANSI; we'd have to
737  * move va_start() and va_end() into the loop to correct the problem.  It's
738  * easier, however, just to use sendcmdto_channel_butserv(), which builds a
739  * buffer and sends that prepared buffer to each channel member.
740  */
741 void sendto_channel_butserv(struct Channel *chptr, struct Client *from, const char* pattern, ...)
742 {
743   va_list vl;
744   struct Membership* member;
745   struct Client *acptr;
746   
747   va_start(vl, pattern);
748
749   for (member = chptr->members; member; member = member->next_member) {
750     acptr = member->user;
751     if (MyConnect(acptr) && !IsZombie(member))
752       vsendto_prefix_one(acptr, from, pattern, vl);
753   }
754   va_end(vl);
755   return;
756 }
757
758 void sendcmdto_channel_butserv(struct Channel *chan, const char *cmd,
759                                const char *tok, struct Client *from,
760                                const char *pattern, ...)
761 {
762   struct VarData vd;
763   char sndbuf[IRC_BUFSIZE];
764   struct Membership *member;
765
766   vd.vd_format = pattern; /* set up the struct VarData for %v */
767   va_start(vd.vd_args, pattern);
768
769   /* build the buffer */
770   if (IsServer(from) || IsMe(from))
771     ircd_snprintf(0, sndbuf, sizeof(sndbuf) - 2, ":%s %s %v", from->name,
772                   cmd, &vd);
773   else
774     ircd_snprintf(0, sndbuf, sizeof(sndbuf) - 2, ":%s!%s@%s %s %v", from->name,
775                   from->user->username, from->user->host, cmd, &vd);
776   va_end(vd.vd_args);
777
778   /* send the buffer to each local channel member */
779   for (member = chan->members; member; member = member->next_member) {
780     if (MyConnect(member->user) && !IsZombie(member))
781       send_buffer(member->user, sndbuf);
782   }
783 }
784
785 /*
786  * Send a msg to all ppl on servers/hosts that match a specified mask
787  * (used for enhanced PRIVMSGs)
788  *
789  *  addition -- Armin, 8jun90 (gruner@informatik.tu-muenchen.de)
790  */
791
792 static int match_it(struct Client *one, const char *mask, int what)
793 {
794   switch (what)
795   {
796     case MATCH_HOST:
797       return (match(mask, one->user->host) == 0);
798     case MATCH_SERVER:
799     default:
800       return (match(mask, one->user->server->name) == 0);
801   }
802 }
803
804 /*
805  * sendto_match_butone
806  *
807  * Send to all clients which match the mask in a way defined on 'what';
808  * either by user hostname or user servername.
809  */
810 void sendto_match_butone(struct Client *one, struct Client *from,
811     const char *mask, int what, const char* pattern, ...)
812 {
813   va_list vl;
814   int i;
815   struct Client *cptr, *acptr;
816
817   va_start(vl, pattern);
818   for (i = 0; i <= HighestFd; i++)
819   {
820     if (!(cptr = LocalClientArray[i]))
821       continue;                 /* that clients are not mine */
822     if (cptr == one)            /* must skip the origin !! */
823       continue;
824     if (IsServer(cptr))
825     {
826       for (acptr = GlobalClientList; acptr; acptr = acptr->next)
827         if (IsUser(acptr) && match_it(acptr, mask, what) && acptr->from == cptr)
828           break;
829       /* a person on that server matches the mask, so we
830        *  send *one* msg to that server ...
831        */
832       if (acptr == NULL)
833         continue;
834       /* ... but only if there *IS* a matching person */
835     }
836     /* my client, does he match ? */
837     else if (!(IsUser(cptr) && match_it(cptr, mask, what)))
838       continue;
839     vsendto_prefix_one(cptr, from, pattern, vl);
840   }
841   va_end(vl);
842
843   return;
844 }
845
846 /*
847  * sendto_lops_butone
848  *
849  * Send to *local* ops but one.
850  */
851 void sendto_lops_butone(struct Client* one, const char* pattern, ...)
852 {
853   va_list         vl;
854   struct Client*  cptr;
855   struct Client** clients = me.serv->client_list;
856   int             i;
857   char            nbuf[1024];
858
859   assert(0 != clients);
860
861   sprintf_irc(nbuf, ":%s NOTICE %%s :*** Notice -- ", me.name);
862   va_start(vl, pattern);
863   vsprintf_irc(nbuf + strlen(nbuf), pattern, vl);
864   va_end(vl);
865
866   for (i = 0; i <= me.serv->nn_mask; ++i) {
867     if ((cptr = clients[i]) && cptr != one && SendServNotice(cptr)) {
868       sprintf_irc(sendbuf, nbuf, cptr->name);
869       sendbufto_one(cptr);
870     }
871   }
872 }
873
874 /*
875  * sendto_op_mask
876  *
877  * Sends message to the list indicated by the bitmask field.
878  * Don't try to send to more than one list! That is not supported.
879  * Xorath 5/1/97
880  */
881 void vsendto_op_mask(unsigned int mask, const char *pattern, va_list vl)
882 {
883   static char fmt[1024];
884   char *fmt_target;
885   int i = 0;            /* so that 1 points to opsarray[0] */
886   struct SLink *opslist;
887
888   while ((mask >>= 1))
889     i++;
890   if (!(opslist = opsarray[i]))
891     return;
892
893   fmt_target = sprintf_irc(fmt, ":%s NOTICE ", me.name);
894   do
895   {
896     strcpy(fmt_target, opslist->value.cptr->name);
897     strcat(fmt_target, " :*** Notice -- ");
898     strcat(fmt_target, pattern);
899     vsendto_one(opslist->value.cptr, fmt, vl);
900     opslist = opslist->next;
901   }
902   while (opslist);
903 }
904
905 /*
906  * sendbufto_op_mask
907  *
908  * Send a prepared sendbuf to the list indicated by the bitmask field.
909  * Ghostwolf 16-May-97
910  */
911 void sendbufto_op_mask(unsigned int mask)
912 {
913   int i = 0;            /* so that 1 points to opsarray[0] */
914   struct SLink *opslist;
915   while ((mask >>= 1))
916     i++;
917   if (!(opslist = opsarray[i]))
918     return;
919   do
920   {
921     sendbufto_one(opslist->value.cptr);
922     opslist = opslist->next;
923   }
924   while (opslist);
925 }
926
927
928 /*
929  * sendto_ops
930  *
931  * Send to *local* ops only.
932  */
933 void vsendto_ops(const char *pattern, va_list vl)
934 {
935   struct Client *cptr;
936   int i;
937   char fmt[1024];
938   char *fmt_target;
939
940   fmt_target = sprintf_irc(fmt, ":%s NOTICE ", me.name);
941
942   for (i = 0; i <= HighestFd; i++)
943     if ((cptr = LocalClientArray[i]) && !IsServer(cptr) &&
944         SendServNotice(cptr))
945     {
946       strcpy(fmt_target, cptr->name);
947       strcat(fmt_target, " :*** Notice -- ");
948       strcat(fmt_target, pattern);
949       vsendto_one(cptr, fmt, vl);
950     }
951 }
952
953 void sendto_op_mask(unsigned int mask, const char *pattern, ...)
954 {
955   va_list vl;
956   va_start(vl, pattern);
957   vsendto_op_mask(mask, pattern, vl);
958   va_end(vl);
959 }
960
961 void sendto_ops(const char *pattern, ...)
962 {
963   va_list vl;
964   va_start(vl, pattern);
965   vsendto_op_mask(SNO_OLDSNO, pattern, vl);
966   va_end(vl);
967 }
968
969 /*
970  * sendto_ops_butone
971  *
972  * Send message to all operators.
973  * one - client not to send message to
974  * from- client which message is from *NEVER* NULL!!
975  */
976 void sendto_ops_butone(struct Client *one, struct Client *from, const char *pattern, ...)
977 {
978   va_list vl;
979   int i;
980   struct Client *cptr;
981
982   va_start(vl, pattern);
983   ++sentalong_marker;
984   for (cptr = GlobalClientList; cptr; cptr = cptr->next)
985   {
986     if (!SendWallops(cptr))
987       continue;
988     i = cptr->from->fd;         /* find connection oper is on */
989     if (i < 0 || sentalong[i] == sentalong_marker)       /* sent message along it already ? */
990       continue;
991     if (cptr->from == one)
992       continue;                 /* ...was the one I should skip */
993     sentalong[i] = sentalong_marker;
994     vsendto_prefix_one(cptr->from, from, pattern, vl);
995   }
996   va_end(vl);
997
998   return;
999 }
1000
1001 /*
1002  * sendto_g_serv_butone
1003  *
1004  * Send message to all remote +g users (server links).
1005  *
1006  * one - server not to send message to.
1007  */
1008 void sendto_g_serv_butone(struct Client *one, const char *pattern, ...)
1009 {
1010   va_list vl;
1011   struct Client *cptr;
1012   int i;
1013
1014   va_start(vl, pattern);
1015   ++sentalong_marker;
1016   vsprintf_irc(sendbuf, pattern, vl);
1017   for (cptr = GlobalClientList; cptr; cptr = cptr->next)
1018   {
1019     if (!SendDebug(cptr))
1020       continue;
1021     i = cptr->from->fd;         /* find connection user is on */
1022     if (i < 0 || sentalong[i] == sentalong_marker)       /* sent message along it already ? */
1023       continue;
1024     if (MyConnect(cptr))
1025       continue;
1026     sentalong[i] = sentalong_marker;
1027     if (cptr->from == one)
1028       continue;
1029     sendbufto_one(cptr);
1030   }
1031   va_end(vl);
1032
1033   return;
1034 }
1035
1036 /*
1037  * sendto_prefix_one
1038  *
1039  * to - destination client
1040  * from - client which message is from
1041  *
1042  * NOTE: NEITHER OF THESE SHOULD *EVER* BE NULL!!
1043  * -avalon
1044  */
1045 void sendto_prefix_one(struct Client *to, struct Client *from, const char *pattern, ...)
1046 {
1047   va_list vl;
1048   va_start(vl, pattern);
1049   vsendto_prefix_one(to, from, pattern, vl);
1050   va_end(vl);
1051 }
1052
1053 /*
1054  * sendto_realops
1055  *
1056  * Send to *local* ops only but NOT +s nonopers.
1057  */
1058 void sendto_realops(const char *pattern, ...)
1059 {
1060   va_list vl;
1061
1062   va_start(vl, pattern);
1063   vsendto_op_mask(SNO_OLDREALOP, pattern, vl);
1064
1065   va_end(vl);
1066   return;
1067 }
1068
1069 /*
1070  * Send message to all servers of protocol 'p' and lower.
1071  */
1072 void sendto_lowprot_butone(struct Client *cptr, int p, const char *pattern, ...)
1073 {
1074   va_list vl;
1075   struct DLink *lp;
1076   va_start(vl, pattern);
1077   for (lp = me.serv->down; lp; lp = lp->next)
1078     if (lp->value.cptr != cptr && Protocol(lp->value.cptr) <= p)
1079       vsendto_one(lp->value.cptr, pattern, vl);
1080   va_end(vl);
1081 }
1082
1083 /*
1084  * Send message to all servers of protocol 'p' and higher.
1085  */
1086 void sendto_highprot_butone(struct Client *cptr, int p, const char *pattern, ...)
1087 {
1088   va_list vl;
1089   struct DLink *lp;
1090   va_start(vl, pattern);
1091   for (lp = me.serv->down; lp; lp = lp->next)
1092     if (lp->value.cptr != cptr && Protocol(lp->value.cptr) >= p)
1093       vsendto_one(lp->value.cptr, pattern, vl);
1094   va_end(vl);
1095 }