]> jfr.im git - irc/quakenet/newserv.git/blame - glines/glines.h
Implement glineundo.
[irc/quakenet/newserv.git] / glines / glines.h
CommitLineData
813c5b73
CP
1#ifndef __GLINES_H
2#define __GLINES_H
3
a44fc5f7
GB
4#include "../lib/sstring.h"
5#include "../nick/nick.h"
6#include "../channel/channel.h"
7
22833ec3 8#define SNIRCD_VERSION 134
c684f472 9
cb581522
GB
10#define MAXUSERGLINEUSERHITS 100
11#define MAXUSERGLINECHANNELHITS 10
18845894
GB
12
13#define MAXGLINEDURATION 90 * 86400
14#define MINGLINEREASONLEN 10
a473a1be 15
cb581522
GB
16#define MAXGLINEUSERHITS 500
17#define MAXGLINECHANNELHITS 50
a44fc5f7 18
ce11a200
GB
19#define MAXGLINELOG 500
20
a473a1be 21#define GLINE_IGNORE_TRUST 1
8f128e0d
GB
22#define GLINE_ALWAYS_NICK 2
23#define GLINE_ALWAYS_USER 4
18845894 24#define GLINE_SIMULATE 8
a473a1be 25
96662a86
GB
26#define GLINE_HOSTMASK 1 /* Gline includes a host mask */
27#define GLINE_IPMASK 2 /* Gline includes an CIDR mask */
28#define GLINE_BADCHAN 4 /* Gline includes a badchan */
29#define GLINE_REALNAME 8 /* Gline includes a realname */
30#define GLINE_ACTIVATE 16 /* Gline should be activated */
31#define GLINE_DEACTIVATE 32 /* Gline should be deactivated */
20447d72
GB
32#define GLINE_DESTROY 64 /* Gline should be destroyed */
33#define GLINE_ACTIVE 128 /* Gline is active */
34#define GLINE_DESTROYED 256 /* Gline is destroyed */
a44fc5f7
GB
35
36/**
37 * glist flags
38 */
39#define GLIST_COUNT 0x01 /* -c */
40#define GLIST_EXACT 0x02 /* -x */
41#define GLIST_FIND 0x04 /* -f */
42#define GLIST_REASON 0x10 /* -r */
43#define GLIST_OWNER 0x20 /* -o */
44#define GLIST_REALNAME 0x40 /* -R */
45#define GLIST_INACTIVE 0x80 /* -i */
46
580103bc
GB
47#define GLSTORE_PATH_PREFIX "data/glines"
48#define GLSTORE_SAVE_FILES 5
49#define GLSTORE_SAVE_INTERVAL 3600
50
a44fc5f7
GB
51/**
52 * Interpret absolute/relative timestamps with same method as snircd
53 * If the expiration value, interpreted as an absolute timestamp, is
54 * more recent than 5 years in the past, we interpret it as an
55 * absolute timestamp; otherwise, we assume it's relative and convert
56 * it to an absolute timestamp.
57 */
58#define abs_expire(exp) ((exp) >= getnettime() - 157680000 ? (exp) : (exp) + getnettime())
59
c684f472 60#define gline_max(a, b) (((a)<(b)) ? (b) : (a))
a44fc5f7
GB
61
62typedef struct gline {
63 sstring *nick;
64 sstring *user;
65 sstring *host;
66 sstring *reason;
67 sstring *creator;
68
69 struct irc_in_addr ip;
70 unsigned char bits;
71
72 time_t expire;
73 time_t lastmod;
74 time_t lifetime;
75
76 unsigned int flags;
77
78 struct gline *next;
79} gline;
80
cb581522 81typedef struct glinebuf {
ce11a200
GB
82 int id;
83 sstring *comment;
84 time_t flush;
85
86 gline *glines;
cb581522
GB
87 int merge;
88} glinebuf;
8f128e0d 89
cb581522 90extern gline *glinelist;
ce11a200
GB
91extern glinebuf *glinebuflog[MAXGLINELOG];
92extern int glinebuflogoffset;
8f128e0d 93
a44fc5f7 94/* glines.c */
96662a86 95gline *findgline(const char *);
a44fc5f7 96void gline_propagate(gline *);
331ecd41 97void gline_deactivate(gline *, time_t, int);
20447d72 98void gline_destroy(gline *, time_t, int);
331ecd41 99void gline_activate(gline *agline, time_t lastmod, int propagate);
a44fc5f7
GB
100int glineequal(gline *, gline *);
101int gline_match_mask(gline *gla, gline *glb);
102int gline_match_nick(gline *gl, nick *np);
103int gline_match_channel(gline *gl, channel *cp);
a86fc0c4 104int isglinesane(gline *gl, const char **hint);
ce11a200 105gline *glinedup(gline *gl);
a86fc0c4
GB
106
107/* glines_formats.c */
108gline *makegline(const char *);
109char *glinetostring(gline *g);
a44fc5f7 110
a86fc0c4 111/* glines_util.c */
dd1aa3fb
GB
112int glinebyip(const char *user, struct irc_in_addr *ip, unsigned char bits, int duration, const char *reason, int flags, const char *creator);
113int glinebynick(nick *np, int duration, const char *reason, int flags, const char *creator);
18845894 114void glineunsetmask(const char *mask);
cb581522
GB
115
116/* glines_buf.c */
117void glinebufinit(glinebuf *gbuf, int merge);
118gline *glinebufadd(glinebuf *gbuf, const char *mask, const char *creator, const char *reason, time_t expire, time_t lastmod, time_t lifetime);
119void glinebufaddbyip(glinebuf *gbuf, const char *user, struct irc_in_addr *ip, unsigned char bits, int flags, const char *creator, const char *reason, time_t expire, time_t lastmod, time_t lifetime);
120void glinebufaddbynick(glinebuf *gbuf, nick *, int flags, const char *creator, const char *reason, time_t expire, time_t lastmod, time_t lifetime);
18845894
GB
121void glinebufcounthits(glinebuf *gbuf, int *users, int *channels, nick *spewto);
122int glinebufchecksane(glinebuf *gbuf, nick *spewto, int overridesanity, int overridelimit, int spewhits);
56af56be 123void glinebufspew(glinebuf *gbuf, nick *spewto);
0b2e8a55
GB
124void glinebufcommit(glinebuf *gbuf, int propagate);
125void glinebufabort(glinebuf *gbuf);
126int glinebufundo(int id);
ce11a200
GB
127void glinebufcommentf(glinebuf *gbuf, const char *format, ...);
128void glinebufcommentv(glinebuf *gbuf, const char *prefix, int cargc, char **cargv);
cb581522 129
a44fc5f7
GB
130/* glines_alloc.c */
131void freegline(gline *);
132gline *newgline();
133void removegline(gline *);
134
135/* glines_handler.c */
136int handleglinemsg(void *, int, char **);
137void handleglinestats(int hooknum, void *arg);
138
580103bc
GB
139/* glines_store.c */
140int glstore_save(void);
141int glstore_load(void);
142
813c5b73 143#endif