forked from florian-sander/gseen.mod
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gseencmds.c
405 lines (375 loc) · 10.2 KB
/
gseencmds.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
/*
* Copyright (C) 2000,2001 Florian Sander
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#define PREFIX_LENGTH 20
static char reply_prefix[PREFIX_LENGTH + 1];
#define set_prefix(x) strncpy(reply_prefix, x, PREFIX_LENGTH); \
reply_prefix[PREFIX_LENGTH] = 0;
static int seenflood()
{
if (!maxseen_thr || !maxseen_time)
return 0;
if ((now - seenflood_time) > maxseen_time) {
seenflood_time = now;
seenflood_thr = 0;
}
seenflood_thr++;
if (seenflood_thr > maxseen_thr)
return 1;
else
return 0;
}
static int nopub(char *chan)
{
char buf[121], *b;
strlcpy(buf, no_pub, sizeof buf);
b = buf;
while (b[0])
if (!strcasecmp(chan, newsplit(&b)))
return 1;
#if EGG_IS_MIN_VER(10503)
if (ngetudef("nopubseens", chan))
return 1;
#endif
return 0;
}
static int quietseen(char *chan)
{
char buf[121], *b;
strlcpy(buf, quiet_seen, sizeof buf);
b = buf;
while (b[0])
if (!strcasecmp(chan, newsplit(&b)))
return 1;
#if EGG_IS_MIN_VER(10503)
if (ngetudef("quietseens", chan))
return 1;
#endif
return 0;
}
static int cmd_seen(struct userrec *u, int idx, char *par)
{
char *query;
if (seenflood())
return 0;
reset_global_vars();
glob_slang = slang_find(coreslangs, default_slang);
glob_nick = dcc[idx].nick;
query = newsplit(&par);
glob_query = query;
set_prefix(SLDCCPREFIX);
putlog(LOG_CMDS, "*", "#%s# seen %s", dcc[idx].nick, par);
dprintf(idx, "%s%s\n", reply_prefix, do_seen(query, dcc[idx].nick,
dcc[idx].host, "[partyline]", botnet_seen));
return 0;
}
static int cmd_seenstats(struct userrec *u, int idx, char *par)
{
if (seenflood())
return 0;
reset_global_vars();
glob_slang = slang_find(coreslangs, default_slang);
glob_nick = dcc[idx].nick;
set_prefix(SLDCCPREFIX);
putlog(LOG_CMDS, "*", "#%s# seenstats", dcc[idx].nick);
dprintf(idx, "%s%s\n", reply_prefix, do_seenstats());
return 0;
}
static int cmd_purgeseens(struct userrec *u, int idx, char *par)
{
purge_seens();
putlog(LOG_CMDS, "*", "#%s# purgeseens", dcc[idx].nick);
return 0;
}
static int pub_seen(char *nick, char *host, char *hand,
char *channel, char *text)
{
char *dest;
#if EGG_IS_MIN_VER(10500)
struct chanset_t *chan;
#endif
if (seenflood() || nopub(channel))
return 0;
reset_global_vars();
glob_slang = slang_find(coreslangs, slang_chanlang_get(chanlangs, channel));
glob_nick = nick;
putlog(LOG_CMDS, "*", "<<%s>> !%s! seen %s", nick, hand, text);
if (quietseen(channel)) {
set_prefix(SLNOTPREFIX);
dprintf(DP_HELP, "NOTICE %s :%s%s\n", nick, reply_prefix,
do_seen(newsplit(&text), nick, host, channel, botnet_seen));
return 0;
}
#if EGG_IS_MIN_VER(10500)
chan = findchan_by_dname(channel);
if (chan)
dest = chan->name;
else
dest = channel;
#else
dest = channel;
#endif
set_prefix(SLPUBPREFIX);
dprintf(DP_HELP, "PRIVMSG %s :%s%s\n", dest, reply_prefix,
do_seen(newsplit(&text), nick, host, channel, botnet_seen));
return 0;
}
static int pub_seenstats(char *nick, char *host, char *hand,
char *channel, char *text)
{
char *dest;
#if EGG_IS_MIN_VER(10500)
struct chanset_t *chan;
#endif
if (seenflood())
return 0;
if (nopub(channel))
return 0;
reset_global_vars();
glob_slang = slang_find(coreslangs, slang_chanlang_get(chanlangs, channel));
glob_nick = nick;
putlog(LOG_CMDS, "*", "<<%s>> !%s! seenstats", nick, hand);
if (quietseen(channel)) {
set_prefix(SLNOTPREFIX);
dprintf(DP_HELP, "NOTICE %s :%s%s\n", nick, reply_prefix, do_seenstats());
return 0;
}
#if EGG_IS_MIN_VER(10500)
chan = findchan_by_dname(channel);
if (chan)
dest = chan->name;
else
dest = channel;
#else
dest = channel;
#endif
set_prefix(SLPUBPREFIX);
dprintf(DP_HELP, "PRIVMSG %s :%s%s\n", dest, reply_prefix, do_seenstats());
return 1;
}
static int msg_seen(char *nick, char *uhost, struct userrec *u, char *text)
{
if (seenflood())
return 0;
reset_global_vars();
glob_slang = slang_getbynick(coreslangs, nick);
glob_nick = nick;
putlog(LOG_CMDS, "*", "(%s!%s) !%s! seen %s", nick, uhost, u ? u->handle : "*", text);
set_prefix(SLMSGPREFIX);
dprintf(DP_HELP, "PRIVMSG %s :%s%s\n", nick, reply_prefix,
do_seen(newsplit(&text), nick, uhost, "[/msg]", botnet_seen));
return 1;
}
static int pub_seennick(char *nick, char *host, char *hand,
char *channel, char *text)
{
seendat *l;
char *dest;
#if EGG_IS_MIN_VER(10500)
struct chanset_t *chan;
#endif
if (seenflood())
return 0;
if (nopub(channel))
return 0;
putlog(LOG_CMDS, "*", "<<%s>> !%s! seennick %s", nick, hand, text);
reset_global_vars();
glob_slang = slang_find(coreslangs, slang_chanlang_get(chanlangs, channel));
glob_nick = nick;
#if EGG_IS_MIN_VER(10500)
chan = findchan_by_dname(channel);
if (chan)
dest = chan->name;
else
dest = channel;
#else
dest = channel;
#endif
text = newsplit(&text);
l = findseen(text);
if (!l) {
glob_query = text;
if (quietseen(channel)) {
set_prefix(SLNOTPREFIX);
dprintf(DP_HELP, "NOTICE %s :%s%s\n", nick, reply_prefix, SLNOTSEEN);
} else {
set_prefix(SLPUBPREFIX);
dprintf(DP_HELP, "PRIVMSG %s :%s%s\n", dest, reply_prefix, SLNOTSEEN);
}
return 0;
}
if (quietseen(channel)) {
set_prefix(SLNOTPREFIX);
dprintf(DP_HELP, "NOTICE %s :%s%s\n", nick, reply_prefix, do_seennick(l));
} else {
set_prefix(SLPUBPREFIX);
dprintf(DP_HELP, "PRIVMSG %s :%s%s\n", dest, reply_prefix, do_seennick(l));
}
return 0;
}
static int msg_seennick(char *nick, char *uhost, struct userrec *u, char *text)
{
seendat *l;
if (seenflood())
return 0;
putlog(LOG_CMDS, "*", "(%s!%s) !%s! seennick %s", nick, uhost, u ? u->handle : "*", text);
reset_global_vars();
glob_slang = slang_getbynick(coreslangs, nick);
glob_nick = nick;
set_prefix(SLMSGPREFIX);
text = newsplit(&text);
l = findseen(text);
if (!l) {
glob_query = text;
dprintf(DP_HELP, "PRIVMSG %s :%s%s\n", nick, reply_prefix, SLNOTSEEN);
return 0;
}
dprintf(DP_HELP, "PRIVMSG %s :%s%s\n", nick, reply_prefix, do_seennick(l));
return 0;
}
static int cmd_seennick(struct userrec *u, int idx, char *text)
{
seendat *l;
if (seenflood())
return 0;
putlog(LOG_CMDS, "*", "#%s# seennick %s", dcc[idx].nick, text);
reset_global_vars();
glob_slang = slang_find(coreslangs, default_slang);
glob_nick = dcc[idx].nick;
set_prefix(SLMSGPREFIX);
text = newsplit(&text);
l = findseen(text);
if (!l) {
glob_query = text;
dprintf(idx, "%s%s\n", reply_prefix, SLNOTSEEN);
return 0;
}
dprintf(idx, "%s%s\n", reply_prefix, do_seennick(l));
return 0;
}
static int bot_gseen_req(char *bot, char *code, char *par)
{
char *mask, *nick, *uhost, *chan, *reply;
char tosend[256];
int i;
if (seenflood())
return 0;
i = nextbot(bot);
if (i < 0) {
debug1("Couldn't answer botnet-seen-request from %s: no such bot", bot);
return 0;
}
mask = newsplit(&par);
nick = newsplit(&par);
uhost = newsplit(&par);
chan = newsplit(&par);
reset_global_vars();
glob_slang = slang_find(coreslangs, slang_chanlang_get(chanlangs, chan));
glob_nick = nick;
reply = do_seen(mask, nick, uhost, chan, -1);
if (!reply)
return 0;
if ((strlen(nick) + strlen(chan) + strlen(reply)) < 255) {
sprintf(tosend, "gseen_rep %s %s %s", nick, chan, reply);
botnet_send_zapf(i, botnetnick, bot, tosend);
}
return 0;
}
static int bot_gseen_rep(char *bot, char *code, char *par)
{
char *nick, *chan, *reply;
int i;
if (seenflood())
return 0;
if (!bnsnick || !bnschan) {
if (bnsnick)
nfree(bnsnick);
if (bnschan)
nfree(bnschan);
bnsnick = bnschan = NULL;
return 0;
}
nick = newsplit(&par);
chan = newsplit(&par);
reset_global_vars();
glob_remotebot = bot;
glob_slang = slang_find(coreslangs, slang_chanlang_get(chanlangs, chan));
glob_nick = nick;
reply = par;
if (strcmp(nick, bnsnick) || strcmp(chan, bnschan))
return 0; /* unwanted reply */
if (findchan(chan)) {
if (nopub(chan)) {
nfree(bnsnick);
nfree(bnschan);
bnsnick = bnschan = NULL;
debug1("%s is nopub, bns-reply dropped", chan);
return 0;
}
if (quietseen(chan)) {
set_prefix(SLNOTPREFIX);
dprintf(DP_HELP, "NOTICE %s :%s%s%s\n", nick, reply_prefix, SLRBOTSAYS, reply);
} else {
set_prefix(SLPUBPREFIX);
dprintf(DP_HELP, "PRIVMSG %s :%s%s%s\n", chan, reply_prefix, SLRBOTSAYS, reply);
}
} else if (!strcmp(chan, "[/msg]")) {
set_prefix(SLMSGPREFIX);
dprintf(DP_HELP, "PRIVMSG %s :%s%s%s\n", nick, reply_prefix, SLRBOTSAYS, reply);
} else if (!strcmp(chan, "[partyline]")) {
for (i = 0; i < dcc_total; i++) {
if ((!strcasecmp(nick, dcc[i].nick)) &&
(dcc[i].type->flags & DCT_SIMUL)) {
set_prefix(SLDCCPREFIX);
dprintf(i, "%s%s%s\n", reply_prefix, SLRBOTSAYS, reply);
break;
}
}
} else
debug1("Couldn't send received bns answer, no such chan %s", chan);
nfree(bnsnick);
nfree(bnschan);
bnsnick = bnschan = NULL;
return 0;
}
static cmd_t mydcc[] =
{
{"seen", "-|-", cmd_seen, NULL},
{"seenstats", "-|-", cmd_seenstats, NULL},
{"purgeseens", "m", cmd_purgeseens, NULL},
{"seennick", "-|-", cmd_seennick, NULL},
{0, 0, 0, 0}
};
static cmd_t seen_pub[] =
{
{"!seen", "", pub_seen, 0},
{"!seenstats", "", pub_seenstats, 0},
{"!seennick", "", pub_seennick, 0},
{0, 0, 0, 0}
};
static cmd_t seen_msg[] =
{
{"seen", "", msg_seen, 0},
{"seennick", "", msg_seennick, 0},
{0, 0, 0, 0}
};
static cmd_t seen_bot[] =
{
{"gseen_req", "", bot_gseen_req, 0},
{"gseen_rep", "", bot_gseen_rep, 0},
{0, 0, 0, 0}
};