Author: Ghostwolf <foxxe@wtfs.net>
[ircu2.10.12-pk.git] / ircd / jupe.c
1 /*
2  * IRC - Internet Relay Chat, ircd/jupe.c
3  * Copyright (C) 1990 Jarkko Oikarinen and
4  *                    University of Oulu, Finland
5  * Copyright (C) 2000 Kevin L. Mitchell <klmitch@mit.edu>
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 1, or (at your option)
10  * any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20  *
21  * $Id$
22  */
23 #include "config.h"
24
25 #include "jupe.h"
26 #include "client.h"
27 #include "hash.h"
28 #include "ircd.h"
29 #include "ircd_alloc.h"
30 #include "ircd_log.h"
31 #include "ircd_policy.h"
32 #include "ircd_reply.h"
33 #include "ircd_string.h"
34 #include "match.h"
35 #include "msg.h"
36 #include "numeric.h"
37 #include "numnicks.h"
38 #include "s_bsd.h"
39 #include "s_misc.h"
40 #include "send.h"
41 #include "struct.h"
42 #include "support.h"
43 #include "sys.h"    /* FALSE bleah */
44
45 #include <assert.h>
46 #include <string.h>
47
48 static struct Jupe *GlobalJupeList = 0;
49
50 static struct Jupe *
51 make_jupe(char *server, char *reason, time_t expire, time_t lastmod,
52           unsigned int flags)
53 {
54   struct Jupe *ajupe;
55
56   ajupe = (struct Jupe*) MyMalloc(sizeof(struct Jupe)); /* alloc memory */
57   assert(0 != ajupe);
58
59   DupString(ajupe->ju_server, server); /* copy vital information */
60   DupString(ajupe->ju_reason, reason);
61   ajupe->ju_expire = expire;
62   ajupe->ju_lastmod = lastmod;
63   ajupe->ju_flags = flags & JUPE_MASK; /* set jupe flags */
64
65   ajupe->ju_next = GlobalJupeList; /* link it into the list */
66   ajupe->ju_prev_p = &GlobalJupeList;
67   if (GlobalJupeList)
68     GlobalJupeList->ju_prev_p = &ajupe->ju_next;
69   GlobalJupeList = ajupe;
70
71   return ajupe;
72 }
73
74 static int
75 do_jupe(struct Client *cptr, struct Client *sptr, struct Jupe *jupe)
76 {
77   struct Client *acptr;
78
79   if (!JupeIsActive(jupe)) /* no action to be taken on inactive jupes */
80     return 0;
81
82   acptr = FindServer(jupe->ju_server);
83
84   /* server isn't online or isn't local or is me */
85   if (!acptr || !MyConnect(acptr) || IsMe(acptr))
86     return 0;
87
88   return exit_client_msg(cptr, acptr, &me, "Juped: %s", jupe->ju_reason);
89 }
90
91 static void
92 propagate_jupe(struct Client *cptr, struct Client *sptr, struct Jupe *jupe)
93 {
94   if (JupeIsLocal(jupe)) /* don't propagate local jupes */
95     return;
96
97   sendcmdto_serv_butone(sptr, CMD_JUPE, cptr, "* %c%s %Tu %Tu :%s",
98                         JupeIsRemActive(jupe) ? '+' : '-', jupe->ju_server,
99                         jupe->ju_expire - CurrentTime, jupe->ju_lastmod,
100                         jupe->ju_reason);
101 }
102
103 int
104 jupe_add(struct Client *cptr, struct Client *sptr, char *server, char *reason,
105          time_t expire, time_t lastmod, unsigned int flags)
106 {
107   struct Jupe *ajupe;
108
109   assert(0 != server);
110   assert(0 != reason);
111
112   /*
113    * You cannot set a negative (or zero) expire time, nor can you set an
114    * expiration time for greater than JUPE_MAX_EXPIRE.
115    */
116   if (expire <= 0 || expire > JUPE_MAX_EXPIRE) {
117     if (!IsServer(cptr) && MyConnect(cptr))
118       send_reply(cptr, ERR_BADEXPIRE, expire);
119     return 0;
120   }
121
122   expire += CurrentTime; /* convert from lifetime to timestamp */
123
124   /* Inform ops and log it */
125   sendto_opmask_butone(0, SNO_NETWORK, "%s adding %sJUPE for %s, expiring at "
126                        "%Tu: %s",
127 #ifdef HEAD_IN_SAND_SNOTICES
128                        cli_name(sptr),
129 #else
130                        IsServer(sptr) ? cli_name(sptr) :
131                        cli_name(cli_user(sptr)->server),
132 #endif
133                        flags & JUPE_LOCAL ? "local " : "", server,
134                        expire + TSoffset, reason);
135
136   log_write(LS_JUPE, L_INFO, LOG_NOSNOTICE,
137             "%#C adding %sJUPE for %s, expiring at %Tu: %s", sptr,
138             flags & JUPE_LOCAL ? "local " : "", server, expire + TSoffset,
139             reason);
140
141   /* make the jupe */
142   ajupe = make_jupe(server, reason, expire, lastmod, flags);
143
144   propagate_jupe(cptr, sptr, ajupe);
145
146   return do_jupe(cptr, sptr, ajupe); /* remove server if necessary */
147 }
148
149 int
150 jupe_activate(struct Client *cptr, struct Client *sptr, struct Jupe *jupe,
151               time_t lastmod, unsigned int flags)
152 {
153   unsigned int saveflags = 0;
154
155   assert(0 != jupe);
156
157   saveflags = jupe->ju_flags;
158
159   if (flags & JUPE_LOCAL)
160     jupe->ju_flags &= ~JUPE_LDEACT;
161   else {
162     jupe->ju_flags |= JUPE_ACTIVE;
163
164     if (jupe->ju_lastmod >= lastmod) /* force lastmod to increase */
165       jupe->ju_lastmod++;
166     else
167       jupe->ju_lastmod = lastmod;
168   }
169
170   if ((saveflags & JUPE_ACTMASK) == JUPE_ACTIVE)
171     return 0; /* was active to begin with */
172
173   /* Inform ops and log it */
174   sendto_opmask_butone(0, SNO_NETWORK, "%s activating JUPE for %s, expiring "
175                        "at %Tu: %s",
176 #ifdef HEAD_IN_SAND_SNOTICES
177                        cli_name(sptr),
178 #else
179                        IsServer(sptr) ? cli_name(sptr) :
180                        cli_name(cli_user(sptr)->server),
181 #endif
182                        jupe->ju_server, jupe->ju_expire + TSoffset,
183                        jupe->ju_reason);
184
185   log_write(LS_JUPE, L_INFO, LOG_NOSNOTICE,
186             "%#C activating JUPE for %s, expiring at %Tu: %s",sptr,
187             jupe->ju_server, jupe->ju_expire + TSoffset, jupe->ju_reason);
188
189   if (!(flags & JUPE_LOCAL)) /* don't propagate local changes */
190     propagate_jupe(cptr, sptr, jupe);
191
192   return do_jupe(cptr, sptr, jupe);
193 }
194
195 int
196 jupe_deactivate(struct Client *cptr, struct Client *sptr, struct Jupe *jupe,
197                 time_t lastmod, unsigned int flags)
198 {
199   unsigned int saveflags = 0;
200
201   assert(0 != jupe);
202
203   saveflags = jupe->ju_flags;
204
205   if (!JupeIsLocal(jupe)) {
206     if (flags & JUPE_LOCAL)
207       jupe->ju_flags |= JUPE_LDEACT;
208     else {
209       jupe->ju_flags &= ~JUPE_ACTIVE;
210
211       if (jupe->ju_lastmod >= lastmod) /* force lastmod to increase */
212         jupe->ju_lastmod++;
213       else
214         jupe->ju_lastmod = lastmod;
215     }
216
217     if ((saveflags & JUPE_ACTMASK) != JUPE_ACTIVE)
218       return 0; /* was inactive to begin with */
219   }
220
221   /* Inform ops and log it */
222   sendto_opmask_butone(0, SNO_NETWORK, "%s %s JUPE for %s, expiring at %Tu: "
223                        "%s",
224 #ifdef HEAD_IN_SAND_SNOTICES
225                        cli_name(sptr),
226 #else
227                        IsServer(sptr) ? cli_name(sptr) :
228                        cli_name(cli_user(sptr)->server),
229 #endif
230                        JupeIsLocal(jupe) ? "removing local" : "deactivating",
231                        jupe->ju_server, jupe->ju_expire + TSoffset,
232                        jupe->ju_reason);
233
234   log_write(LS_JUPE, L_INFO, LOG_NOSNOTICE,
235             "%#C %s JUPE for %s, expiring at %Tu: %s", sptr,
236             JupeIsLocal(jupe) ? "removing local" : "deactivating",
237             jupe->ju_server, jupe->ju_expire + TSoffset, jupe->ju_reason);
238
239   if (JupeIsLocal(jupe))
240     jupe_free(jupe);
241   else if (!(flags & JUPE_LOCAL)) /* don't propagate local changes */
242     propagate_jupe(cptr, sptr, jupe);
243
244   return 0;
245 }
246
247 struct Jupe *
248 jupe_find(char *server)
249 {
250   struct Jupe* jupe;
251   struct Jupe* sjupe;
252
253   for (jupe = GlobalJupeList; jupe; jupe = sjupe) { /* go through jupes */
254     sjupe = jupe->ju_next;
255
256     if (jupe->ju_expire <= CurrentTime) /* expire any that need expiring */
257       jupe_free(jupe);
258     else if (0 == ircd_strcmp(server, jupe->ju_server)) /* found it yet? */
259       return jupe;
260   }
261
262   return 0;
263 }
264
265 void
266 jupe_free(struct Jupe* jupe)
267 {
268   assert(0 != jupe);
269
270   *jupe->ju_prev_p = jupe->ju_next; /* squeeze this jupe out */
271   if (jupe->ju_next)
272     jupe->ju_next->ju_prev_p = jupe->ju_prev_p;
273
274   MyFree(jupe->ju_server);  /* and free up the memory */
275   MyFree(jupe->ju_reason);
276   MyFree(jupe);
277 }
278
279 void
280 jupe_burst(struct Client *cptr)
281 {
282   struct Jupe *jupe;
283   struct Jupe *sjupe;
284
285   for (jupe = GlobalJupeList; jupe; jupe = sjupe) { /* go through jupes */
286     sjupe = jupe->ju_next;
287
288     if (jupe->ju_expire <= CurrentTime) /* expire any that need expiring */
289       jupe_free(jupe);
290     else if (!JupeIsLocal(jupe)) /* forward global jupes */
291       sendcmdto_one(&me, CMD_JUPE, cptr, "* %c%s %Tu %Tu :%s",
292                     JupeIsRemActive(jupe) ? '+' : '-', jupe->ju_server,
293                     jupe->ju_expire - CurrentTime, jupe->ju_lastmod,
294                     jupe->ju_reason);
295   }
296 }
297
298 int
299 jupe_resend(struct Client *cptr, struct Jupe *jupe)
300 {
301   if (JupeIsLocal(jupe)) /* don't propagate local jupes */
302     return 0;
303
304   sendcmdto_one(&me, CMD_JUPE, cptr, "* %c%s %Tu %Tu :%s",
305                 JupeIsRemActive(jupe) ? '+' : '-', jupe->ju_server,
306                 jupe->ju_expire - CurrentTime, jupe->ju_lastmod,
307                 jupe->ju_reason);
308
309   return 0;
310 }
311
312 int
313 jupe_list(struct Client *sptr, char *server)
314 {
315   struct Jupe *jupe;
316   struct Jupe *sjupe;
317
318   if (server) {
319     if (!(jupe = jupe_find(server))) /* no such jupe */
320       return send_reply(sptr, ERR_NOSUCHJUPE, server);
321
322     /* send jupe information along */
323     send_reply(sptr, RPL_JUPELIST, jupe->ju_server, jupe->ju_expire + TSoffset,
324                JupeIsLocal(jupe) ? cli_name(&me) : "*",
325                JupeIsActive(jupe) ? '+' : '-', jupe->ju_reason);
326   } else {
327     for (jupe = GlobalJupeList; jupe; jupe = sjupe) { /* go through jupes */
328       sjupe = jupe->ju_next;
329
330       if (jupe->ju_expire <= CurrentTime) /* expire any that need expiring */
331         jupe_free(jupe);
332       else /* send jupe information along */
333         send_reply(sptr, RPL_JUPELIST, jupe->ju_server,
334                    jupe->ju_expire + TSoffset,
335                    JupeIsLocal(jupe) ? cli_name(&me) : "*",
336                    JupeIsActive(jupe) ? '+' : '-', jupe->ju_reason);
337     }
338   }
339
340   /* end of jupe information */
341   return send_reply(sptr, RPL_ENDOFJUPELIST);
342 }