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   va_list vl;
609   char sndbuf[IRC_BUFSIZE];
610   struct DLink *lp;
611
612   cmd = 0; /* try to suppress compile warning */
613
614   va_start(vl, pattern);
615   vd.vd_format = pattern; /* set up the struct VarData for %v */
616   vd.vd_args = vl;
617
618   /* use token */
619   ircd_snprintf(&me, sndbuf, sizeof(sndbuf) - 2, "%C %s %v", from, tok, &vd);
620   va_end(vl);
621
622   /* send it to our downlinks */
623   for (lp = me.serv->down; lp; lp = lp->next) {
624     if (one && lp->value.cptr == one->from)
625       continue;
626     send_buffer(lp->value.cptr, sndbuf);
627   }
628 }
629
630 /*
631  * sendbufto_serv_butone()
632  *
633  * Send prepared sendbuf to all connected servers except the client 'one'
634  *  -Ghostwolf 18-May-97
635  */
636 void sendbufto_serv_butone(struct Client *one)
637 {
638   struct DLink *lp;
639
640   for (lp = me.serv->down; lp; lp = lp->next)
641   {
642     if (one && lp->value.cptr == one->from)
643       continue;
644     sendbufto_one(lp->value.cptr);
645   }
646 }
647
648
649 /*
650  * sendto_common_channels()
651  *
652  * Sends a message to all people (inclusing `acptr') on local server
653  * who are in same channel with client `acptr'.
654  */
655 void sendto_common_channels(struct Client *acptr, const char* pattern, ...)
656 {
657   va_list vl;
658   struct Membership* chan;
659   struct Membership* member;
660
661   assert(0 != acptr);
662   assert(0 != acptr->from);
663   assert(0 != pattern);
664
665   va_start(vl, pattern);
666
667   ++sentalong_marker;
668   if (-1 < acptr->from->fd)
669     sentalong[acptr->from->fd] = sentalong_marker;
670   /*
671    * loop through acptr's channels, and the members on their channels
672    */
673   if (acptr->user) {
674     for (chan = acptr->user->channel; chan; chan = chan->next_channel) {
675       for (member = chan->channel->members; member; member = member->next_member) {
676         struct Client *cptr = member->user;
677         int    i;
678         if (MyConnect(cptr) && 
679             -1 < (i = cptr->fd) && sentalong[i] != sentalong_marker) {
680           sentalong[i] = sentalong_marker;
681           vsendto_prefix_one(cptr, acptr, pattern, vl);
682         }
683       }
684     }
685   }
686   if (MyConnect(acptr))
687     vsendto_prefix_one(acptr, acptr, pattern, vl);
688   va_end(vl);
689   return;
690 }
691
692 /*
693  * sendto_channel_butserv
694  *
695  * Send a message to all members of a channel that
696  * are connected to this server.
697  */
698 void sendto_channel_butserv(struct Channel *chptr, struct Client *from, const char* pattern, ...)
699 {
700   va_list vl;
701   struct Membership* member;
702   struct Client *acptr;
703   
704   va_start(vl, pattern);
705
706   for (member = chptr->members; member; member = member->next_member) {
707     acptr = member->user;
708     if (MyConnect(acptr) && !IsZombie(member))
709       vsendto_prefix_one(acptr, from, pattern, vl);
710   }
711   va_end(vl);
712   return;
713 }
714
715 /*
716  * Send a msg to all ppl on servers/hosts that match a specified mask
717  * (used for enhanced PRIVMSGs)
718  *
719  *  addition -- Armin, 8jun90 (gruner@informatik.tu-muenchen.de)
720  */
721
722 static int match_it(struct Client *one, const char *mask, int what)
723 {
724   switch (what)
725   {
726     case MATCH_HOST:
727       return (match(mask, one->user->host) == 0);
728     case MATCH_SERVER:
729     default:
730       return (match(mask, one->user->server->name) == 0);
731   }
732 }
733
734 /*
735  * sendto_match_butone
736  *
737  * Send to all clients which match the mask in a way defined on 'what';
738  * either by user hostname or user servername.
739  */
740 void sendto_match_butone(struct Client *one, struct Client *from,
741     const char *mask, int what, const char* pattern, ...)
742 {
743   va_list vl;
744   int i;
745   struct Client *cptr, *acptr;
746
747   va_start(vl, pattern);
748   for (i = 0; i <= HighestFd; i++)
749   {
750     if (!(cptr = LocalClientArray[i]))
751       continue;                 /* that clients are not mine */
752     if (cptr == one)            /* must skip the origin !! */
753       continue;
754     if (IsServer(cptr))
755     {
756       for (acptr = GlobalClientList; acptr; acptr = acptr->next)
757         if (IsUser(acptr) && match_it(acptr, mask, what) && acptr->from == cptr)
758           break;
759       /* a person on that server matches the mask, so we
760        *  send *one* msg to that server ...
761        */
762       if (acptr == NULL)
763         continue;
764       /* ... but only if there *IS* a matching person */
765     }
766     /* my client, does he match ? */
767     else if (!(IsUser(cptr) && match_it(cptr, mask, what)))
768       continue;
769     vsendto_prefix_one(cptr, from, pattern, vl);
770   }
771   va_end(vl);
772
773   return;
774 }
775
776 /*
777  * sendto_lops_butone
778  *
779  * Send to *local* ops but one.
780  */
781 void sendto_lops_butone(struct Client* one, const char* pattern, ...)
782 {
783   va_list         vl;
784   struct Client*  cptr;
785   struct Client** clients = me.serv->client_list;
786   int             i;
787   char            nbuf[1024];
788
789   assert(0 != clients);
790
791   sprintf_irc(nbuf, ":%s NOTICE %%s :*** Notice -- ", me.name);
792   va_start(vl, pattern);
793   vsprintf_irc(nbuf + strlen(nbuf), pattern, vl);
794   va_end(vl);
795
796   for (i = 0; i <= me.serv->nn_mask; ++i) {
797     if ((cptr = clients[i]) && cptr != one && SendServNotice(cptr)) {
798       sprintf_irc(sendbuf, nbuf, cptr->name);
799       sendbufto_one(cptr);
800     }
801   }
802 }
803
804 /*
805  * sendto_op_mask
806  *
807  * Sends message to the list indicated by the bitmask field.
808  * Don't try to send to more than one list! That is not supported.
809  * Xorath 5/1/97
810  */
811 void vsendto_op_mask(unsigned int mask, const char *pattern, va_list vl)
812 {
813   static char fmt[1024];
814   char *fmt_target;
815   int i = 0;            /* so that 1 points to opsarray[0] */
816   struct SLink *opslist;
817
818   while ((mask >>= 1))
819     i++;
820   if (!(opslist = opsarray[i]))
821     return;
822
823   fmt_target = sprintf_irc(fmt, ":%s NOTICE ", me.name);
824   do
825   {
826     strcpy(fmt_target, opslist->value.cptr->name);
827     strcat(fmt_target, " :*** Notice -- ");
828     strcat(fmt_target, pattern);
829     vsendto_one(opslist->value.cptr, fmt, vl);
830     opslist = opslist->next;
831   }
832   while (opslist);
833 }
834
835 /*
836  * sendbufto_op_mask
837  *
838  * Send a prepared sendbuf to the list indicated by the bitmask field.
839  * Ghostwolf 16-May-97
840  */
841 void sendbufto_op_mask(unsigned int mask)
842 {
843   int i = 0;            /* so that 1 points to opsarray[0] */
844   struct SLink *opslist;
845   while ((mask >>= 1))
846     i++;
847   if (!(opslist = opsarray[i]))
848     return;
849   do
850   {
851     sendbufto_one(opslist->value.cptr);
852     opslist = opslist->next;
853   }
854   while (opslist);
855 }
856
857
858 /*
859  * sendto_ops
860  *
861  * Send to *local* ops only.
862  */
863 void vsendto_ops(const char *pattern, va_list vl)
864 {
865   struct Client *cptr;
866   int i;
867   char fmt[1024];
868   char *fmt_target;
869
870   fmt_target = sprintf_irc(fmt, ":%s NOTICE ", me.name);
871
872   for (i = 0; i <= HighestFd; i++)
873     if ((cptr = LocalClientArray[i]) && !IsServer(cptr) &&
874         SendServNotice(cptr))
875     {
876       strcpy(fmt_target, cptr->name);
877       strcat(fmt_target, " :*** Notice -- ");
878       strcat(fmt_target, pattern);
879       vsendto_one(cptr, fmt, vl);
880     }
881 }
882
883 void sendto_op_mask(unsigned int mask, const char *pattern, ...)
884 {
885   va_list vl;
886   va_start(vl, pattern);
887   vsendto_op_mask(mask, pattern, vl);
888   va_end(vl);
889 }
890
891 void sendto_ops(const char *pattern, ...)
892 {
893   va_list vl;
894   va_start(vl, pattern);
895   vsendto_op_mask(SNO_OLDSNO, pattern, vl);
896   va_end(vl);
897 }
898
899 /*
900  * sendto_ops_butone
901  *
902  * Send message to all operators.
903  * one - client not to send message to
904  * from- client which message is from *NEVER* NULL!!
905  */
906 void sendto_ops_butone(struct Client *one, struct Client *from, const char *pattern, ...)
907 {
908   va_list vl;
909   int i;
910   struct Client *cptr;
911
912   va_start(vl, pattern);
913   ++sentalong_marker;
914   for (cptr = GlobalClientList; cptr; cptr = cptr->next)
915   {
916     if (!SendWallops(cptr))
917       continue;
918     i = cptr->from->fd;         /* find connection oper is on */
919     if (i < 0 || sentalong[i] == sentalong_marker)       /* sent message along it already ? */
920       continue;
921     if (cptr->from == one)
922       continue;                 /* ...was the one I should skip */
923     sentalong[i] = sentalong_marker;
924     vsendto_prefix_one(cptr->from, from, pattern, vl);
925   }
926   va_end(vl);
927
928   return;
929 }
930
931 /*
932  * sendto_g_serv_butone
933  *
934  * Send message to all remote +g users (server links).
935  *
936  * one - server not to send message to.
937  */
938 void sendto_g_serv_butone(struct Client *one, const char *pattern, ...)
939 {
940   va_list vl;
941   struct Client *cptr;
942   int i;
943
944   va_start(vl, pattern);
945   ++sentalong_marker;
946   vsprintf_irc(sendbuf, pattern, vl);
947   for (cptr = GlobalClientList; cptr; cptr = cptr->next)
948   {
949     if (!SendDebug(cptr))
950       continue;
951     i = cptr->from->fd;         /* find connection user is on */
952     if (i < 0 || sentalong[i] == sentalong_marker)       /* sent message along it already ? */
953       continue;
954     if (MyConnect(cptr))
955       continue;
956     sentalong[i] = sentalong_marker;
957     if (cptr->from == one)
958       continue;
959     sendbufto_one(cptr);
960   }
961   va_end(vl);
962
963   return;
964 }
965
966 /*
967  * sendto_prefix_one
968  *
969  * to - destination client
970  * from - client which message is from
971  *
972  * NOTE: NEITHER OF THESE SHOULD *EVER* BE NULL!!
973  * -avalon
974  */
975 void sendto_prefix_one(struct Client *to, struct Client *from, const char *pattern, ...)
976 {
977   va_list vl;
978   va_start(vl, pattern);
979   vsendto_prefix_one(to, from, pattern, vl);
980   va_end(vl);
981 }
982
983 /*
984  * sendto_realops
985  *
986  * Send to *local* ops only but NOT +s nonopers.
987  */
988 void sendto_realops(const char *pattern, ...)
989 {
990   va_list vl;
991
992   va_start(vl, pattern);
993   vsendto_op_mask(SNO_OLDREALOP, pattern, vl);
994
995   va_end(vl);
996   return;
997 }
998
999 /*
1000  * Send message to all servers of protocol 'p' and lower.
1001  */
1002 void sendto_lowprot_butone(struct Client *cptr, int p, const char *pattern, ...)
1003 {
1004   va_list vl;
1005   struct DLink *lp;
1006   va_start(vl, pattern);
1007   for (lp = me.serv->down; lp; lp = lp->next)
1008     if (lp->value.cptr != cptr && Protocol(lp->value.cptr) <= p)
1009       vsendto_one(lp->value.cptr, pattern, vl);
1010   va_end(vl);
1011 }
1012
1013 /*
1014  * Send message to all servers of protocol 'p' and higher.
1015  */
1016 void sendto_highprot_butone(struct Client *cptr, int p, const char *pattern, ...)
1017 {
1018   va_list vl;
1019   struct DLink *lp;
1020   va_start(vl, pattern);
1021   for (lp = me.serv->down; lp; lp = lp->next)
1022     if (lp->value.cptr != cptr && Protocol(lp->value.cptr) >= p)
1023       vsendto_one(lp->value.cptr, pattern, vl);
1024   va_end(vl);
1025 }