2c92997021ea250e99721f00b88e48c602fc2078
[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 #include "config.h"
83
84 #if 0
85 /*
86  * No need to include handlers.h here the signatures must match
87  * and we don't need to force a rebuild of all the handlers everytime
88  * we add a new one to the list. --Bleep
89  */
90 #include "handlers.h"
91 #endif /* 0 */
92 #include "channel.h"
93 #include "client.h"
94 #include "hash.h"
95 #include "ircd.h"
96 #include "ircd_reply.h"
97 #include "ircd_string.h"
98 #include "list.h"
99 #include "msg.h"
100 #include "numeric.h"
101 #include "numnicks.h"
102 #include "s_user.h"
103 #include "send.h"
104 #include "struct.h"
105
106 #include <assert.h>
107 #include <stdlib.h>
108 #include <string.h>
109
110 /*
111  * m_silence - generic message handler
112  *
113  *   parv[0] = sender prefix
114  * From local client:
115  *   parv[1] = mask (NULL sends the list)
116  * From remote client:
117  *   parv[1] = Numeric nick that must be silenced
118  *   parv[2] = mask
119  *
120  * XXX - ugh 
121  */
122 int m_silence(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
123 {
124   struct SLink*  lp;
125   struct Client* acptr;
126   char           c;
127   char*          cp;
128
129   assert(0 != cptr);
130   assert(cptr == sptr);
131
132   acptr = sptr;
133
134   if (parc < 2 || EmptyString(parv[1]) || (acptr = FindUser(parv[1]))) {
135     if (!(cli_user(acptr)))
136       return 0;
137     for (lp = cli_user(acptr)->silence; lp; lp = lp->next)
138       send_reply(sptr, RPL_SILELIST, cli_name(acptr), lp->value.cp);
139     send_reply(sptr, RPL_ENDOFSILELIST, cli_name(acptr));
140     return 0;
141   }
142   cp = parv[1];
143   c = *cp;
144   if (c == '-' || c == '+')
145     cp++;
146   else if (!(strchr(cp, '@') || strchr(cp, '.') || strchr(cp, '!') || strchr(cp, '*'))) {
147     return send_reply(sptr, ERR_NOSUCHNICK, parv[1]);
148   }
149   else
150     c = '+';
151   cp = pretty_mask(cp);
152   if ((c == '-' && !del_silence(sptr, cp)) || (c != '-' && !add_silence(sptr, cp))) {
153     sendcmdto_one(sptr, CMD_SILENCE, sptr, "%c%s", c, cp);
154     if (c == '-')
155       sendcmdto_serv_butone(sptr, CMD_SILENCE, 0, " * -%s", cp);
156   }
157   return 0;
158 }
159
160 /*
161  * ms_silence - server message handler
162  *
163  *   parv[0] = sender prefix
164  * From local client:
165  *   parv[1] = mask (NULL sends the list)
166  * From remote client:
167  *   parv[1] = Numeric nick that must be silenced
168  *   parv[2] = mask
169  */
170 int ms_silence(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
171 {
172   struct Client* acptr;
173
174   if (IsServer(sptr)) {
175     return protocol_violation(sptr,"Server trying to silence a user");
176   }
177   if (parc < 3 || EmptyString(parv[2])) {
178     return need_more_params(sptr, "SILENCE");
179   }
180
181   if (*parv[1])        /* can be a server */
182     acptr = findNUser(parv[1]);
183   else
184     acptr = FindNServer(parv[1]);
185
186   if (*parv[2] == '-') {
187     if (!del_silence(sptr, parv[2] + 1))
188       sendcmdto_serv_butone(sptr, CMD_SILENCE, cptr, "* %s", parv[2]);
189   }
190   else {
191     add_silence(sptr, parv[2]);
192     if (acptr && IsServer(cli_from(acptr))) {
193       sendcmdto_one(sptr, CMD_SILENCE, acptr, "%C %s", acptr, parv[2]);
194     }
195   }
196   return 0;
197 }
198
199
200 #if 0
201 /*
202  * m_silence() - Added 19 May 1994 by Run.
203  *
204  *   parv[0] = sender prefix
205  * From local client:
206  *   parv[1] = mask (NULL sends the list)
207  * From remote client:
208  *   parv[1] = Numeric nick that must be silenced
209  *   parv[2] = mask
210  */
211 int m_silence(struct Client *cptr, struct Client *sptr, int parc, char *parv[])
212 {
213   struct SLink *lp;
214   struct Client *acptr;
215   char c, *cp;
216
217   if (MyUser(sptr))
218   {
219     acptr = sptr;
220     if (parc < 2 || *parv[1] == '\0' || (acptr = FindUser(parv[1])))
221     {
222       if (!(acptr->user))
223         return 0;
224       for (lp = acptr->user->silence; lp; lp = lp->next)
225         sendto_one(sptr, rpl_str(RPL_SILELIST), me.name, /* XXX DEAD */
226             sptr->name, acptr->name, lp->value.cp);
227       sendto_one(sptr, rpl_str(RPL_ENDOFSILELIST), me.name, sptr->name, /* XXX DEAD */
228           acptr->name);
229       return 0;
230     }
231     cp = parv[1];
232     c = *cp;
233     if (c == '-' || c == '+')
234       cp++;
235     else if (!(strchr(cp, '@') || strchr(cp, '.') ||
236         strchr(cp, '!') || strchr(cp, '*')))
237     {
238       sendto_one(sptr, err_str(ERR_NOSUCHNICK), me.name, parv[0], parv[1]); /* XXX DEAD */
239       return -1;
240     }
241     else
242       c = '+';
243     cp = pretty_mask(cp);
244     if ((c == '-' && !del_silence(sptr, cp)) ||
245         (c != '-' && !add_silence(sptr, cp)))
246     {
247       sendto_prefix_one(sptr, sptr, ":%s SILENCE %c%s", parv[0], c, cp); /* XXX DEAD */
248       if (c == '-')
249         sendto_serv_butone(0, ":%s SILENCE * -%s", sptr->name, cp); /* XXX DEAD */
250     }
251   }
252   else if (parc < 3 || *parv[2] == '\0')
253     return need_more_params(sptr, "SILENCE");
254
255   else
256   {
257     if (*parv[1])        /* can be a server */
258       acptr = findNUser(parv[1]);
259     else
260       acptr = FindNServer(parv[1]);
261
262     if (*parv[2] == '-')
263     {
264       if (!del_silence(sptr, parv[2] + 1))
265         sendto_serv_butone(cptr, ":%s SILENCE * %s", parv[0], parv[2]); /* XXX DEAD */
266     }
267     else
268     {
269       add_silence(sptr, parv[2]);
270       if (acptr && IsServer(acptr->from))
271       {
272         if (IsServer(acptr))
273           sendto_one(acptr, ":%s SILENCE %s %s", /* XXX DEAD */
274               parv[0], NumServ(acptr), parv[2]);
275         else
276           sendto_one(acptr, ":%s SILENCE %s%s %s", /* XXX DEAD */
277               parv[0], NumNick(acptr), parv[2]);
278       }
279     }
280   }
281   return 0;
282 }
283 #endif /* 0 */