]> jfr.im git - irc/quakenet/newserv.git/blame - nick/nick.h
Add eXtended service broadcast module (allows sending of authflags without ircd support).
[irc/quakenet/newserv.git] / nick / nick.h
CommitLineData
c86edd1d
Q
1/* nick.h */
2
3#ifndef __NICK_H
4#define __NICK_H
5
6#include "../lib/sstring.h"
7#include "../irc/irc_config.h"
8#include "../lib/flags.h"
9#include "../lib/array.h"
10#include "../server/server.h"
11#include "../lib/base64.h"
526e7c1d 12#include "../lib/irc_ipv6.h"
024c3d57 13#include "../patricia/patricia.h"
57583275 14
15#include "../authext/authext.h"
16
c86edd1d
Q
17#include <time.h>
18
42612890 19#ifndef MAXNICKEXTS
27ce0548 20#define MAXNICKEXTS 6
42612890 21#endif
c86edd1d
Q
22
23#define UMODE_INV 0x0001
24#define UMODE_WALLOPS 0x0002
25#define UMODE_DEBUG 0x0004
26#define UMODE_OPER 0x0008
27#define UMODE_SERVICE 0x0010
28#define UMODE_XOPER 0x0020
29#define UMODE_DEAF 0x0040
30#define UMODE_ACCOUNT 0x0080
31#define UMODE_HIDECHAN 0x0100
32#define UMODE_HIDEHOST 0x0200
33#define UMODE_SETHOST 0x0400
34#define UMODE_REGPRIV 0x0800
35#define UMODE_HIDEIDLE 0x1000
e98d808a 36#define UMODE_PARANOID 0x2000
c86edd1d 37
e98d808a 38#define UMODE_ALL 0x3FFF
c86edd1d 39
c153c0dc
CP
40#define AFLAG_STAFF 0x0001
41#define AFLAG_DEVELOPER 0x0002
42
c86edd1d
Q
43#define IsInvisible(x) ((x)->umodes & UMODE_INV)
44#define IsWallops(x) ((x)->umodes & UMODE_WALLOPS)
45#define IsDebug(x) ((x)->umodes & UMODE_DEBUG)
46#define IsOper(x) ((x)->umodes & UMODE_OPER)
47#define IsService(x) ((x)->umodes & UMODE_SERVICE)
48#define IsXOper(x) ((x)->umodes & UMODE_XOPER)
49#define IsDeaf(x) ((x)->umodes & UMODE_DEAF)
50#define IsAccount(x) ((x)->umodes & UMODE_ACCOUNT)
51#define IsHideChan(x) ((x)->umodes & UMODE_HIDECHAN)
52#define IsHideHost(x) ((x)->umodes & UMODE_HIDEHOST)
53#define IsSetHost(x) ((x)->umodes & UMODE_SETHOST)
54#define IsRegPriv(x) ((x)->umodes & UMODE_REGPRIV)
55#define IsHideIdle(x) ((x)->umodes & UMODE_HIDEIDLE)
e98d808a 56#define IsParanoid(x) ((x)->umodes & UMODE_PARANOID)
c86edd1d
Q
57
58#define SetInvisible(x) ((x)->umodes |= UMODE_INV)
59#define SetWallops(x) ((x)->umodes |= UMODE_WALLOPS)
60#define SetDebug(x) ((x)->umodes |= UMODE_DEBUG)
61#define SetOper(x) ((x)->umodes |= UMODE_OPER)
62#define SetService(x) ((x)->umodes |= UMODE_SERVICE)
63#define SetXOper(x) ((x)->umodes |= UMODE_XOPER)
64#define SetDeaf(x) ((x)->umodes |= UMODE_DEAF)
65#define SetAccount(x) ((x)->umodes |= UMODE_ACCOUNT)
66#define SetHideChan(x) ((x)->umodes |= UMODE_HIDECHAN)
67#define SetHideHost(x) ((x)->umodes |= UMODE_HIDEHOST)
68#define SetSetHost(x) ((x)->umodes |= UMODE_SETHOST)
69#define SetRegPriv(x) ((x)->umodes |= UMODE_REGPRIV)
70#define SetHideIdle(x) ((x)->umodes |= UMODE_HIDEIDLE)
e98d808a 71#define SetParanoid(x) ((x)->umodes |= UMODE_PARANOID)
c86edd1d
Q
72
73#define ClearInvisible(x) ((x)->umodes &= ~UMODE_INV)
74#define ClearWallops(x) ((x)->umodes &= ~UMODE_WALLOPS)
75#define ClearDebug(x) ((x)->umodes &= ~UMODE_DEBUG)
76#define ClearOper(x) ((x)->umodes &= ~UMODE_OPER)
77#define ClearService(x) ((x)->umodes &= ~UMODE_SERVICE)
78#define ClearXOper(x) ((x)->umodes &= ~UMODE_XOPER)
79#define ClearDeaf(x) ((x)->umodes &= ~UMODE_DEAF)
80#define ClearAccount(x) ((x)->umodes &= ~UMODE_ACCOUNT)
81#define ClearHideChan(x) ((x)->umodes &= ~UMODE_HIDECHAN)
82#define ClearHideHost(x) ((x)->umodes &= ~UMODE_HIDEHOST)
83#define ClearSetHost(x) ((x)->umodes &= ~UMODE_SETHOST)
84#define ClearRegPriv(x) ((x)->umodes &= ~UMODE_REGPRIV)
85#define ClearHideIdle(x) ((x)->umodes &= ~UMODE_HIDEIDLE)
e98d808a 86#define ClearParanoid(x) ((x)->umodes &= ~UMODE_PARANOID)
c86edd1d 87
c153c0dc
CP
88#define IsStaff(x) ((x)->umodes & AFLAG_STAFF)
89#define IsDeveloper(x) ((x)->umodes & AFLAG_DEVELOPER)
90
91#define SetStaff(x) ((x)->umodes |= AFLAG_STAFF)
92#define SetDeveloper(x) ((x)->umodes |= AFLAG_DEVELOPER)
93
94#define ClearStaff(x) ((x)->umodes &= ~AFLAG_STAFF)
95#define ClearDeveloper(x) ((x)->umodes &= ~AFLAG_DEVELOPER)
96
c86edd1d
Q
97typedef struct host {
98 sstring *name;
99 int clonecount;
100 unsigned int marker;
101 struct nick *nicks;
102 struct host *next;
103} host;
104
105typedef struct realname {
106 sstring *name;
107 int usercount;
108 unsigned int marker;
109 struct nick *nicks;
110 struct realname *next;
111} realname;
112
113typedef struct nick {
114 char nick[NICKLEN+1];
115 long numeric;
116 char ident[USERLEN+1];
117 host *host;
118 realname *realname;
119 sstring *shident; /* +h users: fake ident/host goes here */
120 sstring *sethost;
121 flag_t umodes;
122 char authname[ACCOUNTLEN+1];
47657339 123 authname *auth; /* This requires User ID numbers to work */
c86edd1d
Q
124 time_t timestamp;
125 time_t accountts;
526e7c1d 126 patricia_node_t *ipnode;
c86edd1d
Q
127 unsigned int marker;
128 struct nick *next;
129 struct nick *nextbyhost;
130 struct nick *nextbyrealname;
47657339 131 struct nick *nextbyauthname;
c86edd1d
Q
132 /* These are extensions only used by other modules */
133 array *channels;
134 void *exts[MAXNICKEXTS];
135} nick;
136
526e7c1d
P
137#define p_ipaddr ipnode->prefix->sin
138
c86edd1d
Q
139#define NICKHASHSIZE 60000
140#define HOSTHASHSIZE 40000
141#define REALNAMEHASHSIZE 40000
142
143extern nick *nicktable[NICKHASHSIZE];
144extern nick **servernicks[MAXSERVERS];
145extern host *hosttable[HOSTHASHSIZE];
146extern realname *realnametable[REALNAMEHASHSIZE];
147extern const flag umodeflags[];
c153c0dc 148extern const flag accountflags[];
c86edd1d
Q
149
150#define MAXNUMERIC 0x3FFFFFFF
151
152#define homeserver(x) (((x)>>18)&(MAXSERVERS-1))
153#define gethandlebynumericunsafe(x) (&(servernicks[homeserver(x)][(x)&(serverlist[homeserver(x)].maxusernum)]))
154#define getnickbynumericunsafe(x) (servernicks[homeserver(x)][(x)&(serverlist[homeserver(x)].maxusernum)])
155#define getnickbynumericstr(x) (getnickbynumeric(numerictolong((x),5)))
156#define gethandlebynumeric(x) ((serverlist[homeserver(x)].linkstate==LS_INVALID) ? NULL : \
157 (gethandlebynumericunsafe(x)))
158#define getnickbynumeric(x) ((gethandlebynumeric(x)==NULL)?NULL: \
159 ((*gethandlebynumeric(x)==NULL)?NULL: \
160 (((*gethandlebynumeric(x))->numeric==(x&MAXNUMERIC))?(*gethandlebynumeric(x)):NULL)))
161
162/* nickalloc.c functions */
163void initnickalloc();
164realname *newrealname();
165void freerealname(realname *rn);
166nick *newnick();
167void freenick (nick *np);
168host *newhost();
169void freehost (host *hp);
170
171/* nick.c functions */
172void handleserverchange(int hooknum, void *arg);
173void deletenick(nick *np);
174void addnicktohash(nick *np);
175void removenickfromhash(nick *np);
176nick *getnickbynick(const char *nick);
177int registernickext(const char *name);
178int findnickext(const char *name);
179void releasenickext(int index);
180char *visiblehostmask(nick *np, char *buf);
28252fef 181char *visibleuserhost(nick *np, char *buf);
c86edd1d
Q
182
183/* nickhandlers.c functions */
184int handlenickmsg(void *source, int cargc, char **cargv);
185int handlequitmsg(void *source, int cargc, char **cargv);
186int handlekillmsg(void *source, int cargc, char **cargv);
187int handleusermodemsg(void *source, int cargc, char **cargv);
188int handlewhoismsg(void *source, int cargc, char **cargv);
189int handleaccountmsg(void *source, int cargc, char **cargv);
190int handlestatsmsg(void *source, int cargc, char **cargv);
6885ae9c 191int handleprivmsg(void *source, int cargc, char **cargv);
c86edd1d
Q
192
193/* These functions have been replaced by macros
194nick **gethandlebynumeric(long numeric);
195nick *getnickbynumeric(long numeric);
196nick *getnickbynumericstr(char *numericstr);
197*/
198
199/* nickhelpers.c functions */
200void initnickhelpers();
707c5824 201void fininickhelpers();
c86edd1d
Q
202host *findhost(const char *hostname);
203host *findorcreatehost(const char *hostname);
204void releasehost(host *hp);
205realname *findrealname(const char *name);
206realname *findorcreaterealname(const char *name);
207void releaserealname(realname *rnp);
208
209unsigned int nexthostmarker();
210unsigned int nextrealnamemarker();
211unsigned int nextnickmarker();
212
213#endif