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