]> jfr.im git - irc/rqf/shadowircd.git/blob - include/channel.h
Rerun autoconf.
[irc/rqf/shadowircd.git] / include / channel.h
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 *
24 * $Id: channel.h 3580 2007-11-07 23:45:14Z jilles $
25 */
26
27 #ifndef INCLUDED_channel_h
28 #define INCLUDED_channel_h
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
36 struct Client;
37
38 /* mode structure for channels */
39 struct 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 */
50 struct Channel
51 {
52 rb_dlink_node node;
53 struct Mode mode;
54 char *topic;
55 char *topic_info;
56 time_t topic_time;
57 time_t last_knock; /* don't allow knock to flood */
58
59 rb_dlink_list members; /* channel members */
60 rb_dlink_list locmembers; /* local channel members */
61
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;
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
80 struct membership
81 {
82 rb_dlink_node channode;
83 rb_dlink_node locchannode;
84 rb_dlink_node usernode;
85
86 struct Channel *chptr;
87 struct Client *client_p;
88 unsigned int flags;
89
90 unsigned long bants;
91 };
92
93 #define BANLEN 195
94 struct Ban
95 {
96 char *banstr;
97 char *who;
98 time_t when;
99 rb_dlink_node node;
100 };
101
102 struct mode_letter
103 {
104 int mode;
105 char letter;
106 };
107
108 struct ChModeChange
109 {
110 char letter;
111 const char *arg;
112 const char *id;
113 int dir;
114 int caps;
115 int nocaps;
116 int mems;
117 struct Client *client;
118 };
119
120 struct ChCapCombo
121 {
122 int count;
123 int cap_yes;
124 int cap_no;
125 };
126
127 struct ChannelMode
128 {
129 void (*set_func) (struct Client * source_p, struct Channel * chptr,
130 int alevel, int parc, int *parn,
131 const char **parv, int *errors, int dir, char c, long mode_type);
132 long mode_type;
133 };
134
135 typedef int (*ExtbanFunc)(const char *data, struct Client *client_p,
136 struct Channel *chptr, long mode_type);
137
138 /* can_send results */
139 #define CAN_SEND_NO 0
140 #define CAN_SEND_NONOP 1
141 #define CAN_SEND_OPV 2
142
143 /* channel status flags */
144 #define CHFL_PEON 0x0000 /* normal member of channel */
145 #define CHFL_CHANOP 0x0001 /* Channel operator */
146 #define CHFL_VOICE 0x0002 /* the power to speak */
147 #define CHFL_BANNED 0x0008 /* cached as banned */
148 #define CHFL_QUIETED 0x0010 /* cached as being +q victim */
149 #define ONLY_SERVERS 0x0020
150 #define ALL_MEMBERS CHFL_PEON
151 #define ONLY_CHANOPS CHFL_CHANOP
152 #define ONLY_CHANOPSVOICED (CHFL_CHANOP|CHFL_VOICE)
153
154 #define is_chanop(x) ((x) && (x)->flags & CHFL_CHANOP)
155 #define is_voiced(x) ((x) && (x)->flags & CHFL_VOICE)
156 #define is_chanop_voiced(x) ((x) && (x)->flags & (CHFL_CHANOP|CHFL_VOICE))
157 #define can_send_banned(x) ((x) && (x)->flags & (CHFL_BANNED|CHFL_QUIETED))
158
159 /* channel modes ONLY */
160 #define MODE_PRIVATE 0x0001
161 #define MODE_SECRET 0x0002
162 #define MODE_MODERATED 0x0004
163 #define MODE_TOPICLIMIT 0x0008
164 #define MODE_INVITEONLY 0x0010
165 #define MODE_NOPRIVMSGS 0x0020
166 #define MODE_REGONLY 0x0040
167 #define MODE_NOCOLOR 0x0080
168 #define MODE_EXLIMIT 0x0100 /* exempt from list limits, +b/+e/+I/+q */
169 #define MODE_PERMANENT 0x0200 /* permanant channel, +P */
170 #define MODE_OPMODERATE 0x0400 /* send rejected messages to ops */
171 #define MODE_FREEINVITE 0x0800 /* allow free use of /invite */
172 #define MODE_FREETARGET 0x1000 /* can be forwarded to without authorization */
173 #define MODE_DISFORWARD 0x2000 /* disable channel forwarding */
174
175 #define CHFL_BAN 0x10000000 /* ban channel flag */
176 #define CHFL_EXCEPTION 0x20000000 /* exception to ban channel flag */
177 #define CHFL_INVEX 0x40000000
178 #define CHFL_QUIET 0x80000000
179
180 /* mode flags for direction indication */
181 #define MODE_QUERY 0
182 #define MODE_ADD 1
183 #define MODE_DEL -1
184
185 #define SecretChannel(x) ((x) && ((x)->mode.mode & MODE_SECRET))
186 #define HiddenChannel(x) ((x) && ((x)->mode.mode & MODE_PRIVATE))
187 #define PubChannel(x) ((!x) || ((x)->mode.mode &\
188 (MODE_PRIVATE | MODE_SECRET)) == 0)
189
190 /* channel visible */
191 #define ShowChannel(v,c) (PubChannel(c) || IsMember((v),(c)))
192
193 #define IsMember(who, chan) ((who && who->user && \
194 find_channel_membership(chan, who)) ? 1 : 0)
195
196 #define IsChannelName(name) ((name) && (*(name) == '#' || *(name) == '&'))
197
198 /* extban function results */
199 #define EXTBAN_INVALID -1 /* invalid mask, false even if negated */
200 #define EXTBAN_NOMATCH 0 /* valid mask, no match */
201 #define EXTBAN_MATCH 1 /* matches */
202
203 extern rb_dlink_list global_channel_list;
204 void init_channels(void);
205
206 struct Channel *allocate_channel(const char *chname);
207 void free_channel(struct Channel *chptr);
208 struct Ban *allocate_ban(const char *, const char *);
209 void free_ban(struct Ban *bptr);
210
211
212 extern void destroy_channel(struct Channel *);
213
214 extern int can_send(struct Channel *chptr, struct Client *who,
215 struct membership *);
216 extern int is_banned(struct Channel *chptr, struct Client *who,
217 struct membership *msptr, const char *, const char *);
218 extern int is_quieted(struct Channel *chptr, struct Client *who,
219 struct membership *msptr, const char *, const char *);
220 extern int can_join(struct Client *source_p, struct Channel *chptr, char *key);
221
222 extern struct membership *find_channel_membership(struct Channel *, struct Client *);
223 extern const char *find_channel_status(struct membership *msptr, int combine);
224 extern void add_user_to_channel(struct Channel *, struct Client *, int flags);
225 extern void remove_user_from_channel(struct membership *);
226 extern void remove_user_from_channels(struct Client *);
227 extern void invalidate_bancache_user(struct Client *);
228
229 extern void free_channel_list(rb_dlink_list *);
230
231 extern int check_channel_name(const char *name);
232
233 extern void channel_member_names(struct Channel *chptr, struct Client *,
234 int show_eon);
235
236 extern void del_invite(struct Channel *chptr, struct Client *who);
237
238 const char *channel_modes(struct Channel *chptr, struct Client *who);
239
240 extern struct Channel *find_bannickchange_channel(struct Client *client_p);
241
242 extern void check_spambot_warning(struct Client *source_p, const char *name);
243
244 extern void check_splitmode(void *);
245
246 void set_channel_topic(struct Channel *chptr, const char *topic,
247 const char *topic_info, time_t topicts);
248
249 extern void init_chcap_usage_counts(void);
250 extern void set_chcap_usage_counts(struct Client *serv_p);
251 extern void unset_chcap_usage_counts(struct Client *serv_p);
252 extern void send_cap_mode_changes(struct Client *client_p, struct Client *source_p,
253 struct Channel *chptr, struct ChModeChange foo[], int);
254
255 extern void set_channel_mode(struct Client *client_p, struct Client *source_p,
256 struct Channel *chptr, struct membership *msptr, int parc, const char *parv[]);
257
258 extern struct ChannelMode chmode_table[256];
259
260 extern int add_id(struct Client *source_p, struct Channel *chptr, const char *banid,
261 rb_dlink_list * list, long mode_type);
262
263 extern int del_id(struct Channel *chptr, const char *banid, rb_dlink_list * list, long mode_type);
264
265 extern ExtbanFunc extban_table[256];
266
267 extern int match_extban(const char *banstr, struct Client *client_p, struct Channel *chptr, long mode_type);
268 extern int valid_extban(const char *banstr, struct Client *client_p, struct Channel *chptr, long mode_type);
269 const char * get_extban_string(void);
270
271
272 #endif /* INCLUDED_channel_h */