Author: Isomer <perry@coders.net>
[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     return protocol_violation(sptr,"Server trying to silence a user");
174   }
175   if (parc < 3 || EmptyString(parv[2])) {
176     return need_more_params(sptr, "SILENCE");
177   }
178
179   if (*parv[1])        /* can be a server */
180     acptr = findNUser(parv[1]);
181   else
182     acptr = FindNServer(parv[1]);
183
184   if (*parv[2] == '-') {
185     if (!del_silence(sptr, parv[2] + 1))
186       sendcmdto_serv_butone(sptr, CMD_SILENCE, cptr, "* %s", parv[2]);
187   }
188   else {
189     add_silence(sptr, parv[2]);
190     if (acptr && IsServer(acptr->from)) {
191       sendcmdto_one(sptr, CMD_SILENCE, acptr, "%C %s", acptr, parv[2]);
192     }
193   }
194   return 0;
195 }
196
197
198 #if 0
199 /*
200  * m_silence() - Added 19 May 1994 by Run.
201  *
202  *   parv[0] = sender prefix
203  * From local client:
204  *   parv[1] = mask (NULL sends the list)
205  * From remote client:
206  *   parv[1] = Numeric nick that must be silenced
207  *   parv[2] = mask
208  */
209 int m_silence(struct Client *cptr, struct Client *sptr, int parc, char *parv[])
210 {
211   struct SLink *lp;
212   struct Client *acptr;
213   char c, *cp;
214
215   if (MyUser(sptr))
216   {
217     acptr = sptr;
218     if (parc < 2 || *parv[1] == '\0' || (acptr = FindUser(parv[1])))
219     {
220       if (!(acptr->user))
221         return 0;
222       for (lp = acptr->user->silence; lp; lp = lp->next)
223         sendto_one(sptr, rpl_str(RPL_SILELIST), me.name, /* XXX DEAD */
224             sptr->name, acptr->name, lp->value.cp);
225       sendto_one(sptr, rpl_str(RPL_ENDOFSILELIST), me.name, sptr->name, /* XXX DEAD */
226           acptr->name);
227       return 0;
228     }
229     cp = parv[1];
230     c = *cp;
231     if (c == '-' || c == '+')
232       cp++;
233     else if (!(strchr(cp, '@') || strchr(cp, '.') ||
234         strchr(cp, '!') || strchr(cp, '*')))
235     {
236       sendto_one(sptr, err_str(ERR_NOSUCHNICK), me.name, parv[0], parv[1]); /* XXX DEAD */
237       return -1;
238     }
239     else
240       c = '+';
241     cp = pretty_mask(cp);
242     if ((c == '-' && !del_silence(sptr, cp)) ||
243         (c != '-' && !add_silence(sptr, cp)))
244     {
245       sendto_prefix_one(sptr, sptr, ":%s SILENCE %c%s", parv[0], c, cp); /* XXX DEAD */
246       if (c == '-')
247         sendto_serv_butone(0, ":%s SILENCE * -%s", sptr->name, cp); /* XXX DEAD */
248     }
249   }
250   else if (parc < 3 || *parv[2] == '\0')
251     return need_more_params(sptr, "SILENCE");
252
253   else
254   {
255     if (*parv[1])        /* can be a server */
256       acptr = findNUser(parv[1]);
257     else
258       acptr = FindNServer(parv[1]);
259
260     if (*parv[2] == '-')
261     {
262       if (!del_silence(sptr, parv[2] + 1))
263         sendto_serv_butone(cptr, ":%s SILENCE * %s", parv[0], parv[2]); /* XXX DEAD */
264     }
265     else
266     {
267       add_silence(sptr, parv[2]);
268       if (acptr && IsServer(acptr->from))
269       {
270         if (IsServer(acptr))
271           sendto_one(acptr, ":%s SILENCE %s %s", /* XXX DEAD */
272               parv[0], NumServ(acptr), parv[2]);
273         else
274           sendto_one(acptr, ":%s SILENCE %s%s %s", /* XXX DEAD */
275               parv[0], NumNick(acptr), parv[2]);
276       }
277     }
278   }
279   return 0;
280 }
281 #endif /* 0 */