]> jfr.im git - irc/quakenet/snircd.git/blame - include/channel.h
seems snircd also needs gline_resend updated - it was using ircu .12 gline format...
[irc/quakenet/snircd.git] / include / channel.h
CommitLineData
189935b1 1/*
2 * IRC - Internet Relay Chat, ircd/channel.h
3 * Copyright (C) 1990 Jarkko Oikarinen
4 * Copyright (C) 1996 - 1997 Carlo Wood
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2, or (at your option)
9 * any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 */
20/** @file
21 * @brief Channel management and maintenance.
22 * @version $Id: channel.h,v 1.55 2005/09/27 02:41:57 entrope Exp $
23 */
24#ifndef INCLUDED_channel_h
25#define INCLUDED_channel_h
26#ifndef INCLUDED_ircd_defs_h
27#include "ircd_defs.h" /* NICKLEN */
28#endif
29#ifndef INCLUDED_sys_types_h
30#include <sys/types.h>
31#define INCLUDED_sys_types_h
32#endif
33#ifndef INCLUDED_res_h
34#include "res.h"
35#endif
36
37struct SLink;
38struct Client;
39
40/*
41 * General defines
42 */
43
44#define MAXMODEPARAMS 6 /**< Maximum number of mode parameters */
45#define MODEBUFLEN 200 /**< Maximum length of a mode */
46
47#define KEYLEN 23 /**< Maximum length of a key */
48#define CHANNELLEN 200 /**< Maximum length of a channel */
49
50#define MAXJOINARGS 15 /**< number of slots for join buffer */
51#define STARTJOINLEN 10 /**< fuzzy numbers */
52#define STARTCREATELEN 20
53
54/*
55 * Macro's
56 */
57
58#define ChannelExists(n) (0 != FindChannel(n))
59
60#define CHFL_CHANOP 0x0001 /**< Channel operator */
61#define CHFL_VOICE 0x0002 /**< the power to speak */
62#define CHFL_DEOPPED 0x0004 /**< Is de-opped by a server */
63#define CHFL_SERVOPOK 0x0008 /**< Server op allowed */
64#define CHFL_ZOMBIE 0x0010 /**< Kicked from channel */
65#define CHFL_BURST_JOINED 0x0100 /**< Just joined by net.junction */
66#define CHFL_BANVALID 0x0800 /**< CHFL_BANNED bit is valid */
67#define CHFL_BANNED 0x1000 /**< Channel member is banned */
68#define CHFL_SILENCE_IPMASK 0x2000 /**< silence mask is a CIDR */
69#define CHFL_BURST_ALREADY_OPPED 0x04000
70 /**< In oob BURST, but was already
71 * joined and opped
72 */
73#define CHFL_BURST_ALREADY_VOICED 0x08000
74 /**, In oob BURST, but was already
75 * joined and voiced
76 */
77#define CHFL_CHANNEL_MANAGER 0x10000 /**< Set when creating channel or using
78 * Apass
79 */
80#define CHFL_USER_PARTING 0x20000 /**< User is already parting that
81 * channel
82 */
83#define CHFL_DELAYED 0x40000 /**< User's join message is delayed */
84
85#define CHFL_OVERLAP (CHFL_CHANOP | CHFL_VOICE)
86#define CHFL_BANVALIDMASK (CHFL_BANVALID | CHFL_BANNED)
87#define CHFL_VOICED_OR_OPPED (CHFL_CHANOP | CHFL_VOICE)
88
89/* Channel Visibility macros */
90
91#define MODE_CHANOP CHFL_CHANOP /**< +o Chanop */
92#define MODE_VOICE CHFL_VOICE /**< +v Voice */
93#define MODE_PRIVATE 0x0004 /**< +p Private */
94#define MODE_SECRET 0x0008 /**< +s Secret */
95#define MODE_MODERATED 0x0010 /**< +m Moderated */
96#define MODE_TOPICLIMIT 0x0020 /**< +t Topic Limited */
97#define MODE_INVITEONLY 0x0040 /**< +i Invite only */
98#define MODE_NOPRIVMSGS 0x0080 /**< +n No Private Messages */
99#define MODE_KEY 0x0100 /**< +k Keyed */
100#define MODE_BAN 0x0200 /**< +b Ban */
101#define MODE_LIMIT 0x0400 /**< +l Limit */
102#define MODE_REGONLY 0x0800 /**< Only +r users may join */
103#define MODE_DELJOINS 0x1000 /**< New join messages are delayed */
a378e1b2 104#define MODE_NOCOLOUR 0x2000 /**< No mIRC/ANSI colors/bold */
105#define MODE_NOCTCP 0x4000 /**< No channel CTCPs */
106#define MODE_NONOTICE 0x8000 /**< No channel notices */
189935b1 107#define MODE_SAVE 0x20000 /**< save this mode-with-arg 'til
108 * later */
109#define MODE_FREE 0x40000 /**< string needs to be passed to
110 * MyFree() */
111#define MODE_BURSTADDED 0x80000 /**< channel was created by a BURST */
112#define MODE_UPASS 0x100000
113#define MODE_APASS 0x200000
114#define MODE_WASDELJOINS 0x400000 /**< Not DELJOINS, but some joins
115 * pending */
149c0c9f 116#define MODE_NOQUITPARTS 0x800000
117
189935b1 118/** mode flags which take another parameter (With PARAmeterS)
119 */
120#define MODE_WPARAS (MODE_CHANOP|MODE_VOICE|MODE_BAN|MODE_KEY|MODE_LIMIT|MODE_APASS|MODE_UPASS)
121
122/** Available Channel modes */
123#define infochanmodes feature_bool(FEAT_OPLEVELS) ? "AbiklmnopstUvrD" : "biklmnopstvrD"
124/** Available Channel modes that take parameters */
125#define infochanmodeswithparams feature_bool(FEAT_OPLEVELS) ? "AbkloUv" : "bklov"
126
127#define HoldChannel(x) (!(x))
128/** name invisible */
129#define SecretChannel(x) ((x) && ((x)->mode.mode & MODE_SECRET))
130/** channel not shown but names are */
131#define HiddenChannel(x) ((x) && ((x)->mode.mode & MODE_PRIVATE))
132/** channel visible */
133#define ShowChannel(v,c) (PubChannel(c) || find_channel_member((v),(c)))
134#define PubChannel(x) ((!x) || ((x)->mode.mode & \
135 (MODE_PRIVATE | MODE_SECRET)) == 0)
136
137#define IsGlobalChannel(name) (*(name) == '#')
138#define IsLocalChannel(name) (*(name) == '&')
139#define IsChannelName(name) (IsGlobalChannel(name) || IsLocalChannel(name))
140
141typedef enum ChannelGetType {
142 CGT_NO_CREATE,
143 CGT_CREATE
144} ChannelGetType;
145
146/* used in SetMode() in channel.c and m_umode() in s_msg.c */
147
148#define MODE_NULL 0
149#define MODE_ADD 0x40000000
150#define MODE_DEL 0x20000000
151
152/* used in ListingArgs.flags */
153
154#define LISTARG_TOPICLIMITS 0x0001
155#define LISTARG_SHOWSECRET 0x0002
156#define LISTARG_NEGATEWILDCARD 0x0004
157
158/**
159 * Maximum acceptable lag time in seconds: A channel younger than
160 * this is not protected against hacking admins.
161 * Mainly here to check if the TS clocks really sync (otherwise this
162 * will start causing HACK notices.
163 * This value must be the same on all servers.
164 *
165 * This value has been increased to 1 day in order to distinguish this
166 * "normal" type of HACK wallops / desyncs, from possiblity still
167 * existing bugs.
168 */
169#define TS_LAG_TIME 86400
170
171/**
172 * A Magic TS that is used for channels that are created by JOIN,
173 * a channel with this TS accepts all TS without complaining that
174 * it might receive later via MODE or CREATE.
175 *
176 * Part of the P9 compatibility, shouldn't occur on a P10 network.
177 */
178#define MAGIC_REMOTE_JOIN_TS 1270080000
179
180
181
182extern const char* const PartFmt1;
183extern const char* const PartFmt2;
184extern const char* const PartFmt1serv;
185extern const char* const PartFmt2serv;
186
187
188/*
189 * Structures
190 */
191
192/** Information about a client on one channel
193 *
194 * This structure forms a sparse matrix with users down the side, and
195 * channels across the top. This matrix holds all the information about
196 * which users are on what channels, and what modes that user has on that
197 * channel (if they are op'd, voice'd and cached information if they are
198 * banned or not)
199 */
200struct Membership {
201 struct Client* user; /**< The user */
202 struct Channel* channel; /**< The channel */
203 struct Membership* next_member; /**< The next user on this channel */
204 struct Membership* prev_member; /**< The previous user on this channel*/
205 struct Membership* next_channel; /**< Next channel this user is on */
206 struct Membership* prev_channel; /**< Previous channel this user is on*/
207 unsigned int status; /**< Flags for op'd, voice'd, etc */
208 unsigned short oplevel; /**< Op level */
209};
210
211#define MAXOPLEVELDIGITS 3
212#define MAXOPLEVEL 999
213
214#define IsZombie(x) ((x)->status & CHFL_ZOMBIE) /**< see \ref zombie */
215#define IsDeopped(x) ((x)->status & CHFL_DEOPPED)
216#define IsBanned(x) ((x)->status & CHFL_BANNED)
217#define IsBanValid(x) ((x)->status & CHFL_BANVALID)
218#define IsChanOp(x) ((x)->status & CHFL_CHANOP)
219#define OpLevel(x) ((x)->oplevel)
220#define HasVoice(x) ((x)->status & CHFL_VOICE)
221#define IsServOpOk(x) ((x)->status & CHFL_SERVOPOK)
222#define IsBurstJoined(x) ((x)->status & CHFL_BURST_JOINED)
223#define IsVoicedOrOpped(x) ((x)->status & CHFL_VOICED_OR_OPPED)
224#define IsChannelManager(x) ((x)->status & CHFL_CHANNEL_MANAGER)
225#define IsUserParting(x) ((x)->status & CHFL_USER_PARTING)
226#define IsDelayedJoin(x) ((x)->status & CHFL_DELAYED)
227
228#define SetBanned(x) ((x)->status |= CHFL_BANNED)
229#define SetBanValid(x) ((x)->status |= CHFL_BANVALID)
230#define SetDeopped(x) ((x)->status |= CHFL_DEOPPED)
231#define SetServOpOk(x) ((x)->status |= CHFL_SERVOPOK)
232#define SetBurstJoined(x) ((x)->status |= CHFL_BURST_JOINED)
233#define SetZombie(x) ((x)->status |= CHFL_ZOMBIE)
234#define SetChannelManager(x) ((x)->status |= CHFL_CHANNEL_MANAGER)
235#define SetOpLevel(x, v) (void)((x)->oplevel = (v))
236#define SetUserParting(x) ((x)->status |= CHFL_USER_PARTING)
237#define SetDelayedJoin(x) ((x)->status |= CHFL_DELAYED)
238
239#define ClearBanned(x) ((x)->status &= ~CHFL_BANNED)
240#define ClearBanValid(x) ((x)->status &= ~CHFL_BANVALID)
241#define ClearDeopped(x) ((x)->status &= ~CHFL_DEOPPED)
242#define ClearServOpOk(x) ((x)->status &= ~CHFL_SERVOPOK)
243#define ClearBurstJoined(x) ((x)->status &= ~CHFL_BURST_JOINED)
244#define ClearDelayedJoin(x) ((x)->status &= ~CHFL_DELAYED)
245
246/** Mode information for a channel */
247struct Mode {
248 unsigned int mode;
249 unsigned int limit;
250 char key[KEYLEN + 1];
251 char upass[KEYLEN + 1];
252 char apass[KEYLEN + 1];
253};
254
255#define BAN_IPMASK 0x0001 /**< ban mask is an IP-number mask */
256#define BAN_OVERLAPPED 0x0002 /**< ban overlapped, need bounce */
257#define BAN_BURSTED 0x0004 /**< Ban part of last BURST */
258#define BAN_BURST_WIPEOUT 0x0008 /**< Ban will be wiped at EOB */
259#define BAN_EXCEPTION 0x0010 /**< Ban is an exception */
260#define BAN_DEL 0x4000 /**< Ban is being removed */
261#define BAN_ADD 0x8000 /**< Ban is being added */
262
263/** A single ban for a channel. */
264struct Ban {
265 struct Ban* next; /**< next ban in the channel */
266 struct irc_in_addr address; /**< addres for BAN_IPMASK bans */
267 time_t when; /**< timestamp when ban was added */
268 unsigned short flags; /**< modifier flags for the ban */
269 unsigned char nu_len; /**< length of nick!user part of banstr */
270 unsigned char addrbits; /**< netmask length for BAN_IPMASK bans */
271 char who[NICKLEN+1]; /**< name of client that set the ban */
272 char banstr[NICKLEN+USERLEN+HOSTLEN+3]; /**< hostmask that the ban matches */
273};
274
275/** Information about a channel */
276struct Channel {
277 struct Channel* next; /**< next channel in the global channel list */
278 struct Channel* prev; /**< previous channel */
279 struct Channel* hnext; /**< Next channel in the hash table */
280 struct DestructEvent* destruct_event;
281 time_t creationtime; /**< Creation time of this channel */
282 time_t topic_time; /**< Modification time of the topic */
283 unsigned int users; /**< Number of clients on this channel */
284 struct Membership* members; /**< Pointer to the clients on this channel*/
285 struct SLink* invites; /**< List of invites on this channel */
286 struct Ban* banlist; /**< List of bans on this channel */
287 struct Mode mode; /**< This channels mode */
288 char topic[TOPICLEN + 1]; /**< Channels topic */
289 char topic_nick[NICKLEN + 1]; /**< Nick of the person who set
290 * The topic
291 */
292 char chname[1]; /**< Dynamically allocated string of the
293 * channel name
294 */
295};
296
297/** Information about a /list in progress */
298struct ListingArgs {
299 time_t max_time;
300 time_t min_time;
301 unsigned int max_users;
302 unsigned int min_users;
303 unsigned int flags;
304 time_t max_topic_time;
305 time_t min_topic_time;
306 unsigned int bucket;
307 char wildcard[CHANNELLEN];
308};
309
310struct ModeBuf {
311 unsigned int mb_add; /**< Modes to add */
312 unsigned int mb_rem; /**< Modes to remove */
313 struct Client *mb_source; /**< Source of MODE changes */
314 struct Client *mb_connect; /**< Connection of MODE changes */
315 struct Channel *mb_channel; /**< Channel they affect */
316 unsigned int mb_dest; /**< Destination of MODE changes */
317 unsigned int mb_count; /**< Number of modes w/args */
318 struct {
319 unsigned int mbm_type; /**< Type of argument */
320 union {
321 unsigned int mbma_uint; /**< A limit */
322 char *mbma_string; /**< A string */
323 struct Client *mbma_client; /**< A client */
324 } mbm_arg; /**< The mode argument */
325 unsigned short mbm_oplevel; /**< Oplevel for a bounce */
326 } mb_modeargs[MAXMODEPARAMS];
327 /**< A mode w/args */
328};
329
330#define MODEBUF_DEST_CHANNEL 0x00001 /**< Mode is flushed to channel */
331#define MODEBUF_DEST_SERVER 0x00002 /**< Mode is flushed to server */
332
333#define MODEBUF_DEST_OPMODE 0x00100 /**< Send server mode as OPMODE */
334#define MODEBUF_DEST_DEOP 0x00200 /**< Deop the offender */
335#define MODEBUF_DEST_BOUNCE 0x00400 /**< Bounce the modes */
336#define MODEBUF_DEST_LOG 0x00800 /**< Log the mode changes to OPATH */
337
338#define MODEBUF_DEST_HACK2 0x02000 /**< Send a HACK(2) notice, reverse */
339#define MODEBUF_DEST_HACK3 0x04000 /**< Send a HACK(3) notice, TS == 0 */
340#define MODEBUF_DEST_HACK4 0x08000 /**< Send a HACK(4) notice, TS == 0 */
341
342#define MODEBUF_DEST_NOKEY 0x10000 /**< Don't send the real key */
343
344#define MB_TYPE(mb, i) ((mb)->mb_modeargs[(i)].mbm_type)
345#define MB_UINT(mb, i) ((mb)->mb_modeargs[(i)].mbm_arg.mbma_uint)
346#define MB_STRING(mb, i) ((mb)->mb_modeargs[(i)].mbm_arg.mbma_string)
347#define MB_CLIENT(mb, i) ((mb)->mb_modeargs[(i)].mbm_arg.mbma_client)
348#define MB_OPLEVEL(mb, i) ((mb)->mb_modeargs[(i)].mbm_oplevel)
349
350/** A buffer represeting a list of joins to send */
351struct JoinBuf {
352 struct Client *jb_source; /**< Source of joins (ie, joiner) */
353 struct Client *jb_connect; /**< Connection of joiner */
354 unsigned int jb_type; /**< Type of join (JOIN or CREATE) */
355 char *jb_comment; /**< part comment */
356 time_t jb_create; /**< Creation timestamp */
357 unsigned int jb_count; /**< Number of channels */
358 unsigned int jb_strlen; /**< length so far */
359 struct Channel *jb_channels[MAXJOINARGS];
360 /**< channels joined or whatever */
361};
362
363#define JOINBUF_TYPE_JOIN 0 /**< send JOINs */
364#define JOINBUF_TYPE_CREATE 1 /**< send CREATEs */
365#define JOINBUF_TYPE_PART 2 /**< send PARTs */
366#define JOINBUF_TYPE_PARTALL 3 /**< send local PARTs, but not remote */
367
368extern struct Channel* GlobalChannelList;
369extern int LocalChanOperMode;
370
371/*
372 * Proto types
373 */
374extern void channel_modes(struct Client *cptr, char *mbuf, char *pbuf,
375 int buflen, struct Channel *chptr,
376 struct Membership *member);
377extern int set_mode(struct Client* cptr, struct Client* sptr,
378 struct Channel* chptr, int parc, char* parv[],
379 char* mbuf, char* pbuf, char* npbuf, int* badop);
380extern void send_hack_notice(struct Client *cptr, struct Client *sptr,
381 int parc, char *parv[], int badop, int mtype);
382extern struct Channel *get_channel(struct Client *cptr,
383 char *chname, ChannelGetType flag);
f952a879 384extern int SetAutoChanModes(struct Channel *chptr);
189935b1 385extern struct Membership* find_member_link(struct Channel * chptr,
386 const struct Client* cptr);
387extern int sub1_from_channel(struct Channel* chptr);
388extern int destruct_channel(struct Channel* chptr);
389extern void add_user_to_channel(struct Channel* chptr, struct Client* who,
390 unsigned int flags, int oplevel);
391extern void make_zombie(struct Membership* member, struct Client* who,
392 struct Client* cptr, struct Client* sptr,
393 struct Channel* chptr);
394extern struct Client* find_chasing(struct Client* sptr, const char* user, int* chasing);
395void add_invite(struct Client *cptr, struct Channel *chptr);
396int number_of_zombies(struct Channel *chptr);
397
398extern const char* find_no_nickchange_channel(struct Client* cptr);
399extern struct Membership* find_channel_member(struct Client* cptr, struct Channel* chptr);
400extern int member_can_send_to_channel(struct Membership* member, int reveal);
401extern int client_can_send_to_channel(struct Client *cptr, struct Channel *chptr, int reveal);
402
403extern void remove_user_from_channel(struct Client *sptr, struct Channel *chptr);
404extern void remove_user_from_all_channels(struct Client* cptr);
405
406extern int is_chan_op(struct Client *cptr, struct Channel *chptr);
407extern int is_zombie(struct Client *cptr, struct Channel *chptr);
408extern int has_voice(struct Client *cptr, struct Channel *chptr);
409/*
410 NOTE: pointer is compared, and not dereferenced, called by
411 add_target with a void*, since targets could be anything,
412 this function can't make any assumptions that it has a channel
413*/
414extern int IsInvited(struct Client* cptr, const void* chptr);
415extern void send_channel_modes(struct Client *cptr, struct Channel *chptr);
416extern char *pretty_mask(char *mask);
417extern void del_invite(struct Client *cptr, struct Channel *chptr);
418extern void list_set_default(void); /* this belongs elsewhere! */
419
420extern void RevealDelayedJoin(struct Membership *member);
421extern void CheckDelayedJoins(struct Channel *chan);
422
423extern void modebuf_init(struct ModeBuf *mbuf, struct Client *source,
424 struct Client *connect, struct Channel *chan,
425 unsigned int dest);
426extern void modebuf_mode(struct ModeBuf *mbuf, unsigned int mode);
427extern void modebuf_mode_uint(struct ModeBuf *mbuf, unsigned int mode,
428 unsigned int uint);
429extern void modebuf_mode_string(struct ModeBuf *mbuf, unsigned int mode,
430 char *string, int free);
431extern void modebuf_mode_client(struct ModeBuf *mbuf, unsigned int mode,
432 struct Client *client, int oplevel);
433extern int modebuf_flush(struct ModeBuf *mbuf);
434extern void modebuf_extract(struct ModeBuf *mbuf, char *buf);
435
436extern void mode_ban_invalidate(struct Channel *chan);
437extern void mode_invite_clear(struct Channel *chan);
438
439extern int mode_parse(struct ModeBuf *mbuf, struct Client *cptr,
440 struct Client *sptr, struct Channel *chptr,
441 int parc, char *parv[], unsigned int flags,
442 struct Membership* member);
443
444#define MODE_PARSE_SET 0x01 /**< actually set channel modes */
445#define MODE_PARSE_STRICT 0x02 /**< +m +n +t style not supported */
446#define MODE_PARSE_FORCE 0x04 /**< force the mode to be applied */
447#define MODE_PARSE_BOUNCE 0x08 /**< we will be bouncing the modes */
448#define MODE_PARSE_NOTOPER 0x10 /**< send "not chanop" to user */
449#define MODE_PARSE_NOTMEMBER 0x20 /**< send "not member" to user */
450#define MODE_PARSE_WIPEOUT 0x40 /**< wipe out +k and +l during burst */
451#define MODE_PARSE_BURST 0x80 /**< be even more strict w/extra args */
452
453extern void joinbuf_init(struct JoinBuf *jbuf, struct Client *source,
454 struct Client *connect, unsigned int type,
455 char *comment, time_t create);
456extern void joinbuf_join(struct JoinBuf *jbuf, struct Channel *chan,
457 unsigned int flags);
458extern int joinbuf_flush(struct JoinBuf *jbuf);
459extern struct Ban *make_ban(const char *banstr);
460extern struct Ban *find_ban(struct Client *cptr, struct Ban *banlist);
461extern int apply_ban(struct Ban **banlist, struct Ban *newban, int free);
462extern void free_ban(struct Ban *ban);
463
464#endif /* INCLUDED_channel_h */