]> jfr.im git - irc/quakenet/newserv.git/blob - glines/glines.h
Fix a typo. *sigh*
[irc/quakenet/newserv.git] / glines / glines.h
1 #ifndef __GLINES_H
2 #define __GLINES_H
3
4 #include "../lib/sstring.h"
5 #include "../nick/nick.h"
6 #include "../channel/channel.h"
7
8 #define SNIRCD_VERSION 134
9
10 #define MAXUSERGLINEUSERHITS 100
11 #define MAXUSERGLINECHANNELHITS 10
12
13 #define MAXGLINEDURATION 90 * 86400
14 #define MINGLINEREASONLEN 10
15
16 #define MAXGLINEUSERHITS 500
17 #define MAXGLINECHANNELHITS 50
18
19 #define MAXGLINELOG 500
20
21 #define GLINE_IGNORE_TRUST 1
22 #define GLINE_ALWAYS_NICK 2
23 #define GLINE_ALWAYS_USER 4
24 #define GLINE_SIMULATE 8
25
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 */
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 */
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
47 #define GLSTORE_PATH_PREFIX "data/glines"
48 #define GLSTORE_SAVE_FILES 5
49 #define GLSTORE_SAVE_INTERVAL 3600
50
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
60 #define gline_max(a, b) (((a)<(b)) ? (b) : (a))
61
62 typedef 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
81 typedef struct glinebuf {
82 int id;
83 sstring *comment;
84 time_t commit;
85 time_t amend;
86
87 gline *glines;
88
89 int hitsvalid;
90 int userhits;
91 int channelhits;
92
93 array hits;
94 } glinebuf;
95
96 extern gline *glinelist;
97 extern glinebuf *glinebuflog[MAXGLINELOG];
98 extern int glinebuflogoffset;
99
100 /* glines.c */
101 gline *findgline(const char *);
102 void gline_propagate(gline *);
103 void gline_deactivate(gline *, time_t, int);
104 void gline_destroy(gline *, time_t, int);
105 void gline_activate(gline *agline, time_t lastmod, int propagate);
106 int glineequal(gline *, gline *);
107 int gline_match_mask(gline *gla, gline *glb);
108 int gline_match_nick(gline *gl, nick *np);
109 int gline_match_channel(gline *gl, channel *cp);
110 int isglinesane(gline *gl, const char **hint);
111 gline *glinedup(gline *gl);
112
113 /* glines_formats.c */
114 gline *makegline(const char *);
115 char *glinetostring(gline *g);
116
117 /* glines_util.c */
118 int glinebyip(const char *user, struct irc_in_addr *ip, unsigned char bits, int duration, const char *reason, int flags, const char *creator);
119 int glinebynick(nick *np, int duration, const char *reason, int flags, const char *creator);
120 void glineunsetmask(const char *mask);
121
122 /* glines_buf.c */
123 void glinebufinit(glinebuf *gbuf, int id);
124 gline *glinebufadd(glinebuf *gbuf, const char *mask, const char *creator, const char *reason, time_t expire, time_t lastmod, time_t lifetime);
125 void 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);
126 void glinebufaddbynick(glinebuf *gbuf, nick *, int flags, const char *creator, const char *reason, time_t expire, time_t lastmod, time_t lifetime);
127 void glinebufcounthits(glinebuf *gbuf, int *users, int *channels);
128 int glinebufchecksane(glinebuf *gbuf, nick *spewto, int overridesanity, int overridelimit);
129 void glinebufspew(glinebuf *gbuf, nick *spewto);
130 void glinebufmerge(glinebuf *gbuf);
131 int glinebufcommit(glinebuf *gbuf, int propagate);
132 void glinebufabort(glinebuf *gbuf);
133 int glinebufundo(int id);
134 void glinebufcommentf(glinebuf *gbuf, const char *format, ...);
135 void glinebufcommentv(glinebuf *gbuf, const char *prefix, int cargc, char **cargv);
136
137 /* glines_alloc.c */
138 void freegline(gline *);
139 gline *newgline();
140 void removegline(gline *);
141
142 /* glines_handler.c */
143 int handleglinemsg(void *, int, char **);
144 void handleglinestats(int hooknum, void *arg);
145
146 /* glines_store.c */
147 int glstore_save(void);
148 int glstore_load(void);
149
150 #endif