]> jfr.im git - irc/quakenet/newserv.git/blame - trusts/trusts.h
trusts: Fix duration for policy enforcement glines.
[irc/quakenet/newserv.git] / trusts / trusts.h
CommitLineData
2b6e02e2
CP
1#ifndef __TRUSTS_H
2#define __TRUSTS_H
3
4#include <time.h>
65f34016 5#include <stdint.h>
1bbe1ac3 6#include "../nick/nick.h"
2b6e02e2
CP
7#include "../lib/sstring.h"
8
9#define MIGRATION_STOPPED -1
83bccee3 10#define MIGRATION_LASTERROR -2
2b6e02e2
CP
11
12#define CONTACTLEN 100
13#define COMMENTLEN 300
be2823bc
CP
14#define TRUSTNAMELEN 100
15#define TRUSTHOSTLEN 100
1f685425 16#define CREATEDBYLEN NICKLEN + 1
01bd21d3 17#define TRUSTLOGLEN 200
1f685425 18
2129448c 19#define MAXTGEXTS 5
2b6e02e2 20
e40626f0 21#define MAXTRUSTEDFOR 5000
2ab0a1e7
CP
22#define MAXDURATION 365 * 86400 * 20
23#define MAXPERIDENT 1000
c1da06f9 24#define MAXPERNODE 1000
2ab0a1e7 25
35449aa5
CP
26#define TABLES_REGULAR 0
27#define TABLES_MIGRATION 1
28#define TABLES_REPLICATION 2
29
e7a8ea3a 30#define CLEANUP_TH_INACTIVE 60
caf2d02a 31
6f335647 32#define POLICY_GLINE_DURATION 1800
1961b117 33
de723023
GB
34#define TRUST_ENFORCE_IDENT 1 /* This must be 1 for compatibility with O. */
35#define TRUST_NO_CLEANUP 2
e40626f0
GB
36#define TRUST_PROTECTED 4
37
38#define TRUST_MIN_UNPRIVILEGED_BITS_IPV4 (96 + 32)
39#define TRUST_MIN_UNPRIVILEGED_BITS_IPV6 32
40
41#define TRUST_MIN_UNPRIVILEGED_NODEBITS_IPV4 (96 + 24)
42#define TRUST_MIN_UNPRIVILEGED_NODEBITS_IPV6 48
de723023 43
2b6e02e2
CP
44struct trustmigration;
45
1bbe1ac3
CP
46struct trusthost;
47
be2823bc 48typedef struct trusthost {
9bf9e8a1
CP
49 unsigned int id;
50
6e6e98da
GB
51 struct irc_in_addr ip;
52 unsigned char bits;
4be1aaf2 53 unsigned int maxusage;
caf2d02a 54 time_t created;
be2823bc
CP
55 time_t lastseen;
56
1bbe1ac3
CP
57 nick *users;
58 struct trustgroup *group;
59
60 unsigned int count;
61
cebc4cab
GB
62 int maxpernode;
63 int nodebits;
64
34e3de85
GB
65 struct trusthost *parent, *children;
66 unsigned int marker;
67
68 struct trusthost *nextbychild;
be2823bc
CP
69 struct trusthost *next;
70} trusthost;
71
2b6e02e2
CP
72typedef struct trustgroup {
73 unsigned int id;
74
75 sstring *name;
76 unsigned int trustedfor;
de723023 77 int flags;
2b6e02e2 78 unsigned int maxperident;
4be1aaf2 79 unsigned int maxusage;
2b6e02e2 80 time_t expires;
be2823bc 81 time_t lastseen;
1f685425 82 time_t lastmaxusereset;
2b6e02e2
CP
83 sstring *createdby, *contact, *comment;
84
be2823bc 85 trusthost *hosts;
1bbe1ac3
CP
86 unsigned int count;
87
34e3de85
GB
88 unsigned int marker;
89
2b6e02e2 90 struct trustgroup *next;
2129448c
CP
91
92 void *exts[MAXTGEXTS];
2b6e02e2
CP
93} trustgroup;
94
1bbe1ac3
CP
95#define nextbytrust(x) (nick *)((x)->exts[trusts_nextuserext])
96#define gettrusthost(x) (trusthost *)((x)->exts[trusts_thext])
97#define setnextbytrust(x, y) (x)->exts[trusts_nextuserext] = (y)
98#define settrusthost(x, y) (x)->exts[trusts_thext] = (y)
99
45e8ce62
CP
100/* trusts.c */
101extern int trusts_thext, trusts_nextuserext;
2129448c
CP
102int findtgext(const char *);
103int registertgext(const char *);
104void releasetgext(int);
82a316e7 105int trusts_fullyonline(void);
45e8ce62 106
8a95d3e4
CP
107/* formats.c */
108char *trusts_timetostr(time_t);
6e6e98da 109char *trusts_cidr2str(struct irc_in_addr *ip, unsigned char);
82a316e7
CP
110char *dumpth(trusthost *, int);
111char *dumptg(trustgroup *, int);
112int parseth(char *, trusthost *, unsigned int *, int);
113int parsetg(char *, trustgroup *, int);
114char *rtrim(char *);
5ada3782
CP
115
116/* data.c */
be2823bc 117extern trustgroup *tglist;
5ada3782
CP
118trustgroup *tg_getbyid(unsigned int);
119void th_free(trusthost *);
82a316e7 120trusthost *th_add(trusthost *);
2ab0a1e7 121void tg_free(trustgroup *, int);
82a316e7 122trustgroup *tg_add(trustgroup *);
6e6e98da
GB
123trusthost *th_getbyhost(struct irc_in_addr *);
124trusthost *th_getbyhostandmask(struct irc_in_addr *, uint32_t);
125trusthost *th_getsmallestsupersetbyhost(struct irc_in_addr *, uint32_t);
9097ab05
CP
126trustgroup *tg_strtotg(char *);
127void th_adjusthosts(trusthost *th, trusthost *, trusthost *);
6e6e98da
GB
128void th_getsuperandsubsets(struct irc_in_addr *, uint32_t, trusthost **, trusthost **);
129trusthost *th_getsubsetbyhost(struct irc_in_addr *ip, uint32_t mask);
130trusthost *th_getnextsubsetbyhost(trusthost *th, struct irc_in_addr *ip, uint32_t mask);
34e3de85
GB
131void th_linktree(void);
132unsigned int nexttgmarker(void);
133unsigned int nextthmarker(void);
2ab0a1e7
CP
134trusthost *th_getbyid(unsigned int);
135int tg_modify(trustgroup *, trustgroup *);
058f68c5 136int th_modify(trusthost *, trusthost *);
5ada3782
CP
137
138/* migration.c */
82a316e7
CP
139typedef void (*TrustMigrationGroup)(void *, trustgroup *);
140typedef void (*TrustMigrationHost)(void *, trusthost *, unsigned int);
5ada3782 141typedef void (*TrustMigrationFini)(void *, int);
2b6e02e2 142
2ab0a1e7
CP
143/* trusts_db.c */
144extern int trustsdbloaded;
145int trusts_loaddb(void);
146void trusts_closedb(int);
147trustgroup *tg_new(trustgroup *);
148trusthost *th_new(trustgroup *, char *);
149void trustsdb_insertth(char *, trusthost *, unsigned int);
150void trustsdb_inserttg(char *, trustgroup *);
151trustgroup *tg_copy(trustgroup *);
152trusthost *th_copy(trusthost *);
153void tg_update(trustgroup *);
154void tg_delete(trustgroup *);
c1da06f9 155void th_update(trusthost *);
2ab0a1e7 156void th_delete(trusthost *);
1467e9a4
GB
157void trustlog(trustgroup *tg, const char *user, const char *format, ...);
158void trustlogspewid(nick *np, unsigned int groupid, unsigned int limit);
159void trustlogspewname(nick *np, const char *groupname, unsigned int limit);
01bd21d3 160void trustloggrep(nick *np, const char *pattern, unsigned int limit);
2ab0a1e7 161
5ada3782
CP
162typedef struct trustmigration {
163 int count, cur;
164 void *schedule;
165 void *tag;
166
167 TrustMigrationGroup group;
168 TrustMigrationHost host;
169 TrustMigrationFini fini;
170} trustmigration;
171
172/* db-migration.c */
5ada3782 173typedef void (*TrustDBMigrationCallback)(int, void *);
2d4ba67d 174
9097ab05
CP
175/* events.c */
176void trusts_newnick(nick *, int);
177void trusts_lostnick(nick *, int);
178
813c5b73
CP
179/* trusts_api.c */
180int istrusted(nick *);
a473a1be 181unsigned char getnodebits(struct irc_in_addr *ip);
813c5b73 182
2b6e02e2 183#endif