25867e9fb44d3f0457435841ad027f05b59b4ee0
[ircu2.10.12-pk.git] / ircd / m_silence.c
1 /*
2  * IRC - Internet Relay Chat, ircd/m_silence.c
3  * Copyright (C) 1990 Jarkko Oikarinen and
4  *                    University of Oulu, Computing Center
5  *
6  * See file AUTHORS in IRC package for additional names of
7  * the programmers.
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 1, or (at your option)
12  * any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22  *
23  * $Id$
24  */
25
26 /*
27  * m_functions execute protocol messages on this server:
28  *
29  *    cptr    is always NON-NULL, pointing to a *LOCAL* client
30  *            structure (with an open socket connected!). This
31  *            identifies the physical socket where the message
32  *            originated (or which caused the m_function to be
33  *            executed--some m_functions may call others...).
34  *
35  *    sptr    is the source of the message, defined by the
36  *            prefix part of the message if present. If not
37  *            or prefix not found, then sptr==cptr.
38  *
39  *            (!IsServer(cptr)) => (cptr == sptr), because
40  *            prefixes are taken *only* from servers...
41  *
42  *            (IsServer(cptr))
43  *                    (sptr == cptr) => the message didn't
44  *                    have the prefix.
45  *
46  *                    (sptr != cptr && IsServer(sptr) means
47  *                    the prefix specified servername. (?)
48  *
49  *                    (sptr != cptr && !IsServer(sptr) means
50  *                    that message originated from a remote
51  *                    user (not local).
52  *
53  *            combining
54  *
55  *            (!IsServer(sptr)) means that, sptr can safely
56  *            taken as defining the target structure of the
57  *            message in this server.
58  *
59  *    *Always* true (if 'parse' and others are working correct):
60  *
61  *    1)      sptr->from == cptr  (note: cptr->from == cptr)
62  *
63  *    2)      MyConnect(sptr) <=> sptr == cptr (e.g. sptr
64  *            *cannot* be a local connection, unless it's
65  *            actually cptr!). [MyConnect(x) should probably
66  *            be defined as (x == x->from) --msa ]
67  *
68  *    parc    number of variable parameter strings (if zero,
69  *            parv is allowed to be NULL)
70  *
71  *    parv    a NULL terminated list of parameter pointers,
72  *
73  *                    parv[0], sender (prefix string), if not present
74  *                            this points to an empty string.
75  *                    parv[1]...parv[parc-1]
76  *                            pointers to additional parameters
77  *                    parv[parc] == NULL, *always*
78  *
79  *            note:   it is guaranteed that parv[0]..parv[parc-1] are all
80  *                    non-NULL pointers.
81  */
82 #if 0
83 /*
84  * No need to include handlers.h here the signatures must match
85  * and we don't need to force a rebuild of all the handlers everytime
86  * we add a new one to the list. --Bleep
87  */
88 #include "handlers.h"
89 #endif /* 0 */
90 #include "channel.h"
91 #include "client.h"
92 #include "hash.h"
93 #include "ircd.h"
94 #include "ircd_reply.h"
95 #include "ircd_string.h"
96 #include "list.h"
97 #include "msg.h"
98 #include "numeric.h"
99 #include "numnicks.h"
100 #include "s_user.h"
101 #include "send.h"
102 #include "struct.h"
103
104 #include <assert.h>
105 #include <stdlib.h>
106 #include <string.h>
107
108 /*
109  * m_silence - generic message handler
110  *
111  *   parv[0] = sender prefix
112  * From local client:
113  *   parv[1] = mask (NULL sends the list)
114  * From remote client:
115  *   parv[1] = Numeric nick that must be silenced
116  *   parv[2] = mask
117  *
118  * XXX - ugh 
119  */
120 int m_silence(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
121 {
122   struct SLink*  lp;
123   struct Client* acptr;
124   char           c;
125   char*          cp;
126
127   assert(0 != cptr);
128   assert(cptr == sptr);
129
130   acptr = sptr;
131
132   if (parc < 2 || EmptyString(parv[1]) || (acptr = FindUser(parv[1]))) {
133     if (!(acptr->user))
134       return 0;
135     for (lp = acptr->user->silence; lp; lp = lp->next)
136       send_reply(sptr, RPL_SILELIST, acptr->name, lp->value.cp);
137     send_reply(sptr, RPL_ENDOFSILELIST, acptr->name);
138     return 0;
139   }
140   cp = parv[1];
141   c = *cp;
142   if (c == '-' || c == '+')
143     cp++;
144   else if (!(strchr(cp, '@') || strchr(cp, '.') || strchr(cp, '!') || strchr(cp, '*'))) {
145     return send_reply(sptr, ERR_NOSUCHNICK, parv[1]);
146   }
147   else
148     c = '+';
149   cp = pretty_mask(cp);
150   if ((c == '-' && !del_silence(sptr, cp)) || (c != '-' && !add_silence(sptr, cp))) {
151     sendcmdto_one(sptr, CMD_SILENCE, sptr, "%c%s", c, cp);
152     if (c == '-')
153       sendcmdto_serv_butone(sptr, CMD_SILENCE, 0, " * -%s", cp);
154   }
155   return 0;
156 }
157
158 /*
159  * ms_silence - server message handler
160  *
161  *   parv[0] = sender prefix
162  * From local client:
163  *   parv[1] = mask (NULL sends the list)
164  * From remote client:
165  *   parv[1] = Numeric nick that must be silenced
166  *   parv[2] = mask
167  */
168 int ms_silence(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
169 {
170   struct Client* acptr;
171
172   if (IsServer(sptr)) {
173     /* PROTOCOL WARNING */
174     /* bail, don't core */
175     return 0;
176   }
177   if (parc < 3 || EmptyString(parv[2])) {
178     /* PROTOCOL WARNING */
179     return need_more_params(sptr, "SILENCE");
180   }
181
182   if (*parv[1])        /* can be a server */
183     acptr = findNUser(parv[1]);
184   else
185     acptr = FindNServer(parv[1]);
186
187   if (*parv[2] == '-') {
188     if (!del_silence(sptr, parv[2] + 1))
189       sendcmdto_serv_butone(sptr, CMD_SILENCE, cptr, "* %s", parv[2]);
190   }
191   else {
192     add_silence(sptr, parv[2]);
193     if (acptr && IsServer(acptr->from)) {
194       sendcmdto_one(sptr, CMD_SILENCE, acptr, "%C %s", acptr, parv[2]);
195     }
196   }
197   return 0;
198 }
199
200
201 #if 0
202 /*
203  * m_silence() - Added 19 May 1994 by Run.
204  *
205  *   parv[0] = sender prefix
206  * From local client:
207  *   parv[1] = mask (NULL sends the list)
208  * From remote client:
209  *   parv[1] = Numeric nick that must be silenced
210  *   parv[2] = mask
211  */
212 int m_silence(struct Client *cptr, struct Client *sptr, int parc, char *parv[])
213 {
214   struct SLink *lp;
215   struct Client *acptr;
216   char c, *cp;
217
218   if (MyUser(sptr))
219   {
220     acptr = sptr;
221     if (parc < 2 || *parv[1] == '\0' || (acptr = FindUser(parv[1])))
222     {
223       if (!(acptr->user))
224         return 0;
225       for (lp = acptr->user->silence; lp; lp = lp->next)
226         sendto_one(sptr, rpl_str(RPL_SILELIST), me.name, /* XXX DEAD */
227             sptr->name, acptr->name, lp->value.cp);
228       sendto_one(sptr, rpl_str(RPL_ENDOFSILELIST), me.name, sptr->name, /* XXX DEAD */
229           acptr->name);
230       return 0;
231     }
232     cp = parv[1];
233     c = *cp;
234     if (c == '-' || c == '+')
235       cp++;
236     else if (!(strchr(cp, '@') || strchr(cp, '.') ||
237         strchr(cp, '!') || strchr(cp, '*')))
238     {
239       sendto_one(sptr, err_str(ERR_NOSUCHNICK), me.name, parv[0], parv[1]); /* XXX DEAD */
240       return -1;
241     }
242     else
243       c = '+';
244     cp = pretty_mask(cp);
245     if ((c == '-' && !del_silence(sptr, cp)) ||
246         (c != '-' && !add_silence(sptr, cp)))
247     {
248       sendto_prefix_one(sptr, sptr, ":%s SILENCE %c%s", parv[0], c, cp); /* XXX DEAD */
249       if (c == '-')
250         sendto_serv_butone(0, ":%s SILENCE * -%s", sptr->name, cp); /* XXX DEAD */
251     }
252   }
253   else if (parc < 3 || *parv[2] == '\0')
254     return need_more_params(sptr, "SILENCE");
255
256   else
257   {
258     if (*parv[1])        /* can be a server */
259       acptr = findNUser(parv[1]);
260     else
261       acptr = FindNServer(parv[1]);
262
263     if (*parv[2] == '-')
264     {
265       if (!del_silence(sptr, parv[2] + 1))
266         sendto_serv_butone(cptr, ":%s SILENCE * %s", parv[0], parv[2]); /* XXX DEAD */
267     }
268     else
269     {
270       add_silence(sptr, parv[2]);
271       if (acptr && IsServer(acptr->from))
272       {
273         if (IsServer(acptr))
274           sendto_one(acptr, ":%s SILENCE %s %s", /* XXX DEAD */
275               parv[0], NumServ(acptr), parv[2]);
276         else
277           sendto_one(acptr, ":%s SILENCE %s%s %s", /* XXX DEAD */
278               parv[0], NumNick(acptr), parv[2]);
279       }
280     }
281   }
282   return 0;
283 }
284 #endif /* 0 */