]> jfr.im git - irc/rqf/shadowircd.git/blame - include/channel.h
XLINE: Do not cluster unxlines ON specific servers.
[irc/rqf/shadowircd.git] / include / channel.h
CommitLineData
212380e3 1/*
2 * ircd-ratbox: A slightly useful ircd.
3 * channel.h: The ircd channel header.
4 *
5 * Copyright (C) 1990 Jarkko Oikarinen and University of Oulu, Co Center
6 * Copyright (C) 1996-2002 Hybrid Development Team
7 * Copyright (C) 2002-2004 ircd-ratbox development team
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
22 * USA
23 *
83294285 24 * $Id: channel.h 3580 2007-11-07 23:45:14Z jilles $
212380e3 25 */
26
27#ifndef INCLUDED_channel_h
28#define INCLUDED_channel_h
212380e3 29
30#define MODEBUFLEN 200
31
32/* Maximum mode changes allowed per client, per server is different */
33#define MAXMODEPARAMS 4
34#define MAXMODEPARAMSSERV 10
35
36struct Client;
37
38/* mode structure for channels */
39struct Mode
40{
41 unsigned int mode;
42 int limit;
43 char key[KEYLEN];
44 unsigned int join_num;
45 unsigned int join_time;
46 char forward[LOC_CHANNELLEN + 1];
47};
48
49/* channel structure */
50struct Channel
51{
08d11e34 52 rb_dlink_node node;
212380e3 53 struct Mode mode;
54 char *topic;
55 char *topic_info;
56 time_t topic_time;
212380e3 57 time_t last_knock; /* don't allow knock to flood */
58
08d11e34
WP
59 rb_dlink_list members; /* channel members */
60 rb_dlink_list locmembers; /* local channel members */
212380e3 61
08d11e34
WP
62 rb_dlink_list invites;
63 rb_dlink_list banlist;
64 rb_dlink_list exceptlist;
65 rb_dlink_list invexlist;
66 rb_dlink_list quietlist;
212380e3 67
68 time_t first_received_message_time; /* channel flood control */
69 int received_number_of_privmsgs;
70 int flood_noticed;
71
72 unsigned int join_count; /* joins within delta */
73 unsigned int join_delta; /* last ts of join */
74
0b370fcc 75 struct Dictionary *metadata;
6f659342 76
212380e3 77 unsigned long bants;
78 time_t channelts;
79 char *chname;
80};
81
82struct membership
83{
08d11e34
WP
84 rb_dlink_node channode;
85 rb_dlink_node locchannode;
86 rb_dlink_node usernode;
212380e3 87
88 struct Channel *chptr;
89 struct Client *client_p;
90 unsigned int flags;
91
92 unsigned long bants;
93};
94
83294285 95#define BANLEN 195
212380e3 96struct Ban
97{
98 char *banstr;
99 char *who;
100 time_t when;
08d11e34 101 rb_dlink_node node;
212380e3 102};
103
2a719c44
JT
104struct mode_letter
105{
106 int mode;
107 char letter;
108};
109
212380e3 110struct ChModeChange
111{
112 char letter;
113 const char *arg;
114 const char *id;
115 int dir;
116 int caps;
117 int nocaps;
118 int mems;
eccd1c58 119 int override;
212380e3 120 struct Client *client;
121};
122
123struct ChCapCombo
124{
125 int count;
126 int cap_yes;
127 int cap_no;
128};
129
130struct ChannelMode
131{
132 void (*set_func) (struct Client * source_p, struct Channel * chptr,
133 int alevel, int parc, int *parn,
134 const char **parv, int *errors, int dir, char c, long mode_type);
135 long mode_type;
136};
137
138typedef int (*ExtbanFunc)(const char *data, struct Client *client_p,
139 struct Channel *chptr, long mode_type);
140
141/* can_send results */
142#define CAN_SEND_NO 0
143#define CAN_SEND_NONOP 1
144#define CAN_SEND_OPV 2
145
146/* channel status flags */
147#define CHFL_PEON 0x0000 /* normal member of channel */
148#define CHFL_CHANOP 0x0001 /* Channel operator */
149#define CHFL_VOICE 0x0002 /* the power to speak */
212380e3 150#define CHFL_BANNED 0x0008 /* cached as banned */
151#define CHFL_QUIETED 0x0010 /* cached as being +q victim */
152#define ONLY_SERVERS 0x0020
82f8e812 153#define CHFL_HALFOP 0x0040
c1c91f94 154#define CHFL_ADMIN 0x0080
1cdd8fdf 155#define ONLY_OPERS 0x0100
212380e3 156#define ALL_MEMBERS CHFL_PEON
157#define ONLY_CHANOPS CHFL_CHANOP
158#define ONLY_CHANOPSVOICED (CHFL_CHANOP|CHFL_VOICE)
159
82f8e812 160#define is_chmode_h(x) ((x) && (x)->flags & CHFL_HALFOP) /* does not check if halfop is enabled, should typically not be used */
c1c91f94 161#define is_chmode_a(x) ((x) && (x)->flags & CHFL_ADMIN) /* does not check if admin is enabled, should typically not be used */
212380e3 162#define is_chanop(x) ((x) && (x)->flags & CHFL_CHANOP)
163#define is_voiced(x) ((x) && (x)->flags & CHFL_VOICE)
212380e3 164#define can_send_banned(x) ((x) && (x)->flags & (CHFL_BANNED|CHFL_QUIETED))
165
166/* channel modes ONLY */
167#define MODE_PRIVATE 0x0001
168#define MODE_SECRET 0x0002
169#define MODE_MODERATED 0x0004
170#define MODE_TOPICLIMIT 0x0008
171#define MODE_INVITEONLY 0x0010
172#define MODE_NOPRIVMSGS 0x0020
173#define MODE_REGONLY 0x0040
174#define MODE_NOCOLOR 0x0080
175#define MODE_EXLIMIT 0x0100 /* exempt from list limits, +b/+e/+I/+q */
176#define MODE_PERMANENT 0x0200 /* permanant channel, +P */
177#define MODE_OPMODERATE 0x0400 /* send rejected messages to ops */
178#define MODE_FREEINVITE 0x0800 /* allow free use of /invite */
179#define MODE_FREETARGET 0x1000 /* can be forwarded to without authorization */
180#define MODE_DISFORWARD 0x2000 /* disable channel forwarding */
92a79951 181#define MODE_NOCTCP 0x8000 /* Block CTCPs directed to this channel */
70e4cb86
G
182#define MODE_NONOTICE 0x10000 /* Block notices directed to this channel */
183#define MODE_NOACTION 0x20000 /* Block CTCP ACTION directed to this channel */
184#define MODE_NOKICK 0x40000 /* Disable /kick on this channel */
185#define MODE_NONICK 0x80000 /* Disable /nick for anyone on this channel */
186#define MODE_NOCAPS 0x100000 /* Block messages in all capital letters */
187#define MODE_NOREJOIN 0x200000 /* Block rejoin immediately after kick */
188#define MODE_NOREPEAT 0x400000 /* Block repeat messages */
1cdd8fdf 189#define MODE_NOOPERKICK 0x800000 /* disallow kicking opers */
212380e3 190
191#define CHFL_BAN 0x10000000 /* ban channel flag */
192#define CHFL_EXCEPTION 0x20000000 /* exception to ban channel flag */
193#define CHFL_INVEX 0x40000000
194#define CHFL_QUIET 0x80000000
195
196/* mode flags for direction indication */
197#define MODE_QUERY 0
198#define MODE_ADD 1
199#define MODE_DEL -1
200
201#define SecretChannel(x) ((x) && ((x)->mode.mode & MODE_SECRET))
202#define HiddenChannel(x) ((x) && ((x)->mode.mode & MODE_PRIVATE))
203#define PubChannel(x) ((!x) || ((x)->mode.mode &\
204 (MODE_PRIVATE | MODE_SECRET)) == 0)
205
206/* channel visible */
207#define ShowChannel(v,c) (PubChannel(c) || IsMember((v),(c)))
208
209#define IsMember(who, chan) ((who && who->user && \
210 find_channel_membership(chan, who)) ? 1 : 0)
211
212#define IsChannelName(name) ((name) && (*(name) == '#' || *(name) == '&'))
213
214/* extban function results */
215#define EXTBAN_INVALID -1 /* invalid mask, false even if negated */
216#define EXTBAN_NOMATCH 0 /* valid mask, no match */
217#define EXTBAN_MATCH 1 /* matches */
218
08d11e34 219extern rb_dlink_list global_channel_list;
212380e3 220void init_channels(void);
221
222struct Channel *allocate_channel(const char *chname);
223void free_channel(struct Channel *chptr);
224struct Ban *allocate_ban(const char *, const char *);
225void free_ban(struct Ban *bptr);
226
227
228extern void destroy_channel(struct Channel *);
229
230extern int can_send(struct Channel *chptr, struct Client *who,
231 struct membership *);
232extern int is_banned(struct Channel *chptr, struct Client *who,
233 struct membership *msptr, const char *, const char *);
234extern int is_quieted(struct Channel *chptr, struct Client *who,
235 struct membership *msptr, const char *, const char *);
236extern int can_join(struct Client *source_p, struct Channel *chptr, char *key);
237
238extern struct membership *find_channel_membership(struct Channel *, struct Client *);
239extern const char *find_channel_status(struct membership *msptr, int combine);
40c6b59b 240extern int is_halfop(struct membership *msptr);
c1c91f94 241extern int is_admin(struct membership *msptr);
d1c7eccf 242extern int is_any_op(struct membership *msptr);
bbc69733 243extern int is_chanop_voiced(struct membership *msptr);
b3b2ed97 244extern int can_kick_deop(struct membership *source, struct membership *target);
212380e3 245extern void add_user_to_channel(struct Channel *, struct Client *, int flags);
246extern void remove_user_from_channel(struct membership *);
247extern void remove_user_from_channels(struct Client *);
248extern void invalidate_bancache_user(struct Client *);
249
08d11e34 250extern void free_channel_list(rb_dlink_list *);
212380e3 251
252extern int check_channel_name(const char *name);
253
254extern void channel_member_names(struct Channel *chptr, struct Client *,
255 int show_eon);
256
257extern void del_invite(struct Channel *chptr, struct Client *who);
258
259const char *channel_modes(struct Channel *chptr, struct Client *who);
260
c279d43b
G
261extern int has_common_channel(struct Client *client1, struct Client *client2);
262
212380e3 263extern struct Channel *find_bannickchange_channel(struct Client *client_p);
264
afd4834b
G
265extern struct Channel *find_nonickchange_channel(struct Client *client_p);
266
212380e3 267extern void check_spambot_warning(struct Client *source_p, const char *name);
268
269extern void check_splitmode(void *);
270
271void set_channel_topic(struct Channel *chptr, const char *topic,
272 const char *topic_info, time_t topicts);
273
274extern void init_chcap_usage_counts(void);
275extern void set_chcap_usage_counts(struct Client *serv_p);
276extern void unset_chcap_usage_counts(struct Client *serv_p);
277extern void send_cap_mode_changes(struct Client *client_p, struct Client *source_p,
278 struct Channel *chptr, struct ChModeChange foo[], int);
279
280extern void set_channel_mode(struct Client *client_p, struct Client *source_p,
281 struct Channel *chptr, struct membership *msptr, int parc, const char *parv[]);
282
283extern struct ChannelMode chmode_table[256];
284
285extern int add_id(struct Client *source_p, struct Channel *chptr, const char *banid,
08d11e34 286 rb_dlink_list * list, long mode_type);
212380e3 287
08d11e34 288extern int del_id(struct Channel *chptr, const char *banid, rb_dlink_list * list, long mode_type);
212380e3 289
290extern ExtbanFunc extban_table[256];
291
292extern int match_extban(const char *banstr, struct Client *client_p, struct Channel *chptr, long mode_type);
293extern int valid_extban(const char *banstr, struct Client *client_p, struct Channel *chptr, long mode_type);
294const char * get_extban_string(void);
295
67b90240 296extern struct Channel * check_forward(struct Client *source_p, struct Channel *chptr, char *key);
677e21a4 297extern void user_join(struct Client * client_p, struct Client * source_p, const char * channels, const char * keys);
9230426e
JH
298extern void do_join_0(struct Client *client_p, struct Client *source_p);
299extern int check_channel_name_loc(struct Client *source_p, const char *name);
212380e3 300
104becbf 301extern struct Metadata *channel_metadata_add(struct Channel *target, const char *name, const char *value, int propegate);
6a97cac6 302extern struct Metadata *channel_metadata_time_add(struct Channel *target, const char *name, time_t timevalue, const char *value);
104becbf
G
303extern void channel_metadata_delete(struct Channel *target, const char *name, int propegate);
304extern struct Metadata *channel_metadata_find(struct Channel *target, const char *name);
8bced6dc 305extern void channel_metadata_clear(struct Channel *target);
104becbf
G
306
307
212380e3 308#endif /* INCLUDED_channel_h */