]> jfr.im git - irc/quakenet/newserv.git/blob - chanserv/chanserv.h
Merge.
[irc/quakenet/newserv.git] / chanserv / chanserv.h
1 /*
2 * chanserv.h:
3 * Top level data structures and function prototypes for the
4 * channel service module
5 */
6
7 #ifndef __CHANSERV_H
8 #define __CHANSERV_H
9
10 #define _GNU_SOURCE
11 #include <string.h>
12 #include <time.h>
13 #include "../lib/sstring.h"
14 #include "../core/schedule.h"
15 #include "../lib/flags.h"
16 #include "../nick/nick.h"
17 #include "../channel/channel.h"
18 #include "../parser/parser.h"
19 #include "../localuser/localuserchannel.h"
20 #include "../pqsql/pqsql.h"
21
22 #define CS_PARANOID
23
24 #ifdef CS_PARANOID
25 #include <assert.h>
26 #endif
27
28 /* Q9 Version */
29 #define QVERSION "1.00-RC1"
30
31 /* Mini-hash of known users on channels to make lookups faster;
32 * how big do we make it? */
33 #define REGCHANUSERHASHSIZE 5
34 #define PASSLEN 10
35 #define WELCOMELEN 250
36 #define INFOLEN 100
37 #define AUTOLIMIT_INTERVAL 60
38 #define COUNTERSYNCINTERVAL 600
39 #define LINGERTIME 300
40 #define DUMPINTERVAL 300
41 #define EMAILLEN 60
42 #define CHANTYPES 8
43 #define CHANOPHISTORY 10
44
45 /* Suspension and g-line hit count limits */
46 #define MAXGLINEUSERS 50
47 #define MAXSUSPENDHIT 500
48
49 /* Maximum number of times a user may attempt to auth */
50 #define MAXAUTHATTEMPT 5
51
52 /* Maximum number of hellos in a session */
53 #define MAXHELLOS 3
54
55 /* Maximum number of times a user may actually be authed */
56 #define MAXAUTHCOUNT 2
57
58 /* Maximum number of accounts that may share an email address */
59 #define MD_DEFAULTACTLIMIT 2
60
61 /* Sizes of the main hashes */
62 #define REGUSERHASHSIZE 60000
63 #define MAILDOMAINHASHSIZE 60000
64
65 /* Number of languages and messages */
66 #define MAXLANG 50
67 #define MAXMESSAGES 200
68
69 /* Maximum number of user chanlevs and bans */
70 #define MAXCHANLEVS 250
71 #define MAXBANS 50
72
73 /* Sources of entropy and standard length defines */
74 #define ENTROPYSOURCE "/dev/urandom"
75 #define ENTROPYLEN 8
76
77 /* The list of messages */
78 #define QM_PROTECTED 0
79 #define QM_UNKNOWNCMD 1
80 #define QM_SECUREONLY 2
81 #define QM_AUTHEDONLY 3
82 #define QM_UNAUTHEDONLY 4
83 #define QM_COMMANDLIST 5
84 #define QM_ENDOFLIST 6
85 #define QM_DONE 7
86 #define QM_NOTENOUGHPARAMS 8
87 #define QM_UNKNOWNCHAN 9
88 #define QM_NOACCESSONCHAN 10
89 #define QM_CURCHANFLAGS 11
90 #define QM_CURFORCEMODES 12
91 #define QM_NOACCESS 13
92 #define QM_UNKNOWNUSER 14
93 #define QM_USERNOTAUTHED 15
94 #define QM_CHANLEVHEADER 16
95 #define QM_CHANLEVCOLSHORT 17
96 #define QM_CHANLEVCOLFULL 18
97 #define QM_NOUSERSONCHANLEV 19
98 #define QM_CHANUSERFLAGS 20
99 #define QM_CHANUSERUNKNOWN 21
100 #define QM_INVALIDCHANLEVCHANGE 22
101 #define QM_USERISAUTHEDAS 23
102 #define QM_USERISHELPER 24
103 #define QM_USERISOPER 25
104 #define QM_USERISADMIN 26
105 #define QM_USERISDEV 27
106 #define QM_WHOISHEADER 28
107 #define QM_WHOISCOLS 29
108 #define QM_USERONNOCHANS 30
109 #define QM_CHANAUTOLIMIT 31
110 #define QM_CHANBANAUTOREMOVE 32
111 #define QM_NOCHANBANAUTOREMOVE 33
112 #define QM_INVALIDCHANNAME 34
113 #define QM_ALREADYREGISTERED 35
114 #define QM_CURUSERFLAGS 36
115 #define QM_WELCOMEMESSAGEIS 37
116 #define QM_GLOBALINFO 38
117 #define QM_CHANNELINFO 39
118 #define QM_PROTECTEDNICK 40
119 #define QM_NICKWASFAKED 41
120 #define QM_NOTPROTECTED 42
121 #define QM_SAMEAUTH 43
122 #define QM_AUTHFAIL 44
123 #define QM_AUTHOK 45
124 #define QM_NEWACCOUNT 46
125 #define QM_AUTHNAMEINUSE 47
126 #define QM_ALREADYONCHAN 48
127 #define QM_NOTONCHAN 49
128 #define QM_ALREADYOPPED 50
129 #define QM_USERNOTONCHAN 51
130 #define QM_USEROPPEDONCHAN 52
131 #define QM_CANTOP 53
132 #define QM_NOTOPPED 54
133 #define QM_ALREADYVOICED 55
134 #define QM_NOTVOICED 56
135 #define QM_USERVOICEDONCHAN 57
136 #define QM_REGBANHEADER 58
137 #define QM_NOBANS 59
138 #define QM_REMOVEDCHANBAN 60
139 #define QM_NOTREMOVEDPERMBAN 61
140 #define QM_REMOVEDPERMBAN 62
141 #define QM_CANTVOICE 63
142 #define QM_NOHELP 64
143 #define QM_WHOISHEADER_NICK 65
144 #define QM_WHOISHEADER_AUTH 66
145 #define QM_WHOIS_USERS 67
146 #define QM_WHOIS_LASTAUTH 68
147 #define QM_WHOIS_LASTUSERHOST 69
148 #define QM_WHOIS_USERID 70
149 #define QM_WHOIS_INFO 71
150 #define QM_WHOIS_COMMENT 72
151 #define QM_WHOIS_FLAGS 73
152 #define QM_WHOIS_CREATED 74
153 #define QM_WHOIS_CHANHEADER 75
154 #define QM_WHOIS_EMAIL 76
155 #define QM_WHOIS_EMAILSET 77
156 #define QM_COMMENT 78
157 #define QM_NOCOMMENT 79
158 #define QM_BADAUTH 80
159 #define QM_USERHASBADAUTH 81
160 #define QM_BADEMAIL 82
161 #define QM_MAILTHROTTLED 83
162 #define QM_MAILQUEUED 84
163 #define QM_PWDONTMATCH 85
164 #define QM_PWTOSHORT 86
165 #define QM_PWCHANGED 87
166 #define QM_INVALIDDURATION2 88
167 #define QM_EMAILCHANGED 89
168 #define QM_EMAILDONTMATCH 90
169 #define QM_INVALIDEMAIL 91
170 #define QM_EMAILTOOSHORT 92
171 #define QM_NOTYOUREMAIL 93
172 #define QM_EMAILNOAT 94
173 #define QM_EMAILATEND 95
174 #define QM_EMAILINVCHR 96
175 #define QM_CHANNELNOTSUSPENDED 97
176 #define QM_CHANNELALREADYSUSPENDED 98
177 #define QM_CHANTYPE 99
178 #define QM_UNKNOWNCHANTYPE 100
179 #define QM_FOUNDER 101
180 #define QM_ADDEDBY 102
181 #define QM_ALREADYKNOWNONCHAN 103
182 #define QM_CANNOTREMOVEOWNER 104
183 #define QM_CANNOTREMOVEMASTER 105
184 #define QM_UNKNOWNBAN 106
185 #define QM_YOURLANGUAGE 107
186 #define QM_LANGUAGELIST 108
187 #define QM_UNKNOWNLANGUAGE 109
188 #define QM_WHOIS_USERLANG 110
189 #define QM_CHANTYPEIS 111
190 #define QM_STATSHEADER 112
191 #define QM_STATSADDED 113
192 #define QM_STATSJOINS 114
193 #define QM_STATSLASTACTIVE 115
194 #define QM_AUTHSUSPENDED 116
195 #define QM_REASON 117
196 #define QM_EXPIRES 118
197 #define QM_TOOMANYAUTHS 119
198 #define QM_INVALIDDURATION 120
199 #define QM_DISCONNECTINGUSER 121
200 #define QM_USERALREADYSUSPENDED 122
201 #define QM_USERNOTSUSPENDED 123
202 #define QM_SPEWHEADER 124
203 #define QM_TOOMANYRESULTS 125
204 #define QM_RESULTCOUNT 126
205 #define QM_SUSPENDKILL 127
206 #define QM_LISTFLAGSHEADER 128
207 #define QM_SUSPENDUSERLISTHEADER 129
208 #define QM_SUSPENDCHANLISTHEADER 130
209 #define QM_NOREQUESTOWNER 131
210 #define QM_GRANTEDOWNER 132
211 #define QM_AUTHHISTORYHEADER 133
212 #define QM_CURDOMAINMODES 134
213 #define QM_SPEWDOMAINHEADER 135
214 #define QM_DOMAINLIMIT 136
215 #define QM_PWTOWEAK 137
216 #define QM_GIVEOWNERNOTMASTER 138
217 #define QM_GIVEOWNERALREADYOWNER 139
218 #define QM_GIVEOWNERNEEDHASH 140
219 #define QM_GIVEOWNERWRONGHASH 141
220 #define QM_SHOWINGDURATION 142
221 #define QM_INVALIDACCOUNTNAME 143
222 #define QM_CHALLENGEBADALGORITHM 144
223 #define QM_NOCHALLENGE 145
224 #define QM_USEGIVEOWNER 146
225 #define QM_NOFLAGSPECIFIED 147
226 #define QM_NEWBANALREADYBANNED 148
227 #define QM_NEWBANOVERLAPS 149
228 #define QM_REPLACINGTEMPBAN 150
229 #define QM_PERMBANALREADYSET 151
230 #define QM_NOTREPLACINGBANLDURATION 152
231 #define QM_REPLACINGBANSDURATION 153
232 #define QM_TOOMANYCHANLEVS 154
233 #define QM_TOOMANYBANS 155
234 #define QM_WARNNOTREMOVEDPERMBAN 156
235 #define QM_MAXHELLOLIMIT 157
236 #define QM_ADDRESSLIMIT 158
237 #define QM_DOMAINBANNED 159
238 #define QM_TYPEHELPFORHELP 160
239 #define QM_REQUESTPASSPRIVUSER 161
240 #define QM_EMAILMATCHESOLD 162
241 #define QM_INVALIDLIMIT 163
242 #define QM_ACCOUNTLOCKED 164
243 #define QM_ACCOUNTNOTLOCKED 165
244 #define QM_RESETOK 166
245 #define QM_BADRESETCODE 167
246 #define QM_CHALLENGEDDEPRECATED 168
247 #define QM_CHANLEVSUMMARY 169
248 #define QM_MAILLOCKHEADER 170
249 #define QM_MAILLOCKLINE 171
250 #define QM_MAILLOCKDOESNTEXIST 172
251 #define QM_MAILLOCKALREADYEXISTS 173
252 #define QM_MAILLOCKED 174
253 #define QM_NOACCESSONUSER 175
254 #define QM_NOCHANOPHISTORY 176
255 #define QM_CHANOPHISTORYHEADER 177
256 #define QM_OTHERUSERAUTHEDLIMIT 178
257 #define QM_OTHERUSERAUTHED 179
258
259 /* List of privileged operations */
260
261 #define QPRIV_SUSPENDBYPASS 1
262 #define QPRIV_VIEWCHANFLAGS 100
263 #define QPRIV_VIEWFULLCHANLEV 101
264 #define QPRIV_VIEWFULLWHOIS 102
265 #define QPRIV_VIEWCHANMODES 103
266 #define QPRIV_VIEWAUTOLIMIT 104
267 #define QPRIV_VIEWBANTIMER 105
268 #define QPRIV_VIEWUSERFLAGS 106
269 #define QPRIV_VIEWWELCOME 107
270 #define QPRIV_VIEWCOMMENTS 108
271 #define QPRIV_VIEWEMAIL 109
272
273 #define QPRIV_CHANGECHANFLAGS 200
274 #define QPRIV_CHANGECHANLEV 201
275 #define QPRIV_CHANGECHANMODES 202
276 #define QPRIV_CHANGEAUTOLIMIT 203
277 #define QPRIV_CHANGEBANTIMER 204
278 #define QPRIV_CHANGEUSERFLAGS 205
279 #define QPRIV_CHANGEWELCOME 206
280
281 /* List of access checks */
282
283 #define CA_AUTHED 0x0001
284 #define CA_TOPICPRIV 0x0008
285 #define CA_KNOWN 0x0010
286 #define CA_VOICEPRIV 0x0020
287 #define CA_OPPRIV 0x0040
288 #define CA_MASTERPRIV 0x0080
289 #define CA_OWNERPRIV 0x0100
290 /* SPARE 0x0200 */
291 #define CA_ONCHAN 0x0400
292 #define CA_OFFCHAN 0x0800
293 #define CA_OPPED 0x1000
294 #define CA_DEOPPED 0x2000
295 #define CA_VOICED 0x4000
296 #define CA_DEVOICED 0x8000
297
298 #define CA_NEEDKNOWN (CA_KNOWN|CA_OPPRIV|CA_MASTERPRIV|CA_TOPICPRIV|CA_OWNERPRIV)
299 #define CA_ONCHANREQ (CA_ONCHAN|CA_OPPED|CA_DEOPPED|CA_VOICED|CA_DEVOICED)
300
301
302 /* User flags */
303 /* SPARE FLAG 0x0001 */
304 #define QUFLAG_GLINE 0x0002 /* +g */
305 #define QUFLAG_NOTICE 0x0004 /* +n */
306 /* SPARE FLAG 0x0008 */
307 #define QUFLAG_SUSPENDED 0x0010 /* +z */
308 #define QUFLAG_OPER 0x0020 /* +o */
309 #define QUFLAG_DEV 0x0040 /* +d */
310 #define QUFLAG_PROTECT 0x0080 /* +p */
311 #define QUFLAG_HELPER 0x0100 /* +h */
312 #define QUFLAG_ADMIN 0x0200 /* +a */
313 #define QUFLAG_INFO 0x0400 /* +i */
314 #define QUFLAG_DELAYEDGLINE 0x0800 /* +G */
315 #define QUFLAG_NOAUTHLIMIT 0x1000 /* +L */
316 #define QUFLAG_CLEANUPEXEMPT 0x4000 /* +D */
317 #define QUFLAG_TRUST 0x8000 /* +T */
318 #define QUFLAG_ALL 0xdff6
319
320 #define UIsGline(x) ((x)->flags & QUFLAG_GLINE)
321 #define UIsNotice(x) ((x)->flags & QUFLAG_NOTICE)
322 #define UIsSuspended(x) ((x)->flags & QUFLAG_SUSPENDED)
323 #define UIsOper(x) ((x)->flags & QUFLAG_OPER)
324 #define UIsDev(x) ((x)->flags & QUFLAG_DEV)
325 #define UIsProtect(x) ((x)->flags & QUFLAG_PROTECT)
326 #define UIsHelper(x) ((x)->flags & QUFLAG_HELPER)
327 #define UIsAdmin(x) ((x)->flags & QUFLAG_ADMIN)
328 #define UIsInfo(x) ((x)->flags & QUFLAG_INFO)
329 #define UIsDelayedGline(x) ((x)->flags & QUFLAG_DELAYEDGLINE)
330 #define UIsNoAuthLimit(x) ((x)->flags & QUFLAG_NOAUTHLIMIT)
331 #define UIsCleanupExempt(x) ((x)->flags & QUFLAG_CLEANUPEXEMPT)
332
333 #define UHasSuspension(x) ((x)->flags & (QUFLAG_GLINE|QUFLAG_DELAYEDGLINE|QUFLAG_SUSPENDED))
334
335 #define UHasHelperPriv(x) ((x)->flags & (QUFLAG_HELPER | QUFLAG_OPER | QUFLAG_ADMIN | QUFLAG_DEV))
336 #define UHasOperPriv(x) ((x)->flags & (QUFLAG_OPER | QUFLAG_ADMIN | QUFLAG_DEV))
337 #define UHasAdminPriv(x) ((x)->flags & (QUFLAG_ADMIN | QUFLAG_DEV))
338
339 #define USetGline(x) ((x)->flags |= QUFLAG_GLINE)
340 #define USetNotice(x) ((x)->flags |= QUFLAG_NOTICE)
341 #define USetSuspended(x) ((x)->flags |= QUFLAG_SUSPENDED)
342 #define USetOper(x) ((x)->flags |= QUFLAG_OPER)
343 #define USetDev(x) ((x)->flags |= QUFLAG_DEV)
344 #define USetProtect(x) ((x)->flags |= QUFLAG_PROTECT)
345 #define USetHelper(x) ((x)->flags |= QUFLAG_HELPER)
346 #define USetAdmin(x) ((x)->flags |= QUFLAG_ADMIN)
347 #define USetInfo(x) ((x)->flags |= QUFLAG_INFO)
348 #define USetDelayedGline(x) ((x)->flags |= QUFLAG_DELAYEDGLINE)
349 #define USetNoAuthLimit(x) ((x)->flags |= QUFLAG_NOAUTHLIMIT)
350 #define USetCleanupExempt(x) ((x)->flags |= QUFLAG_CLEANUPEXEMPT)
351 #define USetTrust(x) ((x)->flags |= QUFLAG_TRUST)
352
353 #define UClearGline(x) ((x)->flags &= ~QUFLAG_GLINE)
354 #define UClearNotice(x) ((x)->flags &= ~QUFLAG_NOTICE)
355 #define UClearSuspended(x) ((x)->flags &= ~QUFLAG_SUSPENDED)
356 #define UClearOper(x) ((x)->flags &= ~QUFLAG_OPER)
357 #define UClearDev(x) ((x)->flags &= ~QUFLAG_DEV)
358 #define UClearProtect(x) ((x)->flags &= ~QUFLAG_PROTECT)
359 #define UClearHelper(x) ((x)->flags &= ~QUFLAG_HELPER)
360 #define UClearAdmin(x) ((x)->flags &= ~QUFLAG_ADMIN)
361 #define UClearInfo(x) ((x)->flags &= ~QUFLAG_INFO)
362 #define UClearDelayedGline(x) ((x)->flags &= ~QUFLAG_DELAYEDGLINE)
363 #define UClearNoAuthLimit(x) ((x)->flags &= ~QUFLAG_NOAUTHLIMIT)
364 #define UClearCleanupExempt(x) ((x)->flags &= ~QUFLAG_CLEANUPEXEMPT)
365 #define UClearTrust(x) ((x)->flags &= ~QUFLAG_TRUST)
366
367 /* email */
368 #define MAX_RESEND_TIME 2*3600L /* cooling off period */
369 #define VALID_EMAIL "^[-_.+[:alpha:][:digit:]]+(\\.[-_[:digit:][:alpha:]]+)*@([[:digit:][:alpha:]](-?[[:digit:][:alpha:]])*\\.)+[[:alpha:]]{2}([zmuvtgo]|fo|me|seum|op|ro)?$"
370
371 #define VALID_ACCOUNT_NAME "^[-a-z0-9]*$"
372
373 #define QMAIL_NEWACCOUNT 1 /* new account */
374 #define QMAIL_REQPW 2 /* requestpassword */
375 #define QMAIL_NEWPW 3 /* new password */
376 #define QMAIL_RESET 4 /* reset account */
377 #define QMAIL_NEWEMAIL 5 /* new email address */
378
379
380 /* Channel flags */
381 #define QCFLAG_AUTOOP 0x0001 /* +a */
382 #define QCFLAG_BITCH 0x0002 /* +b */
383 #define QCFLAG_AUTOLIMIT 0x0004 /* +c */
384 #define QCFLAG_ENFORCE 0x0008 /* +e */
385 #define QCFLAG_FORCETOPIC 0x0010 /* +f */
386 #define QCFLAG_AUTOVOICE 0x0020 /* +g */
387 #define QCFLAG_INFO 0x0040 /* +i */
388 #define QCFLAG_JOINED 0x0080 /* +j */
389 #define QCFLAG_KNOWNONLY 0x0100 /* +k */
390 #define QCFLAG_PROTECT 0x0200 /* +p */
391 #define QCFLAG_TOPICSAVE 0x0800 /* +t */
392 #define QCFLAG_VOICEALL 0x1000 /* +v */
393 #define QCFLAG_WELCOME 0x2000 /* +w */
394 #define QCFLAG_SUSPENDED 0x4000 /* +z */
395
396 #define CIsAutoOp(x) ((x)->flags & QCFLAG_AUTOOP)
397 #define CIsBitch(x) ((x)->flags & QCFLAG_BITCH)
398 #define CIsAutoLimit(x) ((x)->flags & QCFLAG_AUTOLIMIT)
399 #define CIsEnforce(x) ((x)->flags & QCFLAG_ENFORCE)
400 #define CIsForceTopic(x) ((x)->flags & QCFLAG_FORCETOPIC)
401 #define CIsAutoVoice(x) ((x)->flags & QCFLAG_AUTOVOICE)
402 #define CIsJoined(x) ((x)->flags & QCFLAG_JOINED)
403 #define CIsKnownOnly(x) ((x)->flags & QCFLAG_KNOWNONLY)
404 #define CIsProtect(x) ((x)->flags & QCFLAG_PROTECT)
405 #define CIsTopicSave(x) ((x)->flags & QCFLAG_TOPICSAVE)
406 #define CIsVoiceAll(x) ((x)->flags & QCFLAG_VOICEALL)
407 #define CIsWelcome(x) ((x)->flags & QCFLAG_WELCOME)
408 #define CIsSuspended(x) ((x)->flags & QCFLAG_SUSPENDED)
409 #define CIsInfo(x) ((x)->flags & QCFLAG_INFO)
410
411 #define CSetAutoOp(x) ((x)->flags |= QCFLAG_AUTOOP)
412 #define CSetBitch(x) ((x)->flags |= QCFLAG_BITCH)
413 #define CSetAutoLimit(x) ((x)->flags |= QCFLAG_AUTOLIMIT)
414 #define CSetEnforce(x) ((x)->flags |= QCFLAG_ENFORCE)
415 #define CSetForceTopic(x) ((x)->flags |= QCFLAG_FORCETOPIC)
416 #define CSetAutoVoice(x) ((x)->flags |= QCFLAG_AUTOVOICE)
417 #define CSetJoined(x) ((x)->flags |= QCFLAG_JOINED)
418 #define CSetKnownOnly(x) ((x)->flags |= QCFLAG_KNOWNONLY)
419 #define CSetProtect(x) ((x)->flags |= QCFLAG_PROTECT)
420 #define CSetTopicSave(x) ((x)->flags |= QCFLAG_TOPICSAVE)
421 #define CSetVoiceAll(x) ((x)->flags |= QCFLAG_VOICEALL)
422 #define CSetWelcome(x) ((x)->flags |= QCFLAG_WELCOME)
423 #define CSetSuspended(x) ((x)->flags |= QCFLAG_SUSPENDED)
424
425 #define CClearAutoOp(x) ((x)->flags &= ~QCFLAG_AUTOOP)
426 #define CClearBitch(x) ((x)->flags &= ~QCFLAG_BITCH)
427 #define CClearAutoLimit(x) ((x)->flags &= ~QCFLAG_AUTOLIMIT)
428 #define CClearEnforce(x) ((x)->flags &= ~QCFLAG_ENFORCE)
429 #define CClearForceTopic(x) ((x)->flags &= ~QCFLAG_FORCETOPIC)
430 #define CClearAutoVoice(x) ((x)->flags &= ~QCFLAG_AUTOVOICE)
431 #define CClearJoined(x) ((x)->flags &= ~QCFLAG_JOINED)
432 #define CClearKnownOnly(x) ((x)->flags &= ~QCFLAG_KNOWNONLY)
433 #define CClearProtect(x) ((x)->flags &= ~QCFLAG_PROTECT)
434 #define CClearTopicSave(x) ((x)->flags &= ~QCFLAG_TOPICSAVE)
435 #define CClearVoiceAll(x) ((x)->flags &= ~QCFLAG_VOICEALL)
436 #define CClearWelcome(x) ((x)->flags &= ~QCFLAG_WELCOME)
437 #define CClearSuspended(x) ((x)->flags &= ~QCFLAG_SUSPENDED)
438
439 #define QCFLAG_USERCONTROL (QCFLAG_AUTOOP|QCFLAG_BITCH|QCFLAG_AUTOLIMIT| \
440 QCFLAG_ENFORCE|QCFLAG_FORCETOPIC|QCFLAG_AUTOVOICE| \
441 QCFLAG_PROTECT|QCFLAG_TOPICSAVE|QCFLAG_VOICEALL| \
442 QCFLAG_WELCOME|QCFLAG_KNOWNONLY)
443
444 #define QCFLAG_ALL 0x7bff
445
446
447 /* Channel user ("chanlev") flags */
448 /* Slightly funny order here: list the "biggest" flags at the
449 * top so we can do sorted "chanlev" output more easily */
450 #define QCUFLAG_OWNER 0x8000 /* +n */
451 #define QCUFLAG_MASTER 0x4000 /* +m */
452 #define QCUFLAG_OP 0x2000 /* +o */
453 #define QCUFLAG_VOICE 0x1000 /* +v */
454 #define QCUFLAG_AUTOOP 0x0001 /* +a */
455 #define QCUFLAG_BANNED 0x0002 /* +b */
456 #define QCUFLAG_DENY 0x0004 /* +d */
457 #define QCUFLAG_AUTOVOICE 0x0008 /* +g */
458 #define QCUFLAG_QUIET 0x0010 /* +q */
459 #define QCUFLAG_TOPIC 0x0040 /* +t */
460 #define QCUFLAG_HIDEWELCOME 0x0080 /* +w */
461 #define QCUFLAG_PROTECT 0x0100 /* +p */
462 #define QCUFLAG_HIDEINFO 0x0200 /* +i */
463 #define QCUFLAG_KNOWN 0x0400 /* +k */
464 #define QCUFLAG_AUTOINVITE 0x0800 /* +j */
465
466 #define QCUFLAG_SIGNIFICANT (QCUFLAG_MASTER|QCUFLAG_OWNER|QCUFLAG_OP)
467
468 #define QCUFLAG_MASTERCON (QCUFLAG_AUTOOP|QCUFLAG_BANNED|QCUFLAG_DENY| \
469 QCUFLAG_GIVE|QCUFLAG_OP|QCUFLAG_QUIET|QCUFLAG_TOPIC| \
470 QCUFLAG_VOICE|QCUFLAG_PROTECT)
471
472 #define QCUFLAG_SELFCON (QCUFLAG_OP | QCUFLAG_VOICE | QCUFLAG_AUTOOP | QCUFLAG_AUTOVOICE | \
473 QCUFLAG_TOPIC | QCUFLAG_HIDEINFO)
474
475 #define QCUFLAGS_PERSONAL (QCUFLAG_HIDEINFO | QCUFLAG_HIDEWELCOME | QCUFLAG_AUTOINVITE)
476
477 #define QCUFLAG_ALL 0xffdf
478
479 #define CUIsOwner(x) ((x)->flags & QCUFLAG_OWNER)
480 #define CUIsMaster(x) ((x)->flags & QCUFLAG_MASTER)
481 #define CUIsOp(x) ((x)->flags & QCUFLAG_OP)
482 #define CUIsVoice(x) ((x)->flags & QCUFLAG_VOICE)
483 #define CUIsAutoOp(x) ((x)->flags & QCUFLAG_AUTOOP)
484 #define CUIsBanned(x) ((x)->flags & QCUFLAG_BANNED)
485 #define CUIsDeny(x) ((x)->flags & QCUFLAG_DENY)
486 #define CUIsAutoVoice(x) ((x)->flags & QCUFLAG_AUTOVOICE)
487 #define CUIsQuiet(x) ((x)->flags & QCUFLAG_QUIET)
488 #define CUIsTopic(x) ((x)->flags & QCUFLAG_TOPIC)
489 #define CUIsHideWelcome(x) ((x)->flags & QCUFLAG_HIDEWELCOME)
490 #define CUIsProtect(x) ((x)->flags & QCUFLAG_PROTECT)
491 #define CUIsHideInfo(x) ((x)->flags & QCUFLAG_HIDEINFO)
492 #define CUIsKnown(x) ((x)->flags & QCUFLAG_KNOWN)
493 #define CUIsAutoInvite(x) ((x)->flags & QCUFLAG_AUTOINVITE)
494
495 #define CUKnown(x) (CUIsKnown(x) || CUHasVoicePriv(x))
496 #define CUHasVoicePriv(x) ((x)->flags & (QCUFLAG_VOICE | QCUFLAG_OP | QCUFLAG_MASTER | QCUFLAG_OWNER))
497 #define CUHasOpPriv(x) ((x)->flags & (QCUFLAG_OP | QCUFLAG_MASTER | QCUFLAG_OWNER))
498 #define CUHasMasterPriv(x) ((x)->flags & (QCUFLAG_MASTER | QCUFLAG_OWNER))
499 #define CUHasTopicPriv(x) ((x)->flags & (QCUFLAG_MASTER | QCUFLAG_OWNER | QCUFLAG_TOPIC))
500
501 #define CUSetOwner(x) ((x)->flags |= QCUFLAG_OWNER)
502 #define CUSetMaster(x) ((x)->flags |= QCUFLAG_MASTER)
503 #define CUSetOp(x) ((x)->flags |= QCUFLAG_OP)
504 #define CUSetVoice(x) ((x)->flags |= QCUFLAG_VOICE)
505 #define CUSetAutoOp(x) ((x)->flags |= QCUFLAG_AUTOOP)
506 #define CUSetBanned(x) ((x)->flags |= QCUFLAG_BANNED)
507 #define CUSetDeny(x) ((x)->flags |= QCUFLAG_DENY)
508 #define CUSetAutoVoice(x) ((x)->flags |= QCUFLAG_AUTOVOICE)
509 #define CUSetQuiet(x) ((x)->flags |= QCUFLAG_QUIET)
510 #define CUSetTopic(x) ((x)->flags |= QCUFLAG_TOPIC)
511 #define CUSetHideWelcome(x) ((x)->flags |= QCUFLAG_HIDEWELCOME)
512 #define CUSetKnown(x) ((x)->flags |= QCUFLAG_KNOWN)
513 #define CUSetAutoInvite(x) ((x)->flags |= QCUFLAG_AUTOINVITE)
514
515 #define CUClearOwner(x) ((x)->flags &= ~QCUFLAG_OWNER)
516 #define CUClearMaster(x) ((x)->flags &= ~QCUFLAG_MASTER)
517 #define CUClearOp(x) ((x)->flags &= ~QCUFLAG_OP)
518 #define CUClearVoice(x) ((x)->flags &= ~QCUFLAG_VOICE)
519 #define CUClearAutoOp(x) ((x)->flags &= ~QCUFLAG_AUTOOP)
520 #define CUClearBanned(x) ((x)->flags &= ~QCUFLAG_BANNED)
521 #define CUClearDeny(x) ((x)->flags &= ~QCUFLAG_DENY)
522 #define CUClearAutoVoice(x) ((x)->flags &= ~QCUFLAG_AUTOVOICE)
523 #define CUClearQuiet(x) ((x)->flags &= ~QCUFLAG_QUIET)
524 #define CUClearTopic(x) ((x)->flags &= ~QCUFLAG_TOPIC)
525 #define CUClearHideWelcome(x) ((x)->flags &= ~QCUFLAG_HIDEWELCOME)
526 #define CUClearKnown(x) ((x)->flags &= ~QCUFLAG_KNOWN)
527 #define CUClearAutoInvite(x) ((x)->flags &= ~QCUFLAG_AUTOINVITE)
528
529 #define QCSTAT_OPCHECK 0x0001 /* Do op check */
530 #define QCSTAT_MODECHECK 0x0002 /* Do mode check */
531 #define QCSTAT_BANCHECK 0x0004 /* Do ban check */
532
533 #define QUSTAT_DEAD 0x8000 /* User has been deleted.. */
534
535 #define QCMD_SECURE 0x0001 /* Must use "user@server" to use this command */
536 #define QCMD_AUTHED 0x0002 /* Only available to authed users */
537 #define QCMD_NOTAUTHED 0x0004 /* Only available to NON-authed users */
538
539 #define QCMD_HELPER 0x0010 /* Only available to helpers */
540 #define QCMD_OPER 0x0020 /* Only available to opers */
541 #define QCMD_ADMIN 0x0040 /* Only available to admins */
542 #define QCMD_DEV 0x0080 /* Only available to developers */
543
544 #define QCMD_ALIAS 0x0100 /* Don't list on SHOWCOMMANDS */
545
546 #define CS_INIT_DB 0x1 /* Loading database.. */
547 #define CS_INIT_NOUSER 0x2 /* Loaded DB, waiting for user to be created */
548 #define CS_INIT_READY 0x3 /* Ready for action! */
549
550 struct regchanuser;
551 struct reguser;
552
553 typedef struct maildomain {
554 #ifdef CS_PARANOID
555 unsigned int maildomain_magic;
556 #endif
557 unsigned int ID;
558 sstring *name;
559 unsigned int count;
560 unsigned int limit;
561 unsigned int actlimit;
562 flag_t flags;
563 struct reguser *users;
564 struct maildomain *parent;
565 struct maildomain *nextbyname;
566 struct maildomain *nextbyID;
567 } maildomain;
568
569 #define MDFLAG_LIMIT 0x0001 /* +l */
570 #define MDFLAG_BANNED 0x0002 /* +b */
571 #define MDFLAG_ACTLIMIT 0x0004 /* +u */
572 #define MDFLAG_ALL 0x0007
573
574 #define MDFLAG_DEFAULT MDFLAG_ACTLIMIT
575
576 #define MDHasLimit(x) ((x)->flags & MDFLAG_LIMIT)
577 #define MDSetLimit(x) ((x)->flags |= MDFLAG_LIMIT)
578 #define MDClearLimit(x) ((x)->flags &= ~MDFLAG_LIMIT)
579 #define MDIsBanned(x) ((x)->flags & MDFLAG_BANNED)
580 #define MDSetBanned(x) ((x)->flags |= MDFLAG_BANNED)
581 #define MDClearBanned(x) ((x)->flags &= ~MDFLAG_BANNED)
582 #define MDHasActLimit(x) ((x)->flags & MDFLAG_ACTLIMIT)
583 #define MDSetActLimit(x) ((x)->flags |= MDFLAG_ACTLIMIT)
584 #define MDClearActLimit(x) ((x)->flags &= ~MDFLAG_ACTLIMIT)
585
586 /* "Q" ban */
587 typedef struct regban {
588 #ifdef CS_PARANOID
589 unsigned int regchanban_magic;
590 #endif
591 unsigned int ID; /* ID in the database */
592 struct chanban *cbp; /* Standard chanban struct */
593 unsigned int setby; /* Who set the ban */
594 time_t expiry; /* When the ban expires */
595 sstring *reason; /* Reason to attach to related kicks */
596 struct regban *next; /* Next ban on this channel */
597 } regban;
598
599 /* Registered channel */
600 typedef struct regchan {
601 #ifdef CS_PARANOID
602 unsigned int regchan_magic;
603 #endif
604 unsigned int ID; /* Unique number from database */
605 chanindex *index; /* Pointer to the channel index record */
606 time_t ltimestamp; /* The last timestamp we saw on this channel */
607
608 flag_t flags; /* Chanflags */
609 flag_t status; /* Runtime status codes */
610 flag_t forcemodes; /* Forced modes */
611 flag_t denymodes; /* Denied modes */
612
613 short limit; /* Limit to enforce if +l is set */
614 short autolimit; /* How many slots to leave when autolimiting */
615 short banstyle; /* Ban style for +b type bans */
616
617 time_t created; /* When the service was added */
618 time_t lastactive; /* When the channel was last "active" */
619 time_t statsreset; /* When the users stats were last reset */
620 time_t ostatsreset; /* When the oper stats were last reset */
621 time_t banduration; /* How long to remove bans after (0=don't) */
622 time_t autoupdate; /* When the autolimit next needs checking */
623 time_t lastbancheck; /* Timestamp of last ban check */
624 time_t lastcountersync; /* When the counters were last synced.. */
625 time_t lastpart; /* When the last user left the channel */
626 time_t suspendtime; /* When the channel was suspended */
627
628 unsigned int founder; /* founder */
629 unsigned int addedby; /* oper adding chan */
630 unsigned int suspendby; /* who suspended chan */
631
632 short chantype; /* What "type" the channel is */
633
634 unsigned int totaljoins; /* Total joins since created */
635 unsigned int tripjoins; /* Total joins since last stats reset */
636 unsigned int otripjoins; /* Total joins since last oper stats reset */
637 unsigned int maxusers; /* Max users since created */
638 unsigned int tripusers; /* Max users since last stats reset */
639 unsigned int otripusers; /* Max users since last oper stats reset */
640
641 sstring *welcome; /* Welcome message */
642 sstring *topic; /* "default" topic set by settopic */
643 sstring *key; /* Key as enforced by +k */
644 sstring *suspendreason; /* Suspend reason */
645 sstring *comment; /* Oper-settable channel comment */
646
647 void *checksched; /* Handle for channel check schedule */
648
649 struct regchanuser *regusers[REGCHANUSERHASHSIZE];
650 struct regban *bans; /* List of bans on the channel */
651
652 char chanopnicks[CHANOPHISTORY][NICKLEN+1]; /* Last CHANOPHISTORY ppl to get ops */
653 unsigned int chanopaccts[CHANOPHISTORY]; /* Which account was responsible for each one */
654 short chanoppos; /* Position in the array */
655 } regchan;
656
657 /* Registered user */
658 typedef struct reguser {
659 #ifdef CS_PARANOID
660 unsigned int reguser_magic;
661 #endif
662 unsigned int ID; /* From the database */
663
664 char username[NICKLEN+1];
665
666 time_t created;
667 time_t lastauth;
668 time_t lastemailchange;
669
670 flag_t flags; /* user flags */
671 flag_t status; /* runtime status */
672 short languageid; /* what language to speak to the user */
673
674 unsigned int suspendby; /* Userid of oper who suspended this user */
675 time_t suspendexp; /* Expiry date of suspension */
676 time_t suspendtime; /* When user was suspended */
677 time_t lockuntil; /* Time until users account is unlocked (pass change, email, etc) */
678
679 char password[PASSLEN+1];
680
681 sstring *localpart;
682 maildomain *domain;
683
684 sstring *email; /* Registered e-mail */
685 sstring *lastemail; /* Last registered e-mail */
686 sstring *lastuserhost; /* Last user@host */
687 sstring *suspendreason; /* Why the account is suspended */
688 sstring *comment; /* Oper-settable user comment */
689 sstring *info; /* User-settable info line */
690
691 struct regchanuser *knownon; /* Which channels this user is known on */
692
693 /* These fields are for the nick protection system */
694 void *checkshd; /* When we're going to check for an imposter */
695 int stealcount; /* How many times we've had to free the nick up */
696 nick *fakeuser; /* If we had to "take" the nick, here's the pointer */
697
698 struct reguser *nextbydomain;
699 struct reguser *nextbyname;
700 struct reguser *nextbyID;
701 } reguser;
702
703 /* Registered channel user */
704 typedef struct regchanuser {
705 #ifdef CS_PARANOID
706 unsigned int regchanuser_magic;
707 #endif
708 struct reguser *user;
709 struct regchan *chan;
710 flag_t flags;
711 time_t changetime; /* Timestamp of last "significant" change */
712 time_t usetime; /* Timestamp of last use */
713 sstring *info; /* User-settable info line */
714 struct regchanuser *nextbyuser;
715 struct regchanuser *nextbychan;
716 } regchanuser;
717
718 typedef struct cslang {
719 char code[3];
720 sstring *name;
721 } cslang;
722
723 typedef struct cmdsummary {
724 sstring *def;
725 sstring *bylang[MAXLANG];
726 char *defhelp;
727 } cmdsummary;
728
729 typedef struct activeuser {
730 #ifdef CS_PARANOID
731 unsigned int activeuser_magic;
732 #endif
733 unsigned short authattempts; /* number of times user has attempted to auth */
734 unsigned short helloattempts; /* number of times user has attempted to hello... */
735 unsigned char entropy[ENTROPYLEN]; /* entropy used for challengeauth */
736 time_t entropyttl;
737 struct activeuser *next; /* purely for keeping track of free, but not free'd structures */
738 } activeuser;
739
740 typedef struct maillock {
741 #ifdef CS_PARANOID
742 unsigned int maillock_magic;
743 #endif
744 unsigned int id;
745 sstring *pattern;
746 sstring *reason;
747 unsigned int createdby;
748 time_t created;
749 struct maillock *next;
750 } maillock;
751
752 #ifdef CS_PARANOID
753
754 #define REGUSERMAGIC 0x4d42de03
755 #define REGCHANMAGIC 0x5bf2aa30
756 #define REGCHANUSERMAGIC 0x19628b63
757 #define REGCHANBANMAGIC 0x5a6f555a
758 #define ACTIVEUSERMAGIC 0x897f98a0
759 #define MAILDOMAINMAGIC 0x27cde46f
760 #define MAILLOCKMAGIC 0x3c81d762
761
762 #define verifyreguser(x) assert((x)->reguser_magic == REGUSERMAGIC)
763 #define verifyregchan(x) assert((x)->regchan_magic == REGCHANMAGIC)
764 #define verifyregchanuser(x) assert((x)->regchanuser_magic == REGCHANUSERMAGIC)
765 #define verifyregchanban(x) assert((x)->regchanban_magic == REGCHANBANMAGIC)
766 #define verifyactiveuser(x) assert((x)->activeuser_magic == ACTIVEUSERMAGIC)
767 #define verifymaildomain(x) assert((x)->maildomain_magic == MAILDOMAINMAGIC)
768 #define verifymaillock(x) assert((x)->maillock_magic == MAILLOCKMAGIC)
769
770 #define tagreguser(x) ((x)->reguser_magic = REGUSERMAGIC)
771 #define tagregchan(x) ((x)->regchan_magic = REGCHANMAGIC)
772 #define tagregchanuser(x) ((x)->regchanuser_magic = REGCHANUSERMAGIC)
773 #define tagregchanban(x) ((x)->regchanban_magic = REGCHANBANMAGIC)
774 #define tagactiveuser(x) ((x)->activeuser_magic = ACTIVEUSERMAGIC)
775 #define tagmaildomain(x) ((x)->maildomain_magic = MAILDOMAINMAGIC)
776 #define tagmaillock(x) ((x)->maillock_magic = MAILLOCKMAGIC)
777 #else
778
779 #define verifyreguser(x)
780 #define verifyregchan(x)
781 #define verifyregchanuser(x)
782 #define verifyregchanban(x)
783 #define verifyactiveuser(x)
784 #define verifymaildomain(x)
785 #define verifymaillock(x)
786
787 #define tagreguser(x)
788 #define tagregchan(x)
789 #define tagregchanuser(x)
790 #define tagregchanban(x)
791 #define tagactiveuser(x)
792 #define tagmaildomain(x)
793 #define tagmaillock(x)
794
795 #endif
796
797 #define getactiveuserfromnick(x) ((activeuser*)(x)->exts[chanservnext])
798 #define getreguserfromnick(x) ((x)->auth?(reguser *)(x)->auth->exts[chanservaext]:NULL)
799
800 /* Global variables for chanserv module */
801 extern unsigned int lastuserID;
802 extern unsigned int lastchannelID;
803 extern unsigned int lastbanID;
804 extern unsigned int lastdomainID;
805 extern unsigned int lastmaillockID;
806
807 extern int chanserv_init_status;
808 extern int chanservdb_ready;
809 extern PQModuleIdentifier q9pqid, q9apqid, q9cpqid, q9upqid;
810
811 extern maildomain *maildomainnametable[MAILDOMAINHASHSIZE];
812 extern maildomain *maildomainIDtable[MAILDOMAINHASHSIZE];
813
814 extern reguser *regusernicktable[REGUSERHASHSIZE];
815 extern reguser *deadusers;
816
817 extern nick *chanservnick;
818 extern int chanservext;
819 extern int chanservnext;
820 extern int chanservaext;
821
822 extern cslang *cslanguages[MAXLANG];
823 extern unsigned int cslangcount;
824
825 extern sstring *csmessages[MAXLANG][MAXMESSAGES];
826 extern char *defaultmessages[MAXMESSAGES];
827
828 extern const flag rcflags[];
829 extern const flag rcuflags[];
830 extern const flag ruflags[];
831 extern const flag mdflags[];
832
833 extern CommandTree *cscommands;
834
835 extern sstring **chantypes;
836
837 extern maillock *maillocks;
838
839 /* Function prototypes */
840
841 /* chanserv.c */
842 void chanserv_finalinit();
843
844 /* chanservalloc.c */
845 void chanservallocinit();
846 void csfreeall();
847 regchan *getregchan();
848 void freeregchan(regchan *rcp);
849 reguser *getreguser();
850 void freereguser(reguser *rup);
851 regchanuser *getregchanuser();
852 void freeregchanuser(regchanuser *rcup);
853 regban *getregban();
854 void freeregban(regban *rbp);
855 activeuser *getactiveuser();
856 void freeactiveuser(activeuser *aup);
857 maildomain *getmaildomain();
858 void freemaildomain(maildomain *mdp);
859 maillock *getmaillock();
860 void freemaillock(maillock *mlp);
861
862 /* chanservhash.c */
863 void chanservhashinit();
864 void addregusertohash(reguser *rup);
865 reguser *findreguserbyID(unsigned int ID);
866 reguser *findreguserbynick(const char *nick);
867 reguser *findreguser(nick *sender, const char *str);
868 void removereguserfromhash(reguser *rup);
869 void addregchantohash(regchan *rcp);
870 regchan *findregchanbyID(unsigned int ID);
871 regchan *findregchanbyname(const char *name);
872 void removeregchanfromhash(regchan *rcp);
873 void addregusertochannel(regchanuser *rcup);
874 regchanuser *findreguseronchannel(regchan *rcp, reguser *rup);
875 void delreguserfromchannel(regchan *rcp, reguser *rup);
876 void addmaildomaintohash(maildomain *mdp);
877 maildomain *findmaildomainbyID(unsigned int ID);
878 maildomain *findmaildomainbydomain(char *domain);
879 maildomain *findmaildomainbyemail(char *email);
880 maildomain *findorcreatemaildomain(char *email);
881 maildomain *findnearestmaildomain(char *domain);
882 void removemaildomainfromhash(maildomain *mdp);
883 void addregusertomaildomain(reguser *rup, maildomain *mdp);
884 void delreguserfrommaildomain(reguser *rup, maildomain *mdp);
885 reguser *findreguserbyemail(const char *email);
886
887 /* chanservdb.c */
888 int chanservdbinit();
889 void loadmessages();
890 void loadcommandsummary(Command *cmd);
891 void chanservdbclose();
892 void csdb_updatetopic(regchan *rcp);
893 void csdb_updatelastjoin(regchanuser *rcup);
894 void csdb_updateauthinfo(reguser *rup);
895 void csdb_updatechannel(regchan *rcp);
896 void csdb_createchannel(regchan *rcp);
897 void csdb_deletechannel(regchan *rcp);
898 void csdb_deleteuser(reguser *rup);
899 void csdb_updatechannelcounters(regchan *rcp);
900 void csdb_updatechanneltimestamp(regchan *rcp);
901 void csdb_updatechanuser(regchanuser *rcup);
902 void csdb_createchanuser(regchanuser *rcup);
903 void csdb_deletechanuser(regchanuser *rcup);
904 void csdb_createuser(reguser *rup);
905 void csdb_updateuser(reguser *rup);
906 void csdb_createban(regchan *rcp, regban *rbp);
907 void csdb_deleteban(regban *rbp);
908 void csdb_updateban(regchan *rcp, regban *rbp);
909 char *csdb_gethelpstr(char *command, int language);
910 void csdb_createmail(reguser *rup, int type);
911 void csdb_dohelp(nick *np, Command *cmd);
912
913 #define q9asyncquery(handler, tag, format, ...) pqasyncqueryi(q9pqid, handler, tag, format , ##__VA_ARGS__)
914 #define q9a_asyncquery(handler, tag, format, ...) pqasyncqueryi(q9apqid, handler, tag, format , ##__VA_ARGS__)
915 #define q9u_asyncquery(handler, tag, format, ...) pqasyncqueryi(q9upqid, handler, tag, format , ##__VA_ARGS__)
916 #define q9c_asyncquery(handler, tag, format, ...) pqasyncqueryi(q9cpqid, handler, tag, format , ##__VA_ARGS__)
917
918 /* chanservcrypto.c */
919 typedef int (*CRAlgorithm)(char *, const char *, const char *, const char *);
920 void chanservcryptoinit(void);
921 void chanservcryptofree(void);
922 void cs_getrandbytes(unsigned char *buf, size_t bytes);
923 char *cs_calcchallenge(const unsigned char *entropy);
924 CRAlgorithm cs_cralgorithm(const char *algorithm);
925 const char *cs_cralgorithmlist(void);
926 int cs_checkhashpass(const char *username, const char *password, const char *junk, const char *hash);
927 char *csc_generateresetcode(time_t lockuntil, char *username);
928
929 /* chanservuser.c */
930 void chanservreguser(void *arg);
931 void chanservjoinchan(channel *cp);
932 #define chanservsendmessage(np, fmt, args...) chanservsendmessage_real(np, 0, fmt , ## args)
933 #define chanservsendmessageoneline(np, fmt, args...) chanservsendmessage_real(np, 1, fmt , ## args)
934 void chanservsendmessage_real(nick *np, int oneline, char *message, ... );
935 void chanservwallmessage(char *message, ... );
936 void chanservcommandinit();
937 void chanservcommandclose();
938 void chanservstdmessage(nick *np, int messageid, ... );
939 void chanservaddcommand(char *command, int flags, int maxparams, CommandHandler handler, char *description, const char *help);
940 void chanservremovecommand(char *command, CommandHandler handler);
941 void chanservaddctcpcommand(char *command, CommandHandler hander);
942 void chanservremovectcpcommand(char *command, CommandHandler handler);
943 void chanservkillstdmessage(nick *target, int messageid, ... );
944 int checkpassword(reguser *rup, const char *pass);
945 int setpassword(reguser *rup, const char *pass);
946 /*reguser *getreguserfromnick(nick *np);
947 activeuser *getactiveuserfromnick(nick *np);*/
948 void cs_checknick(nick *np);
949 void cs_checkchanmodes(channel *cp);
950 void cs_docheckchanmodes(channel *cp, modechanges *changes);
951 void cs_docheckopvoice(channel *cp, modechanges *changes);
952 void cs_checkbans(channel *cp);
953 void cs_schedupdate(chanindex *cip, int mintime, int maxtime);
954 void cs_timerfunc(void *arg);
955 void cs_removechannel(regchan *rcp);
956 void cs_doallautomodes(nick *np);
957 void cs_checknickbans(nick *np);
958 void cs_setregban(chanindex *cip, regban *rbp);
959 int cs_bancheck(nick *np, channel *cp);
960 void cs_banuser(modechanges *changes, chanindex *cip, nick *np, const char *reason);
961 void cs_removeuser(reguser *rup);
962 int checkresponse(reguser *rup, const unsigned char *entropy, const char *response, CRAlgorithm algorithm);
963 int checkhashpass(reguser *rup, const char *junk, const char *hash);
964 flag_t cs_sanitisechanlev(flag_t flags);
965 typedef int (*UnbanFN)(void *arg, struct chanban *ban);
966 int cs_unbanfn(nick *sender, chanindex *cip, UnbanFN fn, void *arg, int removepermbans, int abortonfailure);
967 void cs_logchanop(regchan *rcp, char *nick, reguser *rup);
968
969 /* chanservstdcmds.c */
970 int cs_doshowcommands(void *source, int cargc, char **cargv);
971 int cs_dohelp(void *source, int cargc, char **cargv);
972 int cs_doquit(void *source, int cargc, char **cargv);
973 int cs_dorename(void *source, int cargc, char **cargv);
974 int cs_dorehash(void *source, int cargc, char **cargv);
975 int cs_doversion(void *source, int cargc, char **cargv);
976 int cs_doctcpping(void *source, int cargc, char **cargv);
977 int cs_doctcpversion(void *source, int cargc, char **cargv);
978 int cs_doctcpgender(void *source, int cargc, char **cargv);
979 int cs_sendhelp(nick *sender, char *cmd, int oneline);
980
981 /* chanservnetevents.c */
982 void cs_handlenick(int hooknum, void *arg);
983 void cs_handlesethost(int hooknum, void *arg);
984 void cs_handlelostnick(int hooknum, void *arg);
985 void cs_handlenewchannel(int hooknum, void *arg);
986 void cs_handlelostchannel(int hooknum, void *arg);
987 void cs_handlejoin(int hooknum, void *arg);
988 void cs_handlemodechange(int hooknum, void *arg);
989 void cs_handleburst(int hooknum, void *arg);
990 void cs_handletopicchange(int hooknum, void *arg);
991 void cs_handleopchange(int hooknum, void *arg);
992 void cs_handlenewban(int hooknum, void *arg);
993 void cs_handlechanlostuser(int hooknum, void *arg);
994
995 /* chanservmessages.c */
996 void initmessages();
997
998 /* chanservprivs.c */
999 int cs_privcheck(int privnum, nick *np);
1000 chanindex *cs_checkaccess(nick *np, const char *chan, unsigned int flags, chanindex *cip, const char *cmdname, int priv, int quiet);
1001
1002 /* chanservlog.c */
1003 void cs_initlog();
1004 void cs_closelog();
1005 void cs_log(nick *np, char *event, ...);
1006
1007 /* chanservdump.c */
1008 int dumplastjoindata(const char *filename);
1009 int readlastjoindata(const char *filename);
1010
1011 /* chanservschedule.c */
1012 void chanservdgline(void *arg);
1013
1014 /* authlib.c */
1015 int csa_checkeboy(nick *sender, char *eboy);
1016 void csa_createrandompw(char *pw, int n);
1017 int csa_checkthrottled(nick *sender, reguser *rup, char *s);
1018
1019 /* chanservdb_updates.c */
1020 void csdb_updateauthinfo(reguser *rup);
1021 void csdb_updatelastjoin(regchanuser *rcup);
1022 void csdb_updatetopic(regchan *rcp);
1023 void csdb_updatechannel(regchan *rcp);
1024 void csdb_updatechannelcounters(regchan *rcp);
1025 void csdb_updatechanneltimestamp(regchan *rcp);
1026 void csdb_createchannel(regchan *rcp);
1027 void csdb_deletechannel(regchan *rcp);
1028 void csdb_deleteuser(reguser *rup);
1029 void csdb_updateuser(reguser *rup);
1030 void csdb_createuser(reguser *rup);
1031 void csdb_updatechanuser(regchanuser *rcup);
1032 void csdb_createchanuser(regchanuser *rcup);
1033 void csdb_deletechanuser(regchanuser *rcup);
1034 void csdb_createban(regchan *rcp, regban *rbp);
1035 void csdb_deleteban(regban *rbp);
1036 void csdb_createmail(reguser *rup, int type);
1037 void csdb_deletemaildomain(maildomain *mdp);
1038 void csdb_createmaildomain(maildomain *mdp);
1039 void csdb_updatemaildomain(maildomain *mdp);
1040 void csdb_chanlevhistory_insert(regchan *rcp, nick *np, reguser *trup, flag_t oldflags, flag_t newflags);
1041 void csdb_accounthistory_insert(nick *np, char *oldpass, char *newpass, sstring *oldemail, sstring *newemail);
1042 void csdb_cleanuphistories();
1043 void csdb_deletemaillock(maillock *mlp);
1044 void csdb_createmaillock(maillock *mlp);
1045 void csdb_updatemaillock(maillock *mlp);
1046
1047 #endif