]> jfr.im git - irc/rqf/shadowircd.git/blame - include/channel.h
Add chmode +G, which blocks messages in all caps.
[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
75 unsigned long bants;
76 time_t channelts;
77 char *chname;
78};
79
80struct membership
81{
08d11e34
WP
82 rb_dlink_node channode;
83 rb_dlink_node locchannode;
84 rb_dlink_node usernode;
212380e3 85
86 struct Channel *chptr;
87 struct Client *client_p;
88 unsigned int flags;
89
90 unsigned long bants;
44a8fbc2 91 unsigned long override_ts;
212380e3 92};
93
83294285 94#define BANLEN 195
212380e3 95struct Ban
96{
97 char *banstr;
98 char *who;
99 time_t when;
08d11e34 100 rb_dlink_node node;
212380e3 101};
102
2a719c44
JT
103struct mode_letter
104{
105 int mode;
106 char letter;
107};
108
212380e3 109struct ChModeChange
110{
111 char letter;
112 const char *arg;
113 const char *id;
114 int dir;
115 int caps;
116 int nocaps;
117 int mems;
44a8fbc2 118 int override;
212380e3 119 struct Client *client;
120};
121
122struct ChCapCombo
123{
124 int count;
125 int cap_yes;
126 int cap_no;
127};
128
129struct ChannelMode
130{
131 void (*set_func) (struct Client * source_p, struct Channel * chptr,
132 int alevel, int parc, int *parn,
133 const char **parv, int *errors, int dir, char c, long mode_type);
134 long mode_type;
135};
136
137typedef int (*ExtbanFunc)(const char *data, struct Client *client_p,
138 struct Channel *chptr, long mode_type);
139
140/* can_send results */
141#define CAN_SEND_NO 0
142#define CAN_SEND_NONOP 1
143#define CAN_SEND_OPV 2
144
145/* channel status flags */
146#define CHFL_PEON 0x0000 /* normal member of channel */
147#define CHFL_CHANOP 0x0001 /* Channel operator */
148#define CHFL_VOICE 0x0002 /* the power to speak */
212380e3 149#define CHFL_BANNED 0x0008 /* cached as banned */
150#define CHFL_QUIETED 0x0010 /* cached as being +q victim */
151#define ONLY_SERVERS 0x0020
152#define ALL_MEMBERS CHFL_PEON
153#define ONLY_CHANOPS CHFL_CHANOP
154#define ONLY_CHANOPSVOICED (CHFL_CHANOP|CHFL_VOICE)
155
156#define is_chanop(x) ((x) && (x)->flags & CHFL_CHANOP)
157#define is_voiced(x) ((x) && (x)->flags & CHFL_VOICE)
158#define is_chanop_voiced(x) ((x) && (x)->flags & (CHFL_CHANOP|CHFL_VOICE))
212380e3 159#define can_send_banned(x) ((x) && (x)->flags & (CHFL_BANNED|CHFL_QUIETED))
160
161/* channel modes ONLY */
162#define MODE_PRIVATE 0x0001
163#define MODE_SECRET 0x0002
164#define MODE_MODERATED 0x0004
165#define MODE_TOPICLIMIT 0x0008
166#define MODE_INVITEONLY 0x0010
167#define MODE_NOPRIVMSGS 0x0020
168#define MODE_REGONLY 0x0040
169#define MODE_NOCOLOR 0x0080
170#define MODE_EXLIMIT 0x0100 /* exempt from list limits, +b/+e/+I/+q */
171#define MODE_PERMANENT 0x0200 /* permanant channel, +P */
172#define MODE_OPMODERATE 0x0400 /* send rejected messages to ops */
173#define MODE_FREEINVITE 0x0800 /* allow free use of /invite */
174#define MODE_FREETARGET 0x1000 /* can be forwarded to without authorization */
175#define MODE_DISFORWARD 0x2000 /* disable channel forwarding */
44a8fbc2 176#define MODE_NOOPERKICK 0x4000 /* disallow kicking opers aka immune */
92a79951 177#define MODE_NOCTCP 0x8000 /* Block CTCPs directed to this channel */
6afd4b91 178#define MODE_NONOTICE 0x16000 /* Block notices directed to this channel */
7e6c9180 179#define MODE_NOACTION 0x32000 /* Block CTCP ACTION directed to this channel */
f9e91ece 180#define MODE_NOKICK 0x64000 /* Disable /kick on this channel */
afd4834b 181#define MODE_NONICK 0x128000 /* Disable /nick for anyone on this channel */
2b3c7c29 182#define MODE_NOCAPS 0x256000 /* Block messages in all capital letters */
212380e3 183
184#define CHFL_BAN 0x10000000 /* ban channel flag */
185#define CHFL_EXCEPTION 0x20000000 /* exception to ban channel flag */
186#define CHFL_INVEX 0x40000000
187#define CHFL_QUIET 0x80000000
188
189/* mode flags for direction indication */
190#define MODE_QUERY 0
191#define MODE_ADD 1
192#define MODE_DEL -1
193
194#define SecretChannel(x) ((x) && ((x)->mode.mode & MODE_SECRET))
195#define HiddenChannel(x) ((x) && ((x)->mode.mode & MODE_PRIVATE))
196#define PubChannel(x) ((!x) || ((x)->mode.mode &\
197 (MODE_PRIVATE | MODE_SECRET)) == 0)
198
199/* channel visible */
200#define ShowChannel(v,c) (PubChannel(c) || IsMember((v),(c)))
44a8fbc2
JH
201/* user visible in channel */
202#define ShowInChannel(v,t,c) ((PubChannel(c) && !IsInvisible(t)) || IsMember((v),(c)))
212380e3 203
204#define IsMember(who, chan) ((who && who->user && \
205 find_channel_membership(chan, who)) ? 1 : 0)
206
207#define IsChannelName(name) ((name) && (*(name) == '#' || *(name) == '&'))
208
209/* extban function results */
210#define EXTBAN_INVALID -1 /* invalid mask, false even if negated */
211#define EXTBAN_NOMATCH 0 /* valid mask, no match */
212#define EXTBAN_MATCH 1 /* matches */
213
08d11e34 214extern rb_dlink_list global_channel_list;
212380e3 215void init_channels(void);
216
217struct Channel *allocate_channel(const char *chname);
218void free_channel(struct Channel *chptr);
219struct Ban *allocate_ban(const char *, const char *);
220void free_ban(struct Ban *bptr);
221
222
223extern void destroy_channel(struct Channel *);
224
225extern int can_send(struct Channel *chptr, struct Client *who,
226 struct membership *);
227extern int is_banned(struct Channel *chptr, struct Client *who,
228 struct membership *msptr, const char *, const char *);
229extern int is_quieted(struct Channel *chptr, struct Client *who,
230 struct membership *msptr, const char *, const char *);
231extern int can_join(struct Client *source_p, struct Channel *chptr, char *key);
232
233extern struct membership *find_channel_membership(struct Channel *, struct Client *);
234extern const char *find_channel_status(struct membership *msptr, int combine);
235extern void add_user_to_channel(struct Channel *, struct Client *, int flags);
236extern void remove_user_from_channel(struct membership *);
237extern void remove_user_from_channels(struct Client *);
238extern void invalidate_bancache_user(struct Client *);
239
08d11e34 240extern void free_channel_list(rb_dlink_list *);
212380e3 241
242extern int check_channel_name(const char *name);
243
244extern void channel_member_names(struct Channel *chptr, struct Client *,
245 int show_eon);
246
247extern void del_invite(struct Channel *chptr, struct Client *who);
248
249const char *channel_modes(struct Channel *chptr, struct Client *who);
250
251extern struct Channel *find_bannickchange_channel(struct Client *client_p);
252
afd4834b
G
253extern struct Channel *find_nonickchange_channel(struct Client *client_p);
254
212380e3 255extern void check_spambot_warning(struct Client *source_p, const char *name);
256
257extern void check_splitmode(void *);
258
259void set_channel_topic(struct Channel *chptr, const char *topic,
260 const char *topic_info, time_t topicts);
261
262extern void init_chcap_usage_counts(void);
263extern void set_chcap_usage_counts(struct Client *serv_p);
264extern void unset_chcap_usage_counts(struct Client *serv_p);
265extern void send_cap_mode_changes(struct Client *client_p, struct Client *source_p,
266 struct Channel *chptr, struct ChModeChange foo[], int);
267
268extern void set_channel_mode(struct Client *client_p, struct Client *source_p,
269 struct Channel *chptr, struct membership *msptr, int parc, const char *parv[]);
270
271extern struct ChannelMode chmode_table[256];
272
273extern int add_id(struct Client *source_p, struct Channel *chptr, const char *banid,
08d11e34 274 rb_dlink_list * list, long mode_type);
212380e3 275
08d11e34 276extern int del_id(struct Channel *chptr, const char *banid, rb_dlink_list * list, long mode_type);
212380e3 277
278extern ExtbanFunc extban_table[256];
279
280extern int match_extban(const char *banstr, struct Client *client_p, struct Channel *chptr, long mode_type);
281extern int valid_extban(const char *banstr, struct Client *client_p, struct Channel *chptr, long mode_type);
282const char * get_extban_string(void);
283
67b90240 284extern struct Channel * check_forward(struct Client *source_p, struct Channel *chptr, char *key);
677e21a4 285extern void user_join(struct Client * client_p, struct Client * source_p, const char * channels, const char * keys);
9230426e
JH
286extern void do_join_0(struct Client *client_p, struct Client *source_p);
287extern int check_channel_name_loc(struct Client *source_p, const char *name);
212380e3 288
289#endif /* INCLUDED_channel_h */