d12072c6b4489b57dbe28cb2208cd9ddb7d62588
[ircu2.10.12-pk.git] / include / channel.h
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  * $Id$
21  */
22 #ifndef INCLUDED_channel_h
23 #define INCLUDED_channel_h
24 #ifndef INCLUDED_ircd_defs_h
25 #include "ircd_defs.h"        /* NICKLEN */
26 #endif
27 #ifndef INCLUDED_sys_types_h
28 #include <sys/types.h>
29 #define INCLUDED_sys_types_h
30 #endif
31
32 struct SLink;
33 struct Client;
34
35 /*
36  * General defines
37  */
38
39 #define MAXMODEPARAMS   6
40 #define MODEBUFLEN      200
41
42 #define KEYLEN          23
43 #define PASSLEN         23
44 #define CHANNELLEN      200
45
46 #define MAXJOINARGS     15 /* number of slots for join buffer */
47 #define STARTJOINLEN    10 /* fuzzy numbers */
48 #define STARTCREATELEN  20
49
50 /*
51  * Macro's
52  */
53
54 #define ChannelExists(n)        (0 != FindChannel(n))
55
56 #define CHFL_CHANOP             0x0001  /* Channel operator */
57 #define CHFL_VOICE              0x0002  /* the power to speak */
58 #define CHFL_DEOPPED            0x0004  /* Is de-opped by a server */
59 #define CHFL_SERVOPOK           0x0008  /* Server op allowed */
60 #define CHFL_ZOMBIE             0x0010  /* Kicked from channel */
61 #define CHFL_BAN                0x0020  /* ban channel flag */
62 #define CHFL_BAN_IPMASK         0x0040  /* ban mask is an IP-number mask */
63 #define CHFL_BAN_OVERLAPPED     0x0080  /* ban overlapped, need bounce */
64 #define CHFL_BURST_JOINED       0x0100  /* Just joined by net.junction */
65 #define CHFL_BURST_BAN          0x0200  /* Ban part of last BURST */
66 #define CHFL_BURST_BAN_WIPEOUT  0x0400  /* Ban will be wiped at end of BURST */
67 #define CHFL_BANVALID           0x0800  /* CHFL_BANNED bit is valid */
68 #define CHFL_BANNED             0x1000  /* Channel member is banned */
69 #define CHFL_SILENCE_IPMASK     0x2000  /* silence mask is an IP-number mask */
70 #define CHFL_BURST_ALREADY_OPPED        0x04000  /* In oob BURST, but was already joined and opped */
71 #define CHFL_BURST_ALREADY_VOICED       0x08000  /* In oob BURST, but was already joined and voiced */
72 #define CHFL_CHANNEL_MANAGER    0x10000 /* Set when creating channel or using Apass */
73
74 #define CHFL_OVERLAP         (CHFL_CHANOP | CHFL_VOICE)
75 #define CHFL_BANVALIDMASK    (CHFL_BANVALID | CHFL_BANNED)
76 #define CHFL_VOICED_OR_OPPED (CHFL_CHANOP | CHFL_VOICE)
77
78 /* Channel Visibility macros */
79
80 #define MODE_CHANOP     CHFL_CHANOP
81 #define MODE_VOICE      CHFL_VOICE
82 #define MODE_PRIVATE    0x0004
83 #define MODE_SECRET     0x0008
84 #define MODE_MODERATED  0x0010
85 #define MODE_TOPICLIMIT 0x0020
86 #define MODE_INVITEONLY 0x0040
87 #define MODE_NOPRIVMSGS 0x0080
88 #define MODE_KEY        0x0100
89 #define MODE_BAN        0x0200
90 #define MODE_LIMIT      0x0400
91 #define MODE_REGONLY    0x0800  /* Only +r users may join */
92 #define MODE_LISTED     0x10000
93 #define MODE_SAVE       0x20000 /* save this mode-with-arg 'til later */
94 #define MODE_FREE       0x40000 /* string needs to be passed to MyFree() */
95 #define MODE_BURSTADDED 0x80000 /* channel was created by a BURST */
96 #define MODE_UPASS      0x100000
97 #define MODE_APASS      0x200000
98 /*
99  * mode flags which take another parameter (With PARAmeterS)
100  */
101 #define MODE_WPARAS     (MODE_CHANOP|MODE_VOICE|MODE_BAN|MODE_KEY|MODE_LIMIT|MODE_APASS|MODE_UPASS)
102
103 #define HoldChannel(x)          (!(x))
104 /* name invisible */
105 #define SecretChannel(x)        ((x) && ((x)->mode.mode & MODE_SECRET))
106 /* channel not shown but names are */
107 #define HiddenChannel(x)        ((x) && ((x)->mode.mode & MODE_PRIVATE))
108 /* channel visible */
109 #define ShowChannel(v,c)        (PubChannel(c) || find_channel_member((v),(c)) || \
110                                  (IsAnOper(v) && HasPriv(v, PRIV_LIST_CHAN)))
111 #define PubChannel(x)           ((!x) || ((x)->mode.mode & \
112                                     (MODE_PRIVATE | MODE_SECRET)) == 0)
113 #define is_listed(x)            ((x)->mode.mode & MODE_LISTED)
114
115 #define IsLocalChannel(name)    (*(name) == '&')
116 #define IsChannelName(name)     (*(name) == '#' || \
117                                 IsLocalChannel(name))
118
119 typedef enum ChannelGetType {
120   CGT_NO_CREATE,
121   CGT_CREATE
122 } ChannelGetType;
123
124 /* used in SetMode() in channel.c and m_umode() in s_msg.c */
125
126 #define MODE_NULL      0
127 #define MODE_ADD       0x40000000
128 #define MODE_DEL       0x20000000
129
130 /*
131  * Maximum acceptable lag time in seconds: A channel younger than
132  * this is not protected against hacking admins.
133  * Mainly here to check if the TS clocks really sync (otherwise this
134  * will start causing HACK notices.
135  * This value must be the same on all servers.
136  *
137  * This value has been increased to 1 day in order to distinguish this
138  * "normal" type of HACK wallops / desyncs, from possiblity still
139  * existing bugs.
140  */
141 #define TS_LAG_TIME 86400
142
143 /*
144  * A Magic TS that is used for channels that are created by JOIN,
145  * a channel with this TS accepts all TS without complaining that
146  * it might receive later via MODE or CREATE.
147  */
148 #define MAGIC_REMOTE_JOIN_TS 1270080000
149
150 /*
151  * used in can_join to determine if an oper forced a join on a channel
152  */
153 #define MAGIC_OPER_OVERRIDE 1000
154
155
156 extern const char* const PartFmt1;
157 extern const char* const PartFmt2;
158 extern const char* const PartFmt1serv;
159 extern const char* const PartFmt2serv;
160
161
162 /*
163  * Structures
164  */
165
166 struct Membership {
167   struct Client*     user;
168   struct Channel*    channel;
169   struct Membership* next_member;
170   struct Membership* prev_member;
171   struct Membership* next_channel;
172   struct Membership* prev_channel;
173   unsigned int       status;
174   unsigned short     oplevel;
175 };
176
177 #define MAXOPLEVELDIGITS    3
178 #define MAXOPLEVEL          999
179
180 #define IsZombie(x)         ((x)->status & CHFL_ZOMBIE)
181 #define IsDeopped(x)        ((x)->status & CHFL_DEOPPED)
182 #define IsBanned(x)         ((x)->status & CHFL_BANNED)
183 #define IsBanValid(x)       ((x)->status & CHFL_BANVALID)
184 #define IsChanOp(x)         ((x)->status & CHFL_CHANOP)
185 #define OpLevel(x)          ((x)->oplevel)
186 #define HasVoice(x)         ((x)->status & CHFL_VOICE)
187 #define IsServOpOk(x)       ((x)->status & CHFL_SERVOPOK)
188 #define IsBurstJoined(x)    ((x)->status & CHFL_BURST_JOINED)
189 #define IsVoicedOrOpped(x)  ((x)->status & CHFL_VOICED_OR_OPPED)
190 #define IsChannelManager(x) ((x)->status & CHFL_CHANNEL_MANAGER)
191
192 #define SetBanned(x)        ((x)->status |= CHFL_BANNED)
193 #define SetBanValid(x)      ((x)->status |= CHFL_BANVALID)
194 #define SetDeopped(x)       ((x)->status |= CHFL_DEOPPED)
195 #define SetServOpOk(x)      ((x)->status |= CHFL_SERVOPOK)
196 #define SetBurstJoined(x)   ((x)->status |= CHFL_BURST_JOINED)
197 #define SetZombie(x)        ((x)->status |= CHFL_ZOMBIE)
198 #define SetChannelManager(x) ((x)->status |= CHFL_CHANNEL_MANAGER)
199 #define SetOpLevel(x, v)    (void)((x)->oplevel = (v))
200
201 #define ClearBanned(x)      ((x)->status &= ~CHFL_BANNED)
202 #define ClearBanValid(x)    ((x)->status &= ~CHFL_BANVALID)
203 #define ClearDeopped(x)     ((x)->status &= ~CHFL_DEOPPED)
204 #define ClearServOpOk(x)    ((x)->status &= ~CHFL_SERVOPOK)
205 #define ClearBurstJoined(x) ((x)->status &= ~CHFL_BURST_JOINED)
206
207
208 struct Mode {
209   unsigned int mode;
210   unsigned int limit;
211   char key[KEYLEN + 1];
212   char upass[PASSLEN + 1];
213   char apass[PASSLEN + 1];
214 };
215
216 struct Channel {
217   struct Channel*    next;
218   struct Channel*    prev;
219   struct Channel*    hnext;
220   struct DestructEvent* destruct_event;
221   time_t             creationtime;
222   time_t             topic_time;
223   unsigned int       users;
224   struct Membership* members;
225   struct SLink*      invites;
226   struct SLink*      banlist;
227   struct Mode        mode;
228   char               topic[TOPICLEN + 1];
229   char               topic_nick[NICKLEN + 1];
230   char               chname[1];
231 };
232
233 struct ListingArgs {
234   time_t max_time;
235   time_t min_time;
236   unsigned int max_users;
237   unsigned int min_users;
238   unsigned int topic_limits;
239   time_t max_topic_time;
240   time_t min_topic_time;
241   struct Channel *chptr;
242 };
243
244 struct ModeBuf {
245   unsigned int          mb_add;         /* Modes to add */
246   unsigned int          mb_rem;         /* Modes to remove */
247   struct Client        *mb_source;      /* Source of MODE changes */
248   struct Client        *mb_connect;     /* Connection of MODE changes */
249   struct Channel       *mb_channel;     /* Channel they affect */
250   unsigned int          mb_dest;        /* Destination of MODE changes */
251   unsigned int          mb_count;       /* Number of modes w/args */
252   struct {
253     unsigned int        mbm_type;       /* Type of argument */
254     union {
255       unsigned int      mbma_uint;      /* A limit */
256       char             *mbma_string;    /* A string */
257       struct Client    *mbma_client;    /* A client */
258     }                   mbm_arg;        /* The mode argument */
259   }                     mb_modeargs[MAXMODEPARAMS];
260                                         /* A mode w/args */
261 };
262
263 #define MODEBUF_DEST_CHANNEL    0x00001 /* Mode is flushed to channel */
264 #define MODEBUF_DEST_SERVER     0x00002 /* Mode is flushed to server */
265
266 #define MODEBUF_DEST_OPMODE     0x00100 /* Send server mode as OPMODE */
267 #define MODEBUF_DEST_DEOP       0x00200 /* Deop the offender */
268 #define MODEBUF_DEST_BOUNCE     0x00400 /* Bounce the modes */
269 #define MODEBUF_DEST_LOG        0x00800 /* Log the mode changes to OPATH */
270
271 #define MODEBUF_DEST_HACK2      0x02000 /* Send a HACK(2) notice, reverse */
272 #define MODEBUF_DEST_HACK3      0x04000 /* Send a HACK(3) notice, TS == 0 */
273 #define MODEBUF_DEST_HACK4      0x08000 /* Send a HACK(4) notice, TS == 0 */
274
275 #define MODEBUF_DEST_NOKEY      0x10000 /* Don't send the real key */
276
277 #define MB_TYPE(mb, i)          ((mb)->mb_modeargs[(i)].mbm_type)
278 #define MB_UINT(mb, i)          ((mb)->mb_modeargs[(i)].mbm_arg.mbma_uint)
279 #define MB_STRING(mb, i)        ((mb)->mb_modeargs[(i)].mbm_arg.mbma_string)
280 #define MB_CLIENT(mb, i)        ((mb)->mb_modeargs[(i)].mbm_arg.mbma_client)
281
282 struct JoinBuf {
283   struct Client        *jb_source;      /* Source of joins (ie, joiner) */
284   struct Client        *jb_connect;     /* Connection of joiner */
285   unsigned int          jb_type;        /* Type of join (JOIN or CREATE) */
286   char                 *jb_comment;     /* part comment */
287   time_t                jb_create;      /* Creation timestamp */
288   unsigned int          jb_count;       /* Number of channels */
289   unsigned int          jb_strlen;      /* length so far */
290   struct Channel       *jb_channels[MAXJOINARGS];
291                                         /* channels joined or whatever */
292 };
293
294 #define JOINBUF_TYPE_JOIN       0       /* send JOINs */
295 #define JOINBUF_TYPE_CREATE     1       /* send CREATEs */
296 #define JOINBUF_TYPE_PART       2       /* send PARTs */
297 #define JOINBUF_TYPE_PARTALL    3       /* send local PARTs, but not remote */
298
299 extern struct Channel* GlobalChannelList;
300 extern int             LocalChanOperMode;
301
302 /*
303  * Proto types
304  */
305 extern void clean_channelname(char* name);
306 extern void channel_modes(struct Client *cptr, char *mbuf, char *pbuf,
307                           int buflen, struct Channel *chptr,
308                           struct Membership *member);
309 extern int set_mode(struct Client* cptr, struct Client* sptr,
310                     struct Channel* chptr, int parc, char* parv[],
311                     char* mbuf, char* pbuf, char* npbuf, int* badop);
312 extern void send_hack_notice(struct Client *cptr, struct Client *sptr,
313                              int parc, char *parv[], int badop, int mtype);
314 extern struct Channel *get_channel(struct Client *cptr,
315                                    char *chname, ChannelGetType flag);
316 extern struct Membership* find_member_link(struct Channel * chptr,
317                                            const struct Client* cptr);
318 extern int sub1_from_channel(struct Channel* chptr);
319 extern int destruct_channel(struct Channel* chptr);
320 extern int can_join(struct Client *sptr, struct Channel *chptr, char *key);
321 extern void add_user_to_channel(struct Channel* chptr, struct Client* who,
322                                 unsigned int flags, int oplevel);
323 extern void cancel_mode(struct Client *sptr, struct Channel *chptr, char m,
324                         const char *param, int *count);
325 extern void add_token_to_sendbuf(char *token, size_t *sblenp, int *firstp,
326                                  int *send_itp, char is_a_ban, int mode);
327 extern int add_banid(struct Client *cptr, struct Channel *chptr, char *banid,
328                      int change, int firsttime);
329 extern struct SLink *next_removed_overlapped_ban(void);
330 extern void cancel_mode(struct Client *sptr, struct Channel *chptr, char m,
331                         const char *param, int *count);
332 extern void make_zombie(struct Membership* member, struct Client* who,
333                         struct Client* cptr, struct Client* sptr,
334                         struct Channel* chptr);
335 extern struct Client* find_chasing(struct Client* sptr, const char* user, int* chasing);
336 void add_invite(struct Client *cptr, struct Channel *chptr);
337 int number_of_zombies(struct Channel *chptr);
338
339 extern const char* find_no_nickchange_channel(struct Client* cptr);
340 extern struct Membership* IsMember(struct Client *cptr, struct Channel *chptr);
341 extern struct Membership* find_channel_member(struct Client* cptr, struct Channel* chptr);
342 extern int member_can_send_to_channel(struct Membership* member);
343 extern int client_can_send_to_channel(struct Client *cptr, struct Channel *chptr);
344
345 extern void remove_user_from_channel(struct Client *sptr, struct Channel *chptr);
346 extern void remove_user_from_all_channels(struct Client* cptr);
347
348 extern int is_chan_op(struct Client *cptr, struct Channel *chptr);
349 extern int is_zombie(struct Client *cptr, struct Channel *chptr);
350 extern int has_voice(struct Client *cptr, struct Channel *chptr);
351 extern void send_channel_modes(struct Client *cptr, struct Channel *chptr);
352 extern char *pretty_mask(char *mask);
353 extern void del_invite(struct Client *cptr, struct Channel *chptr);
354 extern void list_next_channels(struct Client *cptr, int nr);
355 extern void list_set_default(void); /* this belongs elsewhere! */
356
357 extern void modebuf_init(struct ModeBuf *mbuf, struct Client *source,
358                          struct Client *connect, struct Channel *chan,
359                          unsigned int dest);
360 extern void modebuf_mode(struct ModeBuf *mbuf, unsigned int mode);
361 extern void modebuf_mode_uint(struct ModeBuf *mbuf, unsigned int mode,
362                               unsigned int uint);
363 extern void modebuf_mode_string(struct ModeBuf *mbuf, unsigned int mode,
364                                 char *string, int free);
365 extern void modebuf_mode_client(struct ModeBuf *mbuf, unsigned int mode,
366                                 struct Client *client);
367 extern int modebuf_flush(struct ModeBuf *mbuf);
368 extern void modebuf_extract(struct ModeBuf *mbuf, char *buf);
369
370 extern void mode_ban_invalidate(struct Channel *chan);
371 extern void mode_invite_clear(struct Channel *chan);
372
373 extern int mode_parse(struct ModeBuf *mbuf, struct Client *cptr,
374                       struct Client *sptr, struct Channel *chptr,
375                       int parc, char *parv[], unsigned int flags,
376                       struct Membership* member);
377
378 #define MODE_PARSE_SET          0x01    /* actually set channel modes */
379 #define MODE_PARSE_STRICT       0x02    /* +m +n +t style not supported */
380 #define MODE_PARSE_FORCE        0x04    /* force the mode to be applied */
381 #define MODE_PARSE_BOUNCE       0x08    /* we will be bouncing the modes */
382 #define MODE_PARSE_NOTOPER      0x10    /* send "not chanop" to user */
383 #define MODE_PARSE_NOTMEMBER    0x20    /* send "not member" to user */
384 #define MODE_PARSE_WIPEOUT      0x40    /* wipe out +k and +l during burst */
385 #define MODE_PARSE_BURST        0x80    /* be even more strict w/extra args */
386
387 extern void joinbuf_init(struct JoinBuf *jbuf, struct Client *source,
388                          struct Client *connect, unsigned int type,
389                          char *comment, time_t create);
390 extern void joinbuf_join(struct JoinBuf *jbuf, struct Channel *chan,
391                          unsigned int flags);
392 extern int joinbuf_flush(struct JoinBuf *jbuf);
393
394 #endif /* INCLUDED_channel_h */